CMS 3D CMS Logo

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

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # Module for rechit building of simulated digis using the constant 
00004 # drift velocity over the entire cell
00005 # The reconstruction algo and its parameter set
00006 from RecoLocalMuon.DTRecHit.DTLinearDriftAlgo_cfi import *
00007 dt1DRecHits = cms.EDProducer("DTRecHitProducer",
00008     # The reconstruction algo and its parameter set
00009     DTLinearDriftAlgo,
00010     debug = cms.untracked.bool(False),
00011     dtDigiLabel = cms.InputTag("muonDTDigis")
00012 )
00013 
00014 # add cosmics reconstruction in collisions
00015 from RecoLocalMuon.DTRecHit.DTLinearDriftAlgo_CosmicData_cfi import *
00016 dt1DCosmicRecHits = cms.EDProducer("DTRecHitProducer",
00017     # The reconstruction algo and its parameter set
00018     DTLinearDriftAlgo_CosmicData,
00019     debug = cms.untracked.bool(False),
00020     # The label to retrieve digis from the event
00021     #dtDigiLabel = cms.InputTag("dtunpacker")
00022     dtDigiLabel = cms.InputTag("muonDTDigis")
00023 )