CMS 3D CMS Logo

dt1DRecHits_LinearDriftFromDB_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Module for reconstruction of simulated data for CSA07: reconstruction is performed using fake drift velocity
4 # from DB and digi time sinchronization reads fake ttrig and fake t0 from DB
5 # The reconstruction algo and its parameter set
7 dt1DRecHits = cms.EDProducer("DTRecHitProducer",
8  # The reconstruction algo and its parameter set
9  DTLinearDriftFromDBAlgo,
10  debug = cms.untracked.bool(False),
11  # The label to retrieve digis from the event
12  dtDigiLabel = cms.InputTag("muonDTDigis")
13 )
14 
15 
16 # Also add the cosmics reconstruction in collisions
18 dt1DCosmicRecHits = cms.EDProducer("DTRecHitProducer",
19  # The reconstruction algo and its parameter set
20  DTLinearDriftFromDBAlgo_CosmicData,
21  debug = cms.untracked.bool(False),
22  # The label to retrieve digis from the event
23  #dtDigiLabel = cms.InputTag("dtunpacker")
24  dtDigiLabel = cms.InputTag("muonDTDigis")
25 )