CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/RecoLocalMuon/DTRecHit/python/DTLinearDriftAlgo_CosmicData_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # The reconstruction algo and its parameter set
00004 #constant vdrift (and ttrig from DB)
00005 DTLinearDriftAlgo_CosmicData = cms.PSet(
00006     recAlgoConfig = cms.PSet(
00007         # The module to be used for ttrig synchronization and its set parameter
00008         tTrigMode = cms.string('DTTTrigSyncFromDB'),
00009         #         # Drift velocity for MB1 W1 (unfluxed chamber during MTCC)
00010         # double driftVelocityMB1W1 = 0.00570
00011         # Times outside this window (ns) are considered as coming from previous BXs
00012         minTime = cms.double(-3.0),
00013         # Drift velocity (cm/ns)                
00014         driftVelocity = cms.double(0.00543),
00015         # Cell resolution (cm)
00016         hitResolution = cms.double(0.02),
00017         debug = cms.untracked.bool(False),
00018         tTrigModeConfig = cms.PSet(
00019             # The velocity of signal propagation along the wire (cm/ns)
00020             vPropWire = cms.double(24.4),
00021             # Switch on/off the TOF correction for particles
00022             doTOFCorrection = cms.bool(False),
00023             tofCorrType = cms.int32(0),
00024             wirePropCorrType = cms.int32(0),
00025             # Switch on/off the correction for the signal propagation along the wire
00026             doWirePropCorrection = cms.bool(False),
00027             # Switch on/off the T0 correction from pulses
00028             doT0Correction = cms.bool(True),
00029             debug = cms.untracked.bool(False),
00030             tTrigLabel = cms.string('cosmics')
00031         ),
00032         maxTime = cms.double(420.0)
00033     ),
00034     recAlgo = cms.string('DTLinearDriftAlgo')
00035 )
00036