CMS 3D CMS Logo

totemTimingLocalReconstruction_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # reco hit production
4 from RecoPPS.Local.totemTimingRecHits_cfi import totemTimingRecHits
5 
6 #Diamond Sampic reconstruction flow
7 from RecoPPS.Local.diamondSampicLocalTracks_cfi import diamondSampicLocalTracks
8 diamondSampicLocalTracks.recHitsTag=cms.InputTag("totemTimingRecHits")
9 diamondSampicLocalReconstructionTask = cms.Task(
10  totemTimingRecHits,
11  diamondSampicLocalTracks)
12 diamondSampicLocalReconstruction = cms.Sequence(diamondSampicLocalReconstructionTask)
13 
14 #Original UFSD reconstruction flow
15 from RecoPPS.Local.totemTimingLocalTracks_cfi import totemTimingLocalTracks
16 totemTimingLocalTracks.recHitsTag=cms.InputTag("totemTimingRecHits")
17 totemTimingLocalReconstructionTask = cms.Task(
18  totemTimingRecHits,
19  totemTimingLocalTracks)
20 totemTimingLocalReconstruction = cms.Sequence(totemTimingLocalReconstructionTask)