CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/CalibMuon/DTCalibration/python/dtTTrigCalibration_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 DTTTrigCalibration = cms.EDAnalyzer("DTTTrigCalibration",
00004     # Label to retrieve DT digis from the event
00005     digiLabel = cms.untracked.string('muonDTDigis'),
00006     # Switch on/off the check of noisy channels
00007     checkNoisyChannels = cms.untracked.bool(True),
00008     # Module for t0 subtraction
00009     tTrigMode = cms.untracked.string('DTTTrigSyncT0Only'),
00010     # Switch on/off the subtraction of t0 from pulses
00011     doSubtractT0 = cms.untracked.bool(True),
00012     # Max number of digi per layer to reject a chamber
00013     maxDigiPerLayer = cms.untracked.int32(10),
00014     # Name of the ROOT file which will contain the time boxes
00015     rootFileName = cms.untracked.string('DTTimeBoxes.root'),
00016     # Switch on/off the DB writing
00017     fitAndWrite = cms.untracked.bool(False),
00018     debug = cms.untracked.bool(False),
00019     # Parameter set for t0 subtraction module
00020     tTrigModeConfig = cms.untracked.PSet(debug = cms.untracked.bool(False)),
00021     # Tbox rising edge fit parameter
00022     sigmaTTrigFit = cms.untracked.double(5.0),
00023     # the kfactor to be uploaded in the ttrig DB
00024     kFactor = cms.untracked.double(-0.7)
00025 )