1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
import FWCore.ParameterSet.Config as cms
process = cms.Process("DQM")
# DQM service
process.load("DQMServices.Core.DQMStore_cfi")
# MessageLogger
process.load("FWCore.MessageLogger.MessageLogger_cfi")
process.MessageLogger.cerr.FwkReport.reportEvery = 1000
# Global Tag
from Configuration.AlCa.GlobalTag import GlobalTag as customiseGlobalTag
process.GlobalTag = customiseGlobalTag(globaltag = '80X_dataRun2_HLT_v12')
process.GlobalTag.connect = cms.string('frontier://FrontierProd/CMS_CONDITIONS')
# Source
process.source = cms.Source("PoolSource",
fileNames = cms.untracked.vstring(
'file:/data/samples/VirginRaw/run279473/VRZeroBias0_run279473_ls134-136.root',
'file:/data/samples/VirginRaw/run279473/VRZeroBias1_run279473_ls134-136.root',
'file:/data/samples/VirginRaw/run279473/VRZeroBias2_run279473_ls134-136.root',
'file:/data/samples/VirginRaw/run279473/VRZeroBias3_run279473_ls134-136.root',
'file:/data/samples/VirginRaw/run279473/VRZeroBias4_run279473_ls134-136.root',
'file:/data/samples/VirginRaw/run279473/VRZeroBias5_run279473_ls134-136.root',
'file:/data/samples/VirginRaw/run279473/VRZeroBias6_run279473_ls134-136.root',
'file:/data/samples/VirginRaw/run279473/VRZeroBias7_run279473_ls134-136.root'
# '/store/data/Run2016G/HLTPhysics0/RAW/v1/000/279/931/00000/FC813BFF-1F71-E611-9B4B-02163E014421.root'
#'/store/data/Run2016B/HLTPhysics2/RAW/v1/000/272/022/00000/4CE23DEB-CB0D-E611-A6AC-02163E01181C.root'
)
)
process.maxEvents = cms.untracked.PSet(
input = cms.untracked.int32(-1)
# input = cms.untracked.int32(1000)
)
# unpack L1 digis
process.load("EventFilter.L1TRawToDigi.gtStage2Digis_cfi")
process.gtStage2Digis.InputLabel = cms.InputTag( "rawDataCollector" )
process.load("DQM.HLTEvF.triggerBxVsOrbitMonitor_cfi")
process.triggerBxVsOrbitMonitor.l1tResults = cms.untracked.InputTag('gtStage2Digis')
process.triggerBxVsOrbitMonitor.hltResults = cms.untracked.InputTag('TriggerResults', '', 'HLT')
process.triggerBxVsOrbitMonitor.minLS = cms.int32( 134 )
process.triggerBxVsOrbitMonitor.maxLS = cms.int32( 136 )
process.triggerBxVsOrbitMonitor.minBX = cms.int32( 894 )
process.triggerBxVsOrbitMonitor.maxBX = cms.int32( 912 )
process.load('DQMServices.Components.DQMFileSaver_cfi')
process.dqmSaver.workflow = "/HLT/TriggerBxMonitor/All"
process.endp = cms.EndPath( process.gtStage2Digis + process.triggerBxVsOrbitMonitor + process.dqmSaver )
|