CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/DQM/L1TMonitor/python/l1ExtraDQM_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # L1Extra DQM 
00004 #     
00005 # V.M. Ghete 2010-02-27
00006 
00007 from DQM.L1TMonitor.L1ExtraInputTagSet_cff import *
00008 
00009 
00010 L1ExtraDQM = cms.EDAnalyzer("L1ExtraDQM",
00011                             
00012     # L1Extra input tags
00013     L1ExtraInputTagSet,
00014     #
00015     DQMStore = cms.untracked.bool(True),
00016     DirName=cms.untracked.string("L1T/L1Extra"),
00017     disableROOToutput = cms.untracked.bool(True),
00018     verbose = cms.untracked.bool(False),
00019     #
00020     #
00021     # number of BxInEvent for GCT and GMT  
00022     #  0 - zero BxInEvent 
00023     #  1 - central BxInEvent, (BX 0 - bunch cross with L1A)
00024     #  3 - (-1, 0, +1)
00025     #  5 - (-2, -1, 0, +1, 2)
00026     # -1 - take it from event setup FIXME NOT IMPLEMENTED YET
00027     NrBxInEventGmt = cms.int32(5),
00028     NrBxInEventGct = cms.int32(5)
00029     
00030 )
00031