|
||||
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.DTLPPatternReco4DAlgo_ParamDrift_cfi import * 0006 dt4DSegments = cms.EDProducer("DTRecSegment4DProducer", 0007 # The reconstruction algo and its parameter set 0008 DTLPPatternReco4DAlgo_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
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |