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 cell 
0004 # parametrization
0005 # The reconstruction algo and its parameter set
0006 from RecoLocalMuon.DTRecHit.DTParametrizedDriftAlgo_cfi import *
0007 dt1DRecHits = cms.EDProducer("DTRecHitProducer",
0008     # The reconstruction algo and its parameter set
0009     DTParametrizedDriftAlgo,
0010     debug = cms.untracked.bool(False),
0011     dtDigiLabel = cms.InputTag("muonDTDigis")
0012 )
0013 
0014