CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
dtTTrigCalibration_cfi.py
Go to the documentation of this file.
2 
3 dtTTrigCalibration = cms.EDAnalyzer("DTTTrigCalibration",
4  # Label to retrieve DT digis from the event
5  digiLabel = cms.untracked.string('muonDTDigis'),
6  # Switch on/off the check of noisy channels
7  checkNoisyChannels = cms.untracked.bool(True),
8  # Module for t0 subtraction
9  tTrigMode = cms.untracked.string('DTTTrigSyncT0Only'),
10  # Switch on/off the subtraction of t0 from pulses
11  doSubtractT0 = cms.untracked.bool(True),
12  # Max number of digi per layer to reject a chamber
13  maxDigiPerLayer = cms.untracked.int32(10),
14  # Name of the ROOT file which will contain the time boxes
15  rootFileName = cms.untracked.string('DTTimeBoxes.root'),
16  # Switch on/off the DB writing
17  fitAndWrite = cms.untracked.bool(False),
18  debug = cms.untracked.bool(False),
19  # Parameter set for t0 subtraction module
20  tTrigModeConfig = cms.untracked.PSet(debug = cms.untracked.bool(False)),
21  # Tbox rising edge fit parameter
22  sigmaTTrigFit = cms.untracked.double(5.0),
23  # the kfactor to be uploaded in the ttrig DB
24  kFactor = cms.untracked.double(-0.7)
25 )