CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10/src/RecoLocalMuon/DTRecHit/python/dt1DRecHits_LinearDriftFromDB_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # Module for reconstruction of simulated data for CSA07: reconstruction is performed using fake drift velocity
00004 # from DB and digi time sinchronization reads fake ttrig and fake t0 from DB
00005 # The reconstruction algo and its parameter set
00006 from RecoLocalMuon.DTRecHit.DTLinearDriftFromDBAlgo_cfi import *
00007 dt1DRecHits = cms.EDProducer("DTRecHitProducer",
00008     # The reconstruction algo and its parameter set
00009     DTLinearDriftFromDBAlgo,
00010     debug = cms.untracked.bool(False),
00011     # The label to retrieve digis from the event
00012     dtDigiLabel = cms.InputTag("muonDTDigis")
00013 )
00014 
00015 
00016 # Also add the cosmics reconstruction in collisions
00017 from RecoLocalMuon.DTRecHit.DTLinearDriftFromDBAlgo_CosmicData_cfi import *
00018 dt1DCosmicRecHits = cms.EDProducer("DTRecHitProducer",
00019     # The reconstruction algo and its parameter set
00020     DTLinearDriftFromDBAlgo_CosmicData,
00021     debug = cms.untracked.bool(False),
00022     # The label to retrieve digis from the event
00023     #dtDigiLabel = cms.InputTag("dtunpacker")
00024     dtDigiLabel = cms.InputTag("muonDTDigis")
00025 )