CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/RecoLocalMuon/DTRecHit/python/DTNoDriftAlgo_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 DTNoDriftAlgo_CosmicData = cms.PSet(
00005     recAlgoConfig = cms.PSet(
00006         # DUMMY
00007         #
00008         # Fixed Drift distance (cm)                
00009         fixedDrift = cms.double(1.0),
00010         #
00011         # DUMMY
00012         # Dummy ttrig parameters required by DTRecHitBaseAlgo.cc
00013         tTrigMode = cms.string('DTTTrigSyncFromDB'),
00014         # Times outside this window (ns) are considered as coming from previous BXs
00015         minTime = cms.double(1000.0),
00016         # Cell resolution (cm)
00017         hitResolution = cms.double(1.0),
00018         debug = cms.untracked.bool(False),
00019         tTrigModeConfig = cms.PSet(
00020             # The velocity of signal propagation along the wire (cm/ns)
00021             vPropWire = cms.double(24.4),
00022             # Switch on/off the TOF correction for particles
00023             doTOFCorrection = cms.bool(False),
00024             tofCorrType = cms.int32(0),
00025             wirePropCorrType = cms.int32(0),
00026             # Switch on/off the correction for the signal propagation along the wire
00027             doWirePropCorrection = cms.bool(False),
00028             doT0Correction = cms.bool(False),
00029             debug = cms.untracked.bool(False),
00030             tTrigLabel = cms.string('cosmics')
00031         ),
00032         maxTime = cms.double(3500.0)
00033     ),
00034     recAlgo = cms.string('DTNoDriftAlgo')
00035 )
00036