CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Types | Private Member Functions | Private Attributes
GsfPropagatorWithMaterial Class Reference

#include <GsfPropagatorWithMaterial.h>

Inheritance diagram for GsfPropagatorWithMaterial:
Propagator

Public Types

enum  MaterialLocation { atSource, atDestination, fromDirection }
 

Public Member Functions

virtual GsfPropagatorWithMaterialclone () const
 
const FullConvolutionWithMaterialconvolutionWithMaterial () const
 Access to the convolutor and thus to the material effects. More...
 
const PropagatorgeometricalPropagator () const
 Access to the geometrical propagator. More...
 
 GsfPropagatorWithMaterial (const Propagator &Propagator, const GsfMaterialEffectsUpdator &MEUpdator)
 
 GsfPropagatorWithMaterial (const GsfPropagatorAdapter &Propagator, const FullConvolutionWithMaterial &Convolutor)
 
const MagneticFieldmagneticField () const
 
virtual TrajectoryStateOnSurface propagate (const TrajectoryStateOnSurface &tsos, const Surface &surface) const
 
virtual TrajectoryStateOnSurface propagate (const TrajectoryStateOnSurface &tsos, const Plane &plane) const
 
virtual TrajectoryStateOnSurface propagate (const TrajectoryStateOnSurface &tsos, const Cylinder &cylinder) const
 
virtual TrajectoryStateOnSurface propagate (const FreeTrajectoryState &fts, const Surface &surface) const
 
virtual TrajectoryStateOnSurface propagate (const FreeTrajectoryState &fts, const Plane &plane) const
 
virtual TrajectoryStateOnSurface propagate (const FreeTrajectoryState &fts, const Cylinder &cylinder) const
 
virtual std::pair
< TrajectoryStateOnSurface,
double > 
propagateWithPath (const TrajectoryStateOnSurface &tsos, const Surface &surface) const
 
virtual std::pair
< TrajectoryStateOnSurface,
double > 
propagateWithPath (const TrajectoryStateOnSurface &, const Plane &) const
 
virtual std::pair
< TrajectoryStateOnSurface,
double > 
propagateWithPath (const TrajectoryStateOnSurface &, const Cylinder &) const
 
virtual std::pair
< TrajectoryStateOnSurface,
double > 
propagateWithPath (const FreeTrajectoryState &fts, const Surface &surface) const
 
virtual std::pair
< TrajectoryStateOnSurface,
double > 
propagateWithPath (const FreeTrajectoryState &, const Plane &) const
 
virtual std::pair
< TrajectoryStateOnSurface,
double > 
propagateWithPath (const FreeTrajectoryState &, const Cylinder &) const
 
void setMaterialLocation (const MaterialLocation location)
 
virtual bool setMaxDirectionChange (float phiMax)
 
virtual void setPropagationDirection (PropagationDirection dir) const
 
 ~GsfPropagatorWithMaterial ()
 
- Public Member Functions inherited from Propagator
virtual FreeTrajectoryState propagate (const FreeTrajectoryState &, const reco::BeamSpot &) const
 
virtual std::pair
< FreeTrajectoryState, double > 
propagateWithPath (const FreeTrajectoryState &, const GlobalPoint &, const GlobalPoint &) const
 
virtual PropagationDirection propagationDirection () const
 
 Propagator (PropagationDirection dir=alongMomentum)
 
virtual ~Propagator ()
 

Private Types

typedef std::vector
< TrajectoryStateOnSurface
MultiTSOS
 
typedef std::pair
< TrajectoryStateOnSurface,
double > 
TsosWP
 

Private Member Functions

TrajectoryStateOnSurface convoluteStateWithMaterial (const TrajectoryStateOnSurface, const PropagationDirection) const
 Convolution of state with material effects. More...
 
std::pair
< TrajectoryStateOnSurface,
double > 
convoluteWithMaterial (const std::pair< TrajectoryStateOnSurface, double > &) const
 Convolution of state+path with material effects. More...
 
bool materialAtSource () const
 Inclusion of material at the source? More...
 

Private Attributes

DeepCopyPointerByClone
< FullConvolutionWithMaterial
theConvolutor
 
DeepCopyPointerByClone
< GsfPropagatorAdapter
theGeometricalPropagator
 
MaterialLocation theMaterialLocation
 

Detailed Description

Propagation including material effects on destination surface for multiple trajectory states. Propagates components independently using a specific propagator for the geometrical part and a GsfMaterialEffectsUpdator to include multiple scattering and energy loss at the destination. The number of components will increase according to the result of the GsfMaterialEffectsUpdator.

