CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/DQM/DTMonitorModule/python/dtDigiTask_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 dtDigiMonitor = cms.EDAnalyzer("DTDigiTask",
00004     # set the max TDC counts for the time-box (6400 or 1600)
00005     maxTDCCounts = cms.untracked.int32(1600),
00006     # bin size for the time boxes
00007     timeBoxGranularity = cms.untracked.int32(4),
00008     # Set to true to read the ttrig from the DB
00009     readDB = cms.untracked.bool(False),
00010     # Value of the ttrig pedestal used when not reading from DB
00011     defaultTtrig = cms.int32(2700),
00012     # the label to retrieve the DT digis
00013     dtDigiLabel = cms.InputTag("dtunpacker"),
00014     # check the noisy flag in the DB and use it
00015     checkNoisyChannels = cms.untracked.bool(True),
00016     # set static booking (all the detector)
00017     staticBooking = cms.untracked.bool(True),
00018     inTimeHitsLowerBound = cms.int32(500),
00019     inTimeHitsUpperBound = cms.int32(500),
00020     # switch on debug verbosity
00021     debug = cms.untracked.bool(False),
00022     # if true access LTC digis
00023     localrun = cms.untracked.bool(True),
00024     # define the boundaries for in-time hits (ns)
00025     defaultTmax = cms.int32(500),
00026     performPerWireT0Calibration = cms.bool(True),
00027     # the     # of luminosity blocks to reset the histos
00028     ResetCycle = cms.untracked.int32(400),
00029     doAllHitsOccupancies = cms.untracked.bool(True),
00030     doNoiseOccupancies = cms.untracked.bool(False),
00031     doInTimeOccupancies = cms.untracked.bool(False),                                
00032     # switch on the mode for running on test pulses (different top folder)
00033     testPulseMode = cms.untracked.bool(False),
00034     # switch for filtering on synch noise events (threshold on # of digis per chamber)
00035     filterSyncNoise = cms.untracked.bool(False),
00036     # look for synch noise events
00037     lookForSyncNoise = cms.untracked.bool(False),
00038     # threshold on # of digis per chamber to define sync noise
00039     maxTDCHitsPerChamber = cms.untracked.int32(100),
00040     # switch for time boxes with layer granularity (commissioning only)                           
00041     doLayerTimeBoxes = cms.untracked.bool(False)
00042 )
00043 
00044