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_LinearDrift_cfi import *
0006 dt4DSegments = cms.EDProducer("DTRecSegment4DProducer",
0007     # The reconstruction algo and its parameter set
0008     DTCombinatorialPatternReco4DAlgo_LinearDrift,
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 
0018 #add cosmics reconstruction in collisions
0019 from RecoLocalMuon.DTSegment.DTCombinatorialPatternReco4DAlgo_LinearDrift_CosmicData_cfi import *
0020 dt4DCosmicSegments = cms.EDProducer("DTRecSegment4DProducer",
0021     # The reconstruction algo and its parameter set
0022     DTCombinatorialPatternReco4DAlgo_LinearDrift_CosmicData,
0023     # debuggin opt
0024     debug = cms.untracked.bool(False),
0025     # name of the rechit 1D collection in the event
0026     recHits1DLabel = cms.InputTag("dt1DCosmicRecHits"),
0027     # name of the rechit 2D collection in the event
0028     recHits2DLabel = cms.InputTag("dt2DCosmicSegments")
0029 )