CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
dtDigiTask_cfi.py
Go to the documentation of this file.
2 
3 dtDigiMonitor = cms.EDAnalyzer("DTDigiTask",
4  # set the max TDC counts for the time-box (6400 or 1600)
5  maxTDCCounts = cms.untracked.int32(1600),
6  # bin size for the time boxes
7  timeBoxGranularity = cms.untracked.int32(4),
8  # Set to true to read the ttrig from the DB
9  readDB = cms.untracked.bool(False),
10  # Value of the ttrig pedestal used when not reading from DB
11  defaultTtrig = cms.int32(2700),
12  # the label to retrieve the DT digis
13  dtDigiLabel = cms.InputTag("dtunpacker"),
14  # check the noisy flag in the DB and use it
15  checkNoisyChannels = cms.untracked.bool(True),
16  # set static booking (all the detector)
17  staticBooking = cms.untracked.bool(True),
18  inTimeHitsLowerBound = cms.int32(500),
19  inTimeHitsUpperBound = cms.int32(500),
20  # switch on debug verbosity
21  debug = cms.untracked.bool(False),
22  # if true access LTC digis
23  localrun = cms.untracked.bool(True),
24  # define the boundaries for in-time hits (ns)
25  defaultTmax = cms.int32(500),
26  performPerWireT0Calibration = cms.bool(True),
27  # the # of luminosity blocks to reset the histos
28  ResetCycle = cms.untracked.int32(400),
29  doAllHitsOccupancies = cms.untracked.bool(True),
30  doNoiseOccupancies = cms.untracked.bool(False),
31  doInTimeOccupancies = cms.untracked.bool(False),
32  # switch on the mode for running on test pulses (different top folder)
33  testPulseMode = cms.untracked.bool(False),
34  # switch for filtering on synch noise events (threshold on # of digis per chamber)
35  filterSyncNoise = cms.untracked.bool(False),
36  # look for synch noise events
37  lookForSyncNoise = cms.untracked.bool(False),
38  # threshold on # of digis per chamber to define sync noise
39  maxTDCHitsPerChamber = cms.untracked.int32(100),
40  # switch for time boxes with layer granularity (commissioning only)
41  doLayerTimeBoxes = cms.untracked.bool(False)
42 )
43 
44