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 RecoCTPPS.TotemRPLocal.totemTimingRecHits_cfi import totemTimingRecHits
5 
6 # local track fitting
7 from RecoCTPPS.TotemRPLocal.totemTimingLocalTracks_cfi import totemTimingLocalTracks
8 
9 totemTimingLocalReconstruction = cms.Sequence(
10  totemTimingRecHits *
11  totemTimingLocalTracks
12 )