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 # local track fitting
7 from RecoPPS.Local.totemTimingLocalTracks_cfi import totemTimingLocalTracks
8 
9 totemTimingLocalReconstructionTask = cms.Task(
10  totemTimingRecHits ,
11  totemTimingLocalTracks
12 )
13 totemTimingLocalReconstruction = cms.Sequence(totemTimingLocalReconstructionTask)