Definition at line 23 of file GsfPropagatorWithMaterial.h.

Member Typedef Documentation

Definition at line 185 of file GsfPropagatorWithMaterial.h.

Definition at line 184 of file GsfPropagatorWithMaterial.h.

Member Enumeration Documentation

Constructor & Destructor Documentation

GsfPropagatorWithMaterial::GsfPropagatorWithMaterial ( const Propagator Propagator,
const GsfMaterialEffectsUpdator MEUpdator 
)

Constructor with explicit single state propagator and material effects objects.

Definition at line 9 of file GsfPropagatorWithMaterial.cc.

Referenced by clone().

10  :
11  Propagator(aPropagator.propagationDirection()),
15 {
16  // if ( propWithPathTimer1==0 ) defineTimer();
17 }
Propagator(PropagationDirection dir=alongMomentum)
Definition: Propagator.h:41
DeepCopyPointerByClone< GsfPropagatorAdapter > theGeometricalPropagator
DeepCopyPointerByClone< FullConvolutionWithMaterial > theConvolutor
GsfPropagatorWithMaterial::GsfPropagatorWithMaterial ( const GsfPropagatorAdapter Propagator,
const FullConvolutionWithMaterial Convolutor 
)

Constructor with explicit multi state propagator and convolutor.

Definition at line 19 of file GsfPropagatorWithMaterial.cc.

20  :
21  Propagator(aGsfPropagator.propagationDirection()),
22  theGeometricalPropagator(aGsfPropagator.clone()),
23  theConvolutor(aConvolutor.clone()),
25 {
26  // if ( propWithPathTimer1==0 ) defineTimer();
27 }
Propagator(PropagationDirection dir=alongMomentum)
Definition: Propagator.h:41
DeepCopyPointerByClone< GsfPropagatorAdapter > theGeometricalPropagator
DeepCopyPointerByClone< FullConvolutionWithMaterial > theConvolutor
GsfPropagatorWithMaterial::~GsfPropagatorWithMaterial ( )
inline

Definition at line 37 of file GsfPropagatorWithMaterial.h.

37 {}

Member Function Documentation

virtual GsfPropagatorWithMaterial* GsfPropagatorWithMaterial::clone ( void  ) const
inlinevirtual

Implements Propagator.

Definition at line 157 of file GsfPropagatorWithMaterial.h.

References GsfPropagatorWithMaterial(), theConvolutor, and theGeometricalPropagator.

158  {
160  }
GsfPropagatorWithMaterial(const Propagator &Propagator, const GsfMaterialEffectsUpdator &MEUpdator)
DeepCopyPointerByClone< GsfPropagatorAdapter > theGeometricalPropagator
DeepCopyPointerByClone< FullConvolutionWithMaterial > theConvolutor
TrajectoryStateOnSurface GsfPropagatorWithMaterial::convoluteStateWithMaterial ( const TrajectoryStateOnSurface  tsos,
const PropagationDirection  propDir 
) const
private

Convolution of state with material effects.

Definition at line 146 of file GsfPropagatorWithMaterial.cc.

References theConvolutor.

Referenced by propagateWithPath().

148 {
149  //
150  // convolute with material
151  //
152  return (*theConvolutor)(tsos,propDir);
153 }
DeepCopyPointerByClone< FullConvolutionWithMaterial > theConvolutor
std::pair< TrajectoryStateOnSurface, double > GsfPropagatorWithMaterial::convoluteWithMaterial ( const std::pair< TrajectoryStateOnSurface, double > &  ) const
private

Convolution of state+path with material effects.

Definition at line 134 of file GsfPropagatorWithMaterial.cc.

References Propagator::propagationDirection(), and theConvolutor.

Referenced by propagateWithPath().

