CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/DQMOffline/L1Trigger/python/l1ExtraRecoDQM_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # L1Extra versus Reco DQM 
00004 #     
00005 # V.M. Ghete - HEPHY Vienna - 2011-01-03 
00006 
00007 from DQM.L1TMonitor.L1ExtraInputTagSet_cff import *
00008 
00009 
00010 L1ExtraRecoDQM = cms.EDAnalyzer("L1ExtraRecoDQM",
00011                             
00012     # L1Extra input tags
00013     L1ExtraInputTagSet,
00014     # reconstructed objects: collections, input tags defined as for L1Extra in a cff file
00015     # to be able include exactly the same objects for Validation/L1Trigger FIXME
00016     #
00017     DQMStore = cms.untracked.bool(True),
00018     DirName=cms.untracked.string("L1T/L1ExtraReco"),
00019     disableROOToutput = cms.untracked.bool(True),
00020     verbose = cms.untracked.bool(False),
00021     #
00022     #
00023     # number of BxInEvent for GCT and GMT  
00024     #  0 - zero BxInEvent 
00025     #  1 - central BxInEvent, (BX 0 - bunch cross with L1A)
00026     #  3 - (-1, 0, +1)
00027     #  5 - (-2, -1, 0, +1, 2)
00028     # -1 - take it from event setup FIXME NOT IMPLEMENTED YET
00029     NrBxInEventGmt = cms.int32(5),
00030     NrBxInEventGct = cms.int32(5)
00031     
00032 )
00033