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 4D rechit building 
0004 # The block of the reconstruction algo
0005 from RecoLocalMuon.DTSegment.DTCombinatorialPatternReco4DAlgo_ParamDrift_cfi import *
0006 dt4DSegments = cms.EDProducer("DTRecSegment4DProducer",
0007     # The reconstruction algo and its parameter set
0008     DTCombinatorialPatternReco4DAlgo_ParamDrift,
0009     # debuggin opt
0010     debug = cms.untracked.bool(False),
0011     # name of the rechit 1D collection in the event
0012     recHits1DLabel = cms.InputTag("dt1DRecHits"),
0013     # name of the rechit 2D collection in the event
0014     recHits2DLabel = cms.InputTag("dt2DSegments")
0015 )
0016 
0017