CMS 3D CMS Logo

ctppsPixelLocalReconstruction_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # local clusterizer
4 from RecoCTPPS.PixelLocal.ctppsPixelClusters_cfi import ctppsPixelClusters
5 
6 # local rechit producer
7 from RecoCTPPS.PixelLocal.ctppsPixelRecHits_cfi import ctppsPixelRecHits
8 
9 # local track producer
10 from RecoCTPPS.PixelLocal.ctppsPixelLocalTracks_cfi import ctppsPixelLocalTracks
11 
12 ctppsPixelLocalReconstruction = cms.Sequence(
13  ctppsPixelClusters*ctppsPixelRecHits*ctppsPixelLocalTracks
14 )