Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:07

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # Module for rechit building of simulated digis using the constant 
0004 # drift velocity over the entire cell
0005 # The reconstruction algo and its parameter set
0006 from RecoLocalMuon.DTRecHit.DTLinearDriftAlgo_cfi import *
0007 dt1DRecHits = cms.EDProducer("DTRecHitProducer",
0008     # The reconstruction algo and its parameter set
0009     DTLinearDriftAlgo,
0010     debug = cms.untracked.bool(False),
0011     dtDigiLabel = cms.InputTag("muonDTDigis")
0012 )
0013 
0014 # add cosmics reconstruction in collisions
0015 from RecoLocalMuon.DTRecHit.DTLinearDriftAlgo_CosmicData_cfi import *
0016 dt1DCosmicRecHits = cms.EDProducer("DTRecHitProducer",
0017     # The reconstruction algo and its parameter set
0018     DTLinearDriftAlgo_CosmicData,
0019     debug = cms.untracked.bool(False),
0020     # The label to retrieve digis from the event
0021     #dtDigiLabel = cms.InputTag("dtunpacker")
0022     dtDigiLabel = cms.InputTag("muonDTDigis")
0023 )