135 {
136  //
137  // convolute with material
138  //
139  PropagationDirection propDir = PropagationDirectionFromPath()(aStateWithPath.second,
141  return TsosWP((*theConvolutor)(aStateWithPath.first,propDir),
142  aStateWithPath.second);
143 }
virtual PropagationDirection propagationDirection() const
Definition: Propagator.h:143
PropagationDirection
std::pair< TrajectoryStateOnSurface, double > TsosWP
DeepCopyPointerByClone< FullConvolutionWithMaterial > theConvolutor
const FullConvolutionWithMaterial& GsfPropagatorWithMaterial::convolutionWithMaterial ( ) const
inline

Access to the convolutor and thus to the material effects.

Definition at line 153 of file GsfPropagatorWithMaterial.h.

References theConvolutor.

Referenced by GsfTrajectorySmoother::GsfTrajectorySmoother().

153  {
154  return *theConvolutor;
155  }
DeepCopyPointerByClone< FullConvolutionWithMaterial > theConvolutor
const Propagator& GsfPropagatorWithMaterial::geometricalPropagator ( ) const
inline

Access to the geometrical propagator.

Definition at line 149 of file GsfPropagatorWithMaterial.h.

References theGeometricalPropagator.

Referenced by GsfTrajectorySmoother::GsfTrajectorySmoother().

149  {
150  return *theGeometricalPropagator;
151  }
DeepCopyPointerByClone< GsfPropagatorAdapter > theGeometricalPropagator
const MagneticField* GsfPropagatorWithMaterial::magneticField ( ) const
inlinevirtual

Implements Propagator.

Definition at line 162 of file GsfPropagatorWithMaterial.h.

References GsfPropagatorAdapter::magneticField(), and theGeometricalPropagator.

DeepCopyPointerByClone< GsfPropagatorAdapter > theGeometricalPropagator
virtual const MagneticField * magneticField() const
bool GsfPropagatorWithMaterial::materialAtSource ( ) const
private

Inclusion of material at the source?

Definition at line 156 of file GsfPropagatorWithMaterial.cc.

References alongMomentum, anyDirection, atDestination, atSource, edm::hlt::Exception, fromDirection, Propagator::propagationDirection(), and theMaterialLocation.

Referenced by propagateWithPath().

156  {
159  throw cms::Exception("LogicError")
160  << "PropagatorWithMaterial: propagation direction = anyDirection is "
161  << "incompatible with adding of material at source";
162  }
163  }
166 }
virtual PropagationDirection propagationDirection() const
Definition: Propagator.h:143
virtual TrajectoryStateOnSurface GsfPropagatorWithMaterial::propagate ( const TrajectoryStateOnSurface tsos,
const Surface surface 
) const
inlinevirtual

Propagation to generic surface: specialisation done in base class.

Reimplemented from Propagator.

Definition at line 41 of file GsfPropagatorWithMaterial.h.

References Propagator::propagate().

43  {
44  return Propagator::propagate(tsos,surface);
45  }
virtual TrajectoryStateOnSurface propagate(const FreeTrajectoryState &, const Surface &) const
Definition: Propagator.cc:12
virtual TrajectoryStateOnSurface GsfPropagatorWithMaterial::propagate ( const TrajectoryStateOnSurface tsos,
const Plane plane 
) const
inlinevirtual

Propagation to plane: use propagationWithPath (adequate for use with AnalyticalPropagator, should be implemented to be more general).

Reimplemented from Propagator.

Definition at line 49 of file GsfPropagatorWithMaterial.h.

References propagateWithPath().

51  {
52  return propagateWithPath(tsos,plane).first;
53  }
virtual std::pair< TrajectoryStateOnSurface, double > propagateWithPath(const TrajectoryStateOnSurface &tsos, const Surface &surface) const
virtual TrajectoryStateOnSurface GsfPropagatorWithMaterial::propagate ( const TrajectoryStateOnSurface tsos,
const Cylinder cylinder 
) const
inlinevirtual

Propagation to cylinder: use propagationWithPath (adequate for use with AnalyticalPropagator, should be implemented to be more general).

Reimplemented from Propagator.

Definition at line 57 of file GsfPropagatorWithMaterial.h.

References propagateWithPath().

59  {
60  return propagateWithPath(tsos,cylinder).first;
61  }
virtual std::pair< TrajectoryStateOnSurface, double > propagateWithPath(const TrajectoryStateOnSurface &tsos, const Surface &surface) const
virtual TrajectoryStateOnSurface GsfPropagatorWithMaterial::propagate ( const FreeTrajectoryState fts,
const Surface surface 
) const
inlinevirtual

Propagation to generic surface: specialisation done in base class. Use from FTS implies single state (better use PropagatorWithMaterial)!

Reimplemented from Propagator.

Definition at line 86 of file GsfPropagatorWithMaterial.h.

References Propagator::propagate().

88  {
89  return Propagator::propagate(fts,surface);
90  }
virtual TrajectoryStateOnSurface propagate(const FreeTrajectoryState &, const Surface &) const
Definition: Propagator.cc:12
virtual TrajectoryStateOnSurface GsfPropagatorWithMaterial::propagate ( const FreeTrajectoryState fts,
const Plane plane 
) const
inlinevirtual

Propagation to plane: use propagationWithPath (adequate for use with AnalyticalPropagator, should be implemented to be more general). Use from FTS implies single state (better use PropagatorWithMaterial)!

Implements Propagator.

Definition at line 95 of file GsfPropagatorWithMaterial.h.

References propagateWithPath().

97  {
98  return propagateWithPath(fts,plane).first;
99  }
virtual std::pair< TrajectoryStateOnSurface, double > propagateWithPath(const TrajectoryStateOnSurface &tsos, const Surface &surface) const
virtual TrajectoryStateOnSurface GsfPropagatorWithMaterial::propagate ( const FreeTrajectoryState fts,
const Cylinder cylinder 
) const
inlinevirtual

Propagation to cylinder: use propagationWithPath (adequate for use with AnalyticalPropagator, should be implemented to be more general). Use from FTS implies single state (better use PropagatorWithMaterial)!

Implements Propagator.

Definition at line 104 of file GsfPropagatorWithMaterial.h.

References propagateWithPath().

106  {
107  return propagateWithPath(fts,cylinder).first;
108  }
virtual std::pair< TrajectoryStateOnSurface, double > propagateWithPath(const TrajectoryStateOnSurface &tsos, const Surface &surface) const
virtual std::pair<TrajectoryStateOnSurface,double> GsfPropagatorWithMaterial::propagateWithPath ( const TrajectoryStateOnSurface tsos,
const Surface surface 
) const
inlinevirtual

Propagation to generic surface with path length calculation: specialisation done in base class.

Reimplemented from Propagator.

Definition at line 67 of file GsfPropagatorWithMaterial.h.

References Propagator::propagateWithPath().

Referenced by propagate().

69  {
70  return Propagator::propagateWithPath(tsos,surface);
71  }
virtual std::pair< TrajectoryStateOnSurface, double > propagateWithPath(const FreeTrajectoryState &, const Surface &) const
Definition: Propagator.cc:77
std::pair< TrajectoryStateOnSurface, double > GsfPropagatorWithMaterial::propagateWithPath ( const TrajectoryStateOnSurface tsos,
const Plane plane 
) const
virtual

Propagation to plane with path length calculation.

Reimplemented from Propagator.

Definition at line 50 of file GsfPropagatorWithMaterial.cc.

References convoluteStateWithMaterial(), convoluteWithMaterial(), TrajectoryStateOnSurface::isValid(), materialAtSource(), GsfPropagatorAdapter::propagateWithPath(), Propagator::propagationDirection(), and theGeometricalPropagator.

51  {
52  // TimeMe t1(*propWithPathTimer1,false);
53  //
54  // add material before propagation?
55  //
56  TrajectoryStateOnSurface stateAtSource;
57  if ( materialAtSource() )
58  stateAtSource = convoluteStateWithMaterial(tsos,propagationDirection());
59  else
60  stateAtSource = tsos;
61  if ( !stateAtSource.isValid() ) return TsosWP(stateAtSource,0.);
62  //
63  // geometrical propagation
64  //
65  TsosWP propStateWP(theGeometricalPropagator->propagateWithPath(stateAtSource,plane));
66  if ( !(propStateWP.first).isValid() ) return propStateWP;
67  //
68  // return convoluted state
69  //
70  return convoluteWithMaterial(propStateWP);
71 }
virtual PropagationDirection propagationDirection() const
Definition: Propagator.h:143
virtual std::pair< TrajectoryStateOnSurface, double > propagateWithPath(const TrajectoryStateOnSurface &tsos, const Surface &surface) const
TrajectoryStateOnSurface convoluteStateWithMaterial(const TrajectoryStateOnSurface, const PropagationDirection) const
Convolution of state with material effects.
std::pair< TrajectoryStateOnSurface, double > TsosWP
std::pair< TrajectoryStateOnSurface, double > convoluteWithMaterial(const std::pair< TrajectoryStateOnSurface, double > &) const
Convolution of state+path with material effects.
bool materialAtSource() const
Inclusion of material at the source?
DeepCopyPointerByClone< GsfPropagatorAdapter > theGeometricalPropagator
std::pair< TrajectoryStateOnSurface, double > GsfPropagatorWithMaterial::propagateWithPath ( const TrajectoryStateOnSurface tsos,
const Cylinder cylinder 
) const
virtual

Propagation to cylinder with path length calculation.

Reimplemented from Propagator.

Definition at line 74 of file GsfPropagatorWithMaterial.cc.

References convoluteStateWithMaterial(), convoluteWithMaterial(), TrajectoryStateOnSurface::isValid(), materialAtSource(), GsfPropagatorAdapter::propagateWithPath(), Propagator::propagationDirection(), and theGeometricalPropagator.

75  {
76  // TimeMe t2(*propWithPathTimer2,false);
77  //
78  // add material before propagation?
79  //
80  TrajectoryStateOnSurface stateAtSource;
81  if ( materialAtSource() )
82  stateAtSource = convoluteStateWithMaterial(tsos,propagationDirection());
83  else
84  stateAtSource = tsos;
85  if ( !stateAtSource.isValid() ) return TsosWP(stateAtSource,0.);
86  //
87  // geometrical propagation
88  //
89  TsosWP propStateWP(theGeometricalPropagator->propagateWithPath(stateAtSource,cylinder));
90  if ( !(propStateWP.first).isValid() ) return propStateWP;
91  //
92  // return convoluted state
93  //
94  return convoluteWithMaterial(propStateWP);
95 }
virtual PropagationDirection propagationDirection() const
Definition: Propagator.h:143
virtual std::pair< TrajectoryStateOnSurface, double > propagateWithPath(const TrajectoryStateOnSurface &tsos, const Surface &surface) const
TrajectoryStateOnSurface convoluteStateWithMaterial(const TrajectoryStateOnSurface, const PropagationDirection) const
Convolution of state with material effects.
std::pair< TrajectoryStateOnSurface, double > TsosWP
std::pair< TrajectoryStateOnSurface, double > convoluteWithMaterial(const std::pair< TrajectoryStateOnSurface, double > &) const
Convolution of state+path with material effects.
bool materialAtSource() const
Inclusion of material at the source?
DeepCopyPointerByClone< GsfPropagatorAdapter > theGeometricalPropagator
virtual std::pair<TrajectoryStateOnSurface,double> GsfPropagatorWithMaterial::propagateWithPath ( const FreeTrajectoryState fts,
const Surface surface 
) const
inlinevirtual

Propagation to generic surface with path length calculation: specialisation done in base class. Use from FTS implies single state (better use PropagatorWithMaterial)!

Reimplemented from Propagator.

Definition at line 114 of file GsfPropagatorWithMaterial.h.

References Propagator::propagateWithPath().

116  {
117  return Propagator::propagateWithPath(fts,surface);
118  }
virtual std::pair< TrajectoryStateOnSurface, double > propagateWithPath(const FreeTrajectoryState &, const Surface &) const
Definition: Propagator.cc:77
std::pair< TrajectoryStateOnSurface, double > GsfPropagatorWithMaterial::propagateWithPath ( const FreeTrajectoryState fts,
const Plane plane 
) const
virtual

Propagation to plane with path length calculation. Use from FTS implies single state (better use PropagatorWithMaterial)!

Implements Propagator.

Definition at line 98 of file GsfPropagatorWithMaterial.cc.

References convoluteWithMaterial(), materialAtSource(), GsfPropagatorAdapter::propagateWithPath(), and theGeometricalPropagator.

99  {
100  static int nWarn(0);
101  if ( nWarn++<5 )
102  edm::LogInfo("GsfPropagatorWithMaterial")
103  << "GsfPropagatorWithMaterial used from FTS: input state might have been collapsed!";
104  TsosWP propStateWP = theGeometricalPropagator->propagateWithPath(fts,plane);
105  if ( !(propStateWP.first).isValid() || materialAtSource() ) return propStateWP;
106  //
107  // return convoluted state
108  //
109  return convoluteWithMaterial(propStateWP);
110 }
virtual std::pair< TrajectoryStateOnSurface, double > propagateWithPath(const TrajectoryStateOnSurface &tsos, const Surface &surface) const
std::pair< TrajectoryStateOnSurface, double > TsosWP
std::pair< TrajectoryStateOnSurface, double > convoluteWithMaterial(const std::pair< TrajectoryStateOnSurface, double > &) const
Convolution of state+path with material effects.
bool materialAtSource() const
Inclusion of material at the source?
DeepCopyPointerByClone< GsfPropagatorAdapter > theGeometricalPropagator
std::pair< TrajectoryStateOnSurface, double > GsfPropagatorWithMaterial::propagateWithPath ( const FreeTrajectoryState fts,
const Cylinder cylinder 
) const
virtual

Propagation to cylinder with path length calculation. Use from FTS implies single state (better use PropagatorWithMaterial)!

Implements Propagator.

Definition at line 113 of file GsfPropagatorWithMaterial.cc.

References convoluteWithMaterial(), materialAtSource(), GsfPropagatorAdapter::propagateWithPath(), and theGeometricalPropagator.

114  {
115  static int nWarn(0);
116  if ( nWarn++<5 )
117  edm::LogInfo("GsfPropagatorWithMaterial")
118  << "GsfPropagatorWithMaterial used from FTS: input state might have been collapsed!";
119  TsosWP propStateWP = theGeometricalPropagator->propagateWithPath(fts,cylinder);
120  if ( !(propStateWP.first).isValid() || materialAtSource() ) return propStateWP;
121  //
122  // return convoluted state
123  //
124  return convoluteWithMaterial(propStateWP);
125 }
virtual std::pair< TrajectoryStateOnSurface, double > propagateWithPath(const TrajectoryStateOnSurface &tsos, const Surface &surface) const
std::pair< TrajectoryStateOnSurface, double > TsosWP
std::pair< TrajectoryStateOnSurface, double > convoluteWithMaterial(const std::pair< TrajectoryStateOnSurface, double > &) const
Convolution of state+path with material effects.
bool materialAtSource() const
Inclusion of material at the source?
DeepCopyPointerByClone< GsfPropagatorAdapter > theGeometricalPropagator
void GsfPropagatorWithMaterial::setMaterialLocation ( const MaterialLocation  location)
inline

Choice of location for including material effects: fromDirection is equivalent to atSource for propagation alongMomentum and to atDestination for propagation oppositeToMomentum. Inclusion of material effects at the source (either explicitely or implicitely) is not possible if propagating with anyDirection and will effectively disable material effects when propagating from a FreeTrajectoryState.

Definition at line 145 of file GsfPropagatorWithMaterial.h.

References theMaterialLocation.

145  {
146  theMaterialLocation = location;
147  }
virtual bool GsfPropagatorWithMaterial::setMaxDirectionChange ( float  phiMax)
inlinevirtual

Set the maximal change of direction (integrated along the path) for any single propagation. If reaching of the destination surface requires change of direction that exceeds this value the Propagator returns an invalid state. For example, a track may reach a forward plane after many spirals, which may be undesirable for a track reconstructor. Setting this value to pi will force the propagation to fail. The default value is "no limit". The method returnd true if the concrete propagator respects the limit, false otherwise.

Reimplemented from Propagator.

Definition at line 130 of file GsfPropagatorWithMaterial.h.

References GsfPropagatorAdapter::setMaxDirectionChange(), and theGeometricalPropagator.

130  {
132  }
DeepCopyPointerByClone< GsfPropagatorAdapter > theGeometricalPropagator
virtual bool setMaxDirectionChange(float phiMax)
void GsfPropagatorWithMaterial::setPropagationDirection ( PropagationDirection  dir) const
virtual

The propagation direction can now be set for every propagator. There is no more distinction between unidirectional and bidirectional at class level. The value "anyDiriction" for PropagationDirection provides the functionality of the ex-BidirectionalPropagator. The values "alongMomentum" and "oppositeToMomentum" provide the functionality of the ex-UnidirectionalPropagator.

Reimplemented from Propagator.

Definition at line 128 of file GsfPropagatorWithMaterial.cc.

References GsfPropagatorAdapter::setPropagationDirection(), Propagator::setPropagationDirection(), and theGeometricalPropagator.

Referenced by GsfTrajectorySmoother::trajectories().

128  {
131 }
DeepCopyPointerByClone< GsfPropagatorAdapter > theGeometricalPropagator
virtual void setPropagationDirection(PropagationDirection dir) const
virtual void setPropagationDirection(PropagationDirection dir) const
Definition: Propagator.h:132
dbl *** dir
Definition: mlp_gen.cc:35

Member Data Documentation

DeepCopyPointerByClone<FullConvolutionWithMaterial> GsfPropagatorWithMaterial::theConvolutor
private
DeepCopyPointerByClone<GsfPropagatorAdapter> GsfPropagatorWithMaterial::theGeometricalPropagator
private
MaterialLocation GsfPropagatorWithMaterial::theMaterialLocation
private

Definition at line 182 of file GsfPropagatorWithMaterial.h.

Referenced by materialAtSource(), and setMaterialLocation().