Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:07

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 DTLinearDriftFromDBAlgo = cms.PSet(
0006     recAlgoConfig = cms.PSet(
0007         # Times outside this window (ns) are considered as coming from previous BXs
0008         minTime = cms.double(-3.0),
0009         debug = cms.untracked.bool(False),
0010         tTrigModeConfig = cms.PSet(
0011             # The velocity of signal propagation along the wire (cm/ns)
0012             vPropWire = cms.double(24.4),
0013             # Switch on/off the TOF correction for particles
0014             doTOFCorrection = cms.bool(True),
0015             tofCorrType = cms.int32(0),
0016             wirePropCorrType = cms.int32(0),
0017             # Switch on/off the correction for the signal propagation along the wire
0018             doWirePropCorrection = cms.bool(True),
0019             # Switch on/off the TOF correction from pulses
0020             doT0Correction = cms.bool(True),
0021             debug = cms.untracked.bool(False),
0022             tTrigLabel = cms.string(''),
0023             t0Label = cms.string('')
0024         ),
0025         maxTime = cms.double(420.0),
0026         # Forcing Step 2 to go back to digi time 
0027         stepTwoFromDigi = cms.bool(False),
0028         # The module to be used for ttrig synchronization and its set parameter
0029         tTrigMode = cms.string('DTTTrigSyncFromDB'),
0030         # perform a correction to vdrift in MB1s of external wheels
0031         doVdriftCorr = cms.bool(True),
0032         useUncertDB = cms.bool(True),
0033         readLegacyTTrigDB = cms.bool(True),
0034         readLegacyVDriftDB = cms.bool(True),
0035     ),
0036     recAlgo = cms.string('DTLinearDriftFromDBAlgo')
0037 )
0038