CMS 3D CMS Logo

analyticalPropagatorESProducer_cff.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from TrackingTools.GeomPropagators.AnalyticalPropagator_cfi import AnalyticalPropagator
4 
5 anyDirectionAnalyticalPropagator = AnalyticalPropagator.clone(
6  MaxDPhi = 1.6 ,
7  ComponentName = "anyDirectionAnalyticalPropagator" ,
8  PropagationDirection = "anyDirection"
9 )
10 
11 alongMomentumAnalyticalPropagator = AnalyticalPropagator.clone(
12  MaxDPhi = 1.6 ,
13  ComponentName = "alongMomentumAnalyticalPropagator" ,
14  PropagationDirection = "alongMomentum"
15 )
16 
17 oppositeToMomentumAnalyticalPropagator = AnalyticalPropagator.clone(
18  MaxDPhi = 1.6 ,
19  ComponentName = "oppositeToMomentumAnalyticalPropagator" ,
20  PropagationDirection = "oppositeToMomentum"
21 )
AnalyticalPropagator * clone() const override