Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:46

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # The reconstruction algo and its parameter set
0004 # constant vdrift from DB (and ttrig from DB)
0005 
0006 CalibratedDigis = cms.EDProducer("CalibratedDigis",
0007                                  tTrigModeConfig = cms.PSet(
0008         # The velocity of signal propagation along the wire (cm/ns)
0009         vPropWire = cms.double(24.4),
0010         # Switch on/off the TOF correction for particles
0011         doTOFCorrection = cms.bool(True),
0012         tofCorrType = cms.int32(0),
0013         wirePropCorrType = cms.int32(0),
0014         # Switch on/off the correction for the signal propagation along the wire
0015         doWirePropCorrection = cms.bool(True),
0016         # Switch on/off the TOF correction from pulses
0017         doT0Correction = cms.bool(True),
0018         debug = cms.untracked.bool(False),
0019         tTrigLabel = cms.string(''),
0020         t0Label = cms.string('')
0021         ),
0022                                  tTrigMode = cms.string('DTTTrigSyncFromDB'),
0023                                  timeOffset = cms.int32(0),
0024                                  flat_calib = cms.int32(0),
0025                                  dtDigiTag = cms.InputTag("hltMuonDTDigis")
0026                                  )
0027 
0028 
0029 
0030