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 (and ttrig from DB)
0005 DTLinearDriftAlgo_CosmicData = cms.PSet(
0006     recAlgoConfig = cms.PSet(
0007         # The module to be used for ttrig synchronization and its set parameter
0008         tTrigMode = cms.string('DTTTrigSyncFromDB'),
0009         #         # Drift velocity for MB1 W1 (unfluxed chamber during MTCC)
0010         # double driftVelocityMB1W1 = 0.00570
0011         # Times outside this window (ns) are considered as coming from previous BXs
0012         minTime = cms.double(-3.0),
0013         # Drift velocity (cm/ns)                
0014         driftVelocity = cms.double(0.00543),
0015         # Cell resolution (cm)
0016         hitResolution = cms.double(0.02),
0017         debug = cms.untracked.bool(False),
0018         tTrigModeConfig = cms.PSet(
0019             # The velocity of signal propagation along the wire (cm/ns)
0020             vPropWire = cms.double(24.4),
0021             # Switch on/off the TOF correction for particles
0022             doTOFCorrection = cms.bool(False),
0023             tofCorrType = cms.int32(0),
0024             wirePropCorrType = cms.int32(0),
0025             # Switch on/off the correction for the signal propagation along the wire
0026             doWirePropCorrection = cms.bool(False),
0027             # Switch on/off the T0 correction from pulses
0028             doT0Correction = cms.bool(True),
0029             debug = cms.untracked.bool(False),
0030             tTrigLabel = cms.string('cosmics'),
0031             t0Label = cms.string('')
0032         ),
0033         maxTime = cms.double(420.0)
0034     ),
0035     recAlgo = cms.string('DTLinearDriftAlgo')
0036 )
0037