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 reconstruction of simulated data for CSA07: reconstruction is performed using fake drift velocity
0004 # from DB and digi time sinchronization reads fake ttrig and fake t0 from DB
0005 # The reconstruction algo and its parameter set
0006 from RecoLocalMuon.DTRecHit.DTLinearDriftFromDBAlgo_cfi import *
0007 dt1DRecHits = cms.EDProducer("DTRecHitProducer",
0008     # The reconstruction algo and its parameter set
0009     DTLinearDriftFromDBAlgo,
0010     debug = cms.untracked.bool(False),
0011     # The label to retrieve digis from the event
0012     dtDigiLabel = cms.InputTag("muonDTDigis")
0013 )
0014 
0015 
0016 # Also add the cosmics reconstruction in collisions
0017 from RecoLocalMuon.DTRecHit.DTLinearDriftFromDBAlgo_CosmicData_cfi import *
0018 dt1DCosmicRecHits = cms.EDProducer("DTRecHitProducer",
0019     # The reconstruction algo and its parameter set
0020     DTLinearDriftFromDBAlgo_CosmicData,
0021     debug = cms.untracked.bool(False),
0022     # The label to retrieve digis from the event
0023     #dtDigiLabel = cms.InputTag("dtunpacker")
0024     dtDigiLabel = cms.InputTag("muonDTDigis")
0025 )