CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/DQM/DTMonitorModule/python/dtDigiTask_TP_cfi.py

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