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 cosmic data: reconstruction is performed using constant drift velocity 
0004 # from DB and digi time sinchronization reads ttrig and t0 from DB
0005 # The reconstruction algo and its parameter set
0006 from RecoLocalMuon.DTRecHit.DTLinearDriftFromDBAlgo_CosmicData_cfi import *
0007 dt1DRecHits = cms.EDProducer("DTRecHitProducer",
0008     # The reconstruction algo and its parameter set
0009     DTLinearDriftFromDBAlgo_CosmicData,
0010     debug = cms.untracked.bool(False),
0011     # The label to retrieve digis from the event
0012     #dtDigiLabel = cms.InputTag("dtunpacker")
0013     dtDigiLabel = cms.InputTag("muonDTDigis")
0014 )
0015 
0016