CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
dtNoiseCalibration_cfi.py
Go to the documentation of this file.
2 
3 dtNoiseCalibration = cms.EDAnalyzer("DTNoiseCalibration",
4  # Label to retrieve DT digis from the event
5  digiLabel = cms.InputTag('muonDTDigis'),
6  # Output ROOT file name
7  rootFileName = cms.untracked.string('dtNoiseCalib.root'),
8  # Trigger mode
9  useTimeWindow = cms.bool(True),
10  # The trigger width (ns) (full window used if useTimeWindow = False)
11  triggerWidth = cms.double(2000),
12  # Time window defined as tTrig - offset (TDC counts). If defaultTtrig not set reads from DB.
13  #defaultTtrig = cms.int32(322),
14  timeWindowOffset = cms.int32(100),
15  # Noise threshold (Hz)
16  maximumNoiseRate = cms.double(2000),
17  # Use absolute rate per channel or subtract average rate in layer
18  useAbsoluteRate = cms.bool(False),
19  # Cells with detailed histos
20  cellsWithHisto = cms.vstring(
21  '-1 1 3 1 2 48',
22  '0 1 7 1 1 8',
23  '0 1 8 2 3 56',
24  '2 1 8 2 2 56',
25  '2 1 8 2 2 57',
26  '2 1 12 1 2 3',
27  '2 1 12 1 3 2',
28  '0 2 2 1 2 3',
29  '-2 3 3 1 2 2',
30  '1 3 3 1 4 27',
31  '1 3 3 1 4 28',
32  '1 3 3 1 4 29',
33  '1 3 3 1 4 30'
34  )
35 )