Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:29

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 dtTTrigCalibration = cms.EDAnalyzer("DTTTrigCalibration",
0004     # Label to retrieve DT digis from the event
0005     digiLabel = cms.untracked.string('muonDTDigis'),
0006     # Switch on/off the check of noisy channels
0007     checkNoisyChannels = cms.untracked.bool(True),
0008     # Module for t0 subtraction
0009     tTrigMode = cms.untracked.string('DTTTrigSyncT0Only'),
0010     # Switch on/off the subtraction of t0 from pulses
0011     doSubtractT0 = cms.untracked.bool(True),
0012     # Max number of digi per layer to reject a chamber
0013     maxDigiPerLayer = cms.untracked.int32(10),
0014     # Name of the ROOT file which will contain the time boxes
0015     rootFileName = cms.untracked.string('DTTimeBoxes.root'),
0016     # Switch on/off the DB writing
0017     fitAndWrite = cms.untracked.bool(False),
0018     debug = cms.untracked.bool(False),
0019     # Parameter set for t0 subtraction module
0020     tTrigModeConfig = cms.untracked.PSet(debug = cms.untracked.bool(False)),
0021     # Tbox rising edge fit parameter
0022     sigmaTTrigFit = cms.untracked.double(5.0),
0023     # the kfactor to be uploaded in the ttrig DB
0024     kFactor = cms.untracked.double(-0.7)
0025 )