CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
l1ExtraRecoDQM_cfi.py
Go to the documentation of this file.
2 
3 # L1Extra versus Reco DQM
4 #
5 # V.M. Ghete - HEPHY Vienna - 2011-01-03
6 
8 
9 
10 l1ExtraRecoDQM = cms.EDAnalyzer("L1ExtraRecoDQM",
11 
12  # L1Extra input tags
13  L1ExtraInputTagSet,
14  # reconstructed objects: collections, input tags defined as for L1Extra in a cff file
15  # to be able include exactly the same objects for Validation/L1Trigger FIXME
16  #
17  DQMStore = cms.untracked.bool(True),
18  DirName=cms.untracked.string("L1T/L1ExtraReco"),
19  disableROOToutput = cms.untracked.bool(True),
20  verbose = cms.untracked.bool(False),
21  #
22  #
23  # number of BxInEvent for GCT and GMT
24  # 0 - zero BxInEvent
25  # 1 - central BxInEvent, (BX 0 - bunch cross with L1A)
26  # 3 - (-1, 0, +1)
27  # 5 - (-2, -1, 0, +1, 2)
28  # -1 - take it from event setup FIXME NOT IMPLEMENTED YET
29  NrBxInEventGmt = cms.int32(5),
30  NrBxInEventGct = cms.int32(5)
31 
32 )
33