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 2D rechit building 
0004 # The algo uses the Linear DriftFromDB Velocity (which is a 1D rec hit algo)
0005 # The block of the reconstruction algo
0006 from RecoLocalMuon.DTSegment.DTMeantimerPatternReco2DAlgo_LinearDriftFromDB_cfi import *
0007 dt2DSegments = cms.EDProducer("DTRecSegment2DProducer",
0008     # The reconstruction algo and its parameter set
0009     DTMeantimerPatternReco2DAlgo_LinearDriftFromDB,
0010     # debug option
0011     debug = cms.untracked.bool(False),
0012     # name of the rechit 1D collection in the event
0013     recHits1DLabel = cms.InputTag("dt1DRecHits")
0014 )
0015 
0016 #add cosmics reconstruction in collisions
0017 from RecoLocalMuon.DTSegment.DTMeantimerPatternReco2DAlgo_LinearDriftFromDB_CosmicData_cfi import *
0018 dt2DCosmicSegments = cms.EDProducer("DTRecSegment2DProducer",
0019     # The reconstruction algo and its parameter set
0020     DTMeantimerPatternReco2DAlgo_LinearDriftFromDB_CosmicData,
0021     # debuggin opt
0022     debug = cms.untracked.bool(False),
0023     # name of the rechit 1D collection in the event
0024     recHits1DLabel = cms.InputTag("dt1DCosmicRecHits")
0025 )