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 
4 ttrigcalib = cms.EDAnalyzer("DTTTrigCalibration",
5  # Switch on/off the check of noisy channels
6  checkNoisyChannels = cms.untracked.bool(True),
7  # Module for t0 subtraction
8  tTrigMode = cms.untracked.string('DTTTrigSyncT0Only'),
9  # Switch on/off the subtraction of t0 from pulses
10  doSubtractT0 = cms.untracked.bool(True),
11  # Max number of digi per layer to reject a chamber
12  maxDigiPerLayer = cms.untracked.int32(10),
13  # Label to retrieve DT digis from the event
14  digiLabel = cms.untracked.string('muonDTDigis'),
15  # Name of the ROOT file which will contain the time boxes
16  rootFileName = cms.untracked.string('DTTimeBoxes.root'),
17  # Switch on/off the DB writing
18  fitAndWrite = cms.untracked.bool(True),
19  debug = cms.untracked.bool(False),
20  # Parameter set for t0 subtraction module
21  tTrigModeConfig = cms.untracked.PSet(debug = cms.untracked.bool(False)),
22  # Tbox rising edge fit parameter
23  sigmaTTrigFit = cms.untracked.double(5.0),
24  # the kfactor to be uploaded in the ttrig DB
25  kFactor = cms.untracked.double(-0.7)
26  )