CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
dt1DRecHits_LinearDrift_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # Module for rechit building of simulated digis using the constant
4 # drift velocity over the entire cell
5 # The reconstruction algo and its parameter set
7 dt1DRecHits = cms.EDProducer("DTRecHitProducer",
8  # The reconstruction algo and its parameter set
9  DTLinearDriftAlgo,
10  debug = cms.untracked.bool(False),
11  dtDigiLabel = cms.InputTag("muonDTDigis")
12 )
13 
14 # add cosmics reconstruction in collisions
16 dt1DCosmicRecHits = cms.EDProducer("DTRecHitProducer",
17  # The reconstruction algo and its parameter set
18  DTLinearDriftAlgo_CosmicData,
19  debug = cms.untracked.bool(False),
20  # The label to retrieve digis from the event
21  #dtDigiLabel = cms.InputTag("dtunpacker")
22  dtDigiLabel = cms.InputTag("muonDTDigis")
23 )