CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/TrackingTools/GeomPropagators/python/SmartPropagator_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # Tracker's propagators 
00004 from TrackingTools.MaterialEffects.RungeKuttaTrackerPropagator_cfi import *
00005 from TrackingTools.MaterialEffects.RungeKuttaTrackerPropagatorOpposite_cfi import *
00006 
00007 # Muon's propagators
00008 from TrackPropagation.SteppingHelixPropagator.SteppingHelixPropagatorAlong_cfi import *
00009 from TrackPropagation.SteppingHelixPropagator.SteppingHelixPropagatorOpposite_cfi import *
00010 from TrackPropagation.SteppingHelixPropagator.SteppingHelixPropagatorAny_cfi import *
00011 
00012 # Smart propagators
00013 
00014 # RungeKuttaTrackerPropagator + SteppingHelixPropagatorAlong (dir = alongMomentum)
00015 from TrackingTools.GeomPropagators.SmartPropagatorRK_cfi import *
00016 
00017 # RungeKuttaTrackerPropagatorOpposite + SteppingHelixPropagatorOpposite (dir = oppositeToMomentum)
00018 from TrackingTools.GeomPropagators.SmartPropagatorRKOpposite_cfi import *
00019 
00020 # RungeKuttaTrackerPropagator + SteppingHelixPropagatorAny (dir = alongMomentum)
00021 from TrackingTools.GeomPropagators.SmartPropagatorAnyRK_cfi import *
00022 
00023 # RungeKuttaTrackerPropagatorOpposite + SteppingHelixPropagatorAny (dir = oppositeToMomentum)
00024 from TrackingTools.GeomPropagators.SmartPropagatorAnyRKOpposite_cfi import *
00025 
00026 # PropagatorWithMaterial + SteppingHelixPropagatorAlong (dir = alongMomentum)
00027 from TrackingTools.GeomPropagators.SmartPropagator_cfi import *
00028 
00029 # PropagatorWithMaterialOpposite + SteppingHelixPropagatorOpposite (dir = oppositeToMomentum)
00030 from TrackingTools.GeomPropagators.SmartPropagatorOpposite_cfi import *
00031 
00032 # PropagatorWithMaterial + SteppingHelixPropagatorAny (dir = alongMomentum)
00033 from TrackingTools.GeomPropagators.SmartPropagatorAny_cfi import *
00034 
00035 # PropagatorWithMaterialOpposite + SteppingHelixPropagatorAny (dir = oppositeToMomentum)
00036 from TrackingTools.GeomPropagators.SmartPropagatorAnyOpposite_cfi import *
00037 
00038