CMS 3D CMS Logo

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

#include <KFTrajectorySmoother.h>

Inheritance diagram for KFTrajectorySmoother:
TrajectorySmoother

Public Member Functions

const PropagatoralongPropagator () const
 
virtual KFTrajectorySmootherclone () const override
 
const MeasurementEstimatorestimator () const
 
 KFTrajectorySmoother (const Propagator &aPropagator, const TrajectoryStateUpdator &aUpdator, const MeasurementEstimator &aEstimator, float errorRescaling=100.f, int minHits=3)
 
 KFTrajectorySmoother (const Propagator *aPropagator, const TrajectoryStateUpdator *aUpdator, const MeasurementEstimator *aEstimator, float errorRescaling=100.f, int minHits=3, const DetLayerGeometry *detLayerGeometry=0, TkCloner const *hc=0)
 
const PropagatoroppositePropagator () const
 
virtual void setHitCloner (TkCloner const *hc)
 
virtual Trajectory trajectory (const Trajectory &aTraj) const override
 
const TrajectoryStateUpdatorupdator () const
 
virtual ~KFTrajectorySmoother ()
 
- Public Member Functions inherited from TrajectorySmoother
virtual TrajectoryContainer trajectories (const Trajectory &traj) const
 
virtual ~TrajectorySmoother ()
 

Private Types

typedef FreeTrajectoryState FTS
 
typedef TrajectoryMeasurement TM
 
typedef TrajectoryStateOnSurface TSOS
 

Private Attributes

const DetLayerGeometry dummyGeometry
 
int minHits_
 
const PropagatortheAlongPropagator
 
float theErrorRescaling
 
const MeasurementEstimatortheEstimator
 
const DetLayerGeometrytheGeometry
 
TkCloner const * theHitCloner = 0
 
const PropagatortheOppositePropagator
 
const TrajectoryStateUpdatortheUpdator
 

Additional Inherited Members

- Public Types inherited from TrajectorySmoother
typedef std::vector< TrajectoryTrajectoryContainer
 
typedef
TrajectoryContainer::iterator 
TrajectoryIterator
 

Detailed Description

A Standard Kalman smoother. The forward fit is not redone, only the backward smoothing. Ported from ORCA

Author
todorov, cerati

Definition at line 20 of file KFTrajectorySmoother.h.

Member Typedef Documentation

Definition at line 25 of file KFTrajectorySmoother.h.

Definition at line 26 of file KFTrajectorySmoother.h.

Definition at line 24 of file KFTrajectorySmoother.h.

Constructor & Destructor Documentation

KFTrajectorySmoother::KFTrajectorySmoother ( const Propagator aPropagator,
const TrajectoryStateUpdator aUpdator,
const MeasurementEstimator aEstimator,
float  errorRescaling = 100.f,
int  minHits = 3 
)
inline

Definition at line 30 of file KFTrajectorySmoother.h.

References alongMomentum, Propagator::clone(), dummyGeometry, oppositeToMomentum, AlCaHLTBitMon_ParallelJobs::p, theAlongPropagator, theGeometry, and theOppositePropagator.

Referenced by clone().

34  :
35  theAlongPropagator(nullptr),
36  theOppositePropagator(nullptr),
37  theUpdator(aUpdator.clone()),
38  theEstimator(aEstimator.clone()),
41  theGeometry(nullptr){ // to be fixed. Why this first constructor is needed? who is using it? Can it be removed?
43  auto p = aPropagator.clone();
44  p->setPropagationDirection(alongMomentum);
46  p = aPropagator.clone();
47  p->setPropagationDirection(oppositeToMomentum);
49  }
virtual TrajectoryStateUpdator * clone() const =0
const DetLayerGeometry dummyGeometry
const DetLayerGeometry * theGeometry
virtual Propagator * clone() const =0
virtual MeasurementEstimator * clone() const =0
const MeasurementEstimator * theEstimator
const TrajectoryStateUpdator * theUpdator
const Propagator * theAlongPropagator
const Propagator * theOppositePropagator
KFTrajectorySmoother::KFTrajectorySmoother ( const Propagator aPropagator,
const TrajectoryStateUpdator aUpdator,
const MeasurementEstimator aEstimator,
float  errorRescaling = 100.f,
int  minHits = 3,
const DetLayerGeometry detLayerGeometry = 0,
TkCloner const *  hc = 0 
)
inline

Definition at line 52 of file KFTrajectorySmoother.h.

References alongMomentum, Propagator::clone(), dummyGeometry, oppositeToMomentum, AlCaHLTBitMon_ParallelJobs::p, theAlongPropagator, theGeometry, and theOppositePropagator.

58  :
59  theAlongPropagator(nullptr),
60  theOppositePropagator(nullptr),
61  theUpdator(aUpdator->clone()),
62  theEstimator(aEstimator->clone()),
66  theGeometry(detLayerGeometry){
68  auto p = aPropagator->clone();
69  p->setPropagationDirection(alongMomentum);
71  p = aPropagator->clone();
72  p->setPropagationDirection(oppositeToMomentum);
74  }
virtual TrajectoryStateUpdator * clone() const =0
const DetLayerGeometry dummyGeometry
const DetLayerGeometry * theGeometry
virtual Propagator * clone() const =0
virtual MeasurementEstimator * clone() const =0
const MeasurementEstimator * theEstimator
const TrajectoryStateUpdator * theUpdator
susybsm::HSCParticleCollection hc
Definition: classes.h:25
const Propagator * theAlongPropagator
const Propagator * theOppositePropagator
TkCloner const * theHitCloner
KFTrajectorySmoother::~KFTrajectorySmoother ( )
virtual

Definition at line 26 of file KFTrajectorySmoother.cc.

References theAlongPropagator, theEstimator, theOppositePropagator, and theUpdator.

26  {
27 
28  delete theAlongPropagator;
29  delete theOppositePropagator;
30  delete theUpdator;
31  delete theEstimator;
32 
33 }
const MeasurementEstimator * theEstimator
const TrajectoryStateUpdator * theUpdator
const Propagator * theAlongPropagator
const Propagator * theOppositePropagator

Member Function Documentation

const Propagator* KFTrajectorySmoother::alongPropagator ( ) const
inline

Definition at line 80 of file KFTrajectorySmoother.h.

References theAlongPropagator.

80 { return theAlongPropagator;}
const Propagator * theAlongPropagator
virtual KFTrajectorySmoother* KFTrajectorySmoother::clone ( void  ) const
inlineoverridevirtual

Implements TrajectorySmoother.

Definition at line 86 of file KFTrajectorySmoother.h.

References KFTrajectorySmoother(), minHits_, theAlongPropagator, theErrorRescaling, theEstimator, theGeometry, theHitCloner, and theUpdator.

86  {
88  }
const DetLayerGeometry * theGeometry
KFTrajectorySmoother(const Propagator &aPropagator, const TrajectoryStateUpdator &aUpdator, const MeasurementEstimator &aEstimator, float errorRescaling=100.f, int minHits=3)
const MeasurementEstimator * theEstimator
const TrajectoryStateUpdator * theUpdator
const Propagator * theAlongPropagator
TkCloner const * theHitCloner
const MeasurementEstimator* KFTrajectorySmoother::estimator ( void  ) const
inline

Definition at line 84 of file KFTrajectorySmoother.h.

References theEstimator.

Referenced by trajectory().

84 {return theEstimator;}
const MeasurementEstimator * theEstimator
const Propagator* KFTrajectorySmoother::oppositePropagator ( ) const
inline

Definition at line 81 of file KFTrajectorySmoother.h.

References theOppositePropagator.

81 {return theOppositePropagator;}
const Propagator * theOppositePropagator
virtual void KFTrajectorySmoother::setHitCloner ( TkCloner const *  hc)
inlinevirtual

Implements TrajectorySmoother.

Definition at line 91 of file KFTrajectorySmoother.h.

References AnalysisDataFormats_SUSYBSMObjects::hc, and theHitCloner.

91 { theHitCloner = hc;}
susybsm::HSCParticleCollection hc
Definition: classes.h:25
TkCloner const * theHitCloner
Trajectory KFTrajectorySmoother::trajectory ( const Trajectory aTraj) const
overridevirtual

Implements TrajectorySmoother.

Definition at line 36 of file KFTrajectorySmoother.cc.

References alongMomentum, assert(), heavyFlavorValidationHarvestingSequence_cff::combiner, MuonSubdetId::CSC, CSCDetId, DetId::det(), Trajectory::direction(), PXFDetId::disk(), MuonSubdetId::DT, Trajectory::empty(), MeasurementEstimator::estimate(), estimator(), TrajectoryStateOnSurface::globalMomentum(), TrajectoryStateOnSurface::globalPosition(), DetLayerGeometry::idToLayer(), TrajectoryStateOnSurface::isValid(), j, PXBDetId::layer(), TOBDetId::layer(), TIBDetId::layer(), TrajectoryStateOnSurface::localPosition(), LogDebug, LogTrace, TkCloner::makeShared(), Trajectory::measurements(), minHits_, DetId::Muon, nullptr, PV3DBase< T, PVType, FrameType >::perp(), PixelSubdetector::PixelBarrel, PixelSubdetector::PixelEndcap, Propagator::propagate(), Propagator::propagationDirection(), TrajectoryStateOnSurface::rescaleError(), runTheMatrix::ret, MuonSubdetId::RPC, RPCDetId, Trajectory::seed(), dqm_diff::start, DetId::subdetId(), StripSubdetector::TEC, theAlongPropagator, theErrorRescaling, theGeometry, theHitCloner, theOppositePropagator, StripSubdetector::TIB, StripSubdetector::TID, StripSubdetector::TOB, DetId::Tracker, unlikely, TrajectoryStateUpdator::update(), updator(), TIDDetId::wheel(), and TECDetId::wheel().

36  {
37 
38  if(aTraj.empty()) return Trajectory();
39 
40  const Propagator* usePropagator = theAlongPropagator;
41  if(aTraj.direction() == alongMomentum) {
42  usePropagator = theOppositePropagator;
43  }
44 
45  const std::vector<TM> & avtm = aTraj.measurements();
46 
47 
48 
49 
50 #ifdef EDM_ML_DEBUG
51  LogDebug("TrackFitters") << "KFTrajectorySmoother::trajectories starting with " << avtm.size() << " HITS\n";
52  for (unsigned int j=0;j<avtm.size();j++) {
53  if (avtm[j].recHit()->det())
54  LogTrace("TrackFitters") << "hit #:" << j+1 << " rawId=" << avtm[j].recHit()->det()->geographicalId().rawId()
55  << " validity=" << avtm[j].recHit()->isValid();
56  else
57  LogTrace("TrackFitters") << "hit #:" << j+1 << " Hit with no Det information";
58  }
59 #endif // EDM_ML_DEBUG
60 
61 
62 
64  bool retry=false;
65  auto start = avtm.rbegin();
66 
67  do {
68  auto hitSize = avtm.rend()-start;
69  if unlikely( hitSize < minHits_ ) {
70  LogDebug("TrackFitters") << " killing trajectory" << "\n";
71  return Trajectory();
72  }
73  Trajectory ret(aTraj.seed(), usePropagator->propagationDirection());
74  Trajectory & myTraj = ret;
75  myTraj.reserve(hitSize);
76  retry=false;
77 
78  TSOS predTsos = (*start).forwardPredictedState();
80  TSOS currTsos;
81 
82  auto hitCounter = hitSize;
83  for(std::vector<TM>::const_reverse_iterator itm = start; itm != (avtm.rend()); ++itm,--hitCounter) {
84 
86 
87  //check surface just for safety: should never be ==0 because they are skipped in the fitter
88  // if unlikely(hit->det() == nullptr) continue;
89  if unlikely( hit->surface()==nullptr ) {
90  LogDebug("TrackFitters") << " Error: invalid hit with no GeomDet attached .... skipping";
91  continue;
92  }
93 
94 
95  if (itm != start)//no propagation needed for first smoothed (==last fitted) hit
96  predTsos = usePropagator->propagate( currTsos, *(hit->surface()) );
97 
98  if unlikely(!predTsos.isValid()) {
99  LogDebug("TrackFitters") << "KFTrajectorySmoother: predicted tsos not valid!";
100  LogDebug("TrackFitters") << " retry with last hit removed" << "\n";
101  LogDebug("TrackFitters")
102  // std::cout
103  << "tsos not valid " << currTsos.globalMomentum().perp() << ' '
104  << hitSize << ' ' << hitCounter << ' ' << hit->geographicalId() << ' '
105  << hit->surface()->position().perp() << ' ' << hit->surface()->eta() << ' ' << hit->surface()->phi() << std::endl;
106  start++;
107  retry = true;
108  break;
109  }
110 
111  if(hit->isValid()) {
112 
113 #ifdef EDM_ML_DEBUG
114  LogDebug("TrackFitters")
115  << "----------------- HIT #" << hitCounter << " (VALID)-----------------------\n"
116  << "HIT IS AT R " << hit->globalPosition().perp() << "\n"
117  << "HIT IS AT Z " << hit->globalPosition().z() << "\n"
118  << "HIT IS AT Phi " << hit->globalPosition().phi() << "\n"
119  << "HIT IS AT Loc " << hit->localPosition() << "\n"
120  << "WITH LocError " << hit->localPositionError() << "\n"
121  << "HIT IS AT Glo " << hit->globalPosition() << "\n"
122  << "SURFACE POSITION: " << hit->surface()->position() << "\n"
123  << "SURFACE ROTATION: " << hit->surface()->rotation() << "\n"
124  << "hit geographicalId=" << hit->geographicalId().rawId();
125 
126  DetId hitId = hit->geographicalId();
127 
128  if(hitId.det() == DetId::Tracker) {
129  if (hitId.subdetId() == StripSubdetector::TIB )
130  LogTrace("TrackFitters") << " I am TIB " << TIBDetId(hitId).layer();
131  else if (hitId.subdetId() == StripSubdetector::TOB )
132  LogTrace("TrackFitters") << " I am TOB " << TOBDetId(hitId).layer();
133  else if (hitId.subdetId() == StripSubdetector::TEC )
134  LogTrace("TrackFitters") << " I am TEC " << TECDetId(hitId).wheel();
135  else if (hitId.subdetId() == StripSubdetector::TID )
136  LogTrace("TrackFitters") << " I am TID " << TIDDetId(hitId).wheel();
137  else if (hitId.subdetId() == (int) PixelSubdetector::PixelBarrel )
138  LogTrace("TrackFitters") << " I am PixBar " << PXBDetId(hitId).layer();
139  else if (hitId.subdetId() == (int) PixelSubdetector::PixelEndcap )
140  LogTrace("TrackFitters") << " I am PixFwd " << PXFDetId(hitId).disk();
141  else
142  LogTrace("TrackFitters") << " UNKNOWN TRACKER HIT TYPE ";
143  }
144  else if(hitId.det() == DetId::Muon) {
145  if(hitId.subdetId() == MuonSubdetId::DT)
146  LogTrace("TrackFitters") << " I am DT " << DTWireId(hitId);
147  else if (hitId.subdetId() == MuonSubdetId::CSC )
148  LogTrace("TrackFitters") << " I am CSC " << CSCDetId(hitId);
149  else if (hitId.subdetId() == MuonSubdetId::RPC )
150  LogTrace("TrackFitters") << " I am RPC " << RPCDetId(hitId);
151  else
152  LogTrace("TrackFitters") << " UNKNOWN MUON HIT TYPE ";
153  }
154  else
155  LogTrace("TrackFitters") << " UNKNOWN HIT TYPE ";
156 #endif //EDM_ML_DEBUG
157 
158 
159 
160  TSOS combTsos,smooTsos;
161 
162  //3 different possibilities to calculate smoothed state:
163  //1: update combined predictions with hit
164  //2: combine fwd-prediction with bwd-filter
165  //3: combine bwd-prediction with fwd-filter
166 
167  //combTsos is the predicted state with N-1 hits information. this means:
168  //forward predicted state for first smoothed (last fitted) hit
169  //backward predicted state for last smoothed (first fitted) hit
170  //combination of forward and backward predictions for other hits
171  if (itm == start) combTsos = itm->forwardPredictedState();
172  else if (hitCounter == 1) combTsos = predTsos;
173  else combTsos = combiner(predTsos, itm->forwardPredictedState());
174 
175  if unlikely(!combTsos.isValid()) {
176  LogDebug("TrackFitters") <<
177  "KFTrajectorySmoother: combined tsos not valid!\n" <<
178  "pred Tsos pos: " << predTsos.globalPosition() << "\n" <<
179  "pred Tsos mom: " << predTsos.globalMomentum() << "\n" <<
180  "TrackingRecHit: " << hit->surface()->toGlobal(hit->localPosition()) << "\n" ;
181  start++;
182  retry = true;
183  break;
184  }
185 
186  assert( (hit->geographicalId()!=0U) | (!hit->canImproveWithTrack()) );
187  assert(hit->surface()!=nullptr);
188  assert( (!(hit)->canImproveWithTrack()) | (nullptr!=theHitCloner));
189  assert( (!(hit)->canImproveWithTrack()) | (nullptr!=dynamic_cast<BaseTrackerRecHit const*>(hit.get())));
190  auto preciseHit = theHitCloner->makeShared(hit,combTsos);
191  assert(preciseHit->isValid());
192  assert( (preciseHit->geographicalId()!=0U) | (!preciseHit->canImproveWithTrack()) );
193  assert(preciseHit->surface()!=nullptr);
194 
195  if unlikely(!preciseHit->isValid()){
196  LogTrace("TrackFitters") << "THE Precise HIT IS NOT VALID: using currTsos = predTsos" << "\n";
197  currTsos = predTsos;
198  myTraj.push(TM(predTsos, hit, 0, theGeometry->idToLayer(hit->geographicalId()) ));
199  }else{
200  LogTrace("TrackFitters") << "THE Precise HIT IS VALID: updating currTsos" << "\n";
201 
202  //update backward predicted tsos with the hit
203  currTsos = updator()->update(predTsos, *preciseHit);
204  if unlikely(!currTsos.isValid()) {
205  currTsos = predTsos;
206  edm::LogWarning("KFSmoother_UpdateFailed") <<
207  "Failed updating state with hit. Rolling back to non-updated state.\n" <<
208  "State: " << predTsos <<
209  "Hit local pos: " << hit->localPosition() << "\n" <<
210  "Hit local err: " << hit->localPositionError() << "\n" <<
211  "Hit global pos: " << hit->globalPosition() << "\n" <<
212  "Hit global err: " << hit->globalPositionError().matrix() <<
213  "\n";
214  }
215 
216  //smooTsos updates the N-1 hits prediction with the hit
217  if (itm == start) smooTsos = itm->updatedState();
218  else if (hitCounter == 1) smooTsos = currTsos;
219  else smooTsos = combiner(itm->forwardPredictedState(), currTsos);
220 
221  if unlikely(!smooTsos.isValid()) {
222  LogDebug("TrackFitters") << "KFTrajectorySmoother: smoothed tsos not valid!";
223  start++;
224  retry = true;
225  break;
226  }
227 
228  double estimate;
229  if (itm != start) estimate = estimator()->estimate(combTsos, *preciseHit ).second;//correct?
230  else estimate = itm->estimate();
231 
232  LogTrace("TrackFitters")
233  << "predTsos !" << "\n"
234  << predTsos
235  <<" with local position " << predTsos.localPosition() << "\n\n"
236  << "currTsos !" << "\n"
237  << currTsos << "\n"
238  <<" with local position " << currTsos.localPosition() << "\n\n"
239  << "smooTsos !" << "\n"
240  << smooTsos
241  <<" with local position " << smooTsos.localPosition() << "\n\n"
242  << "smoothing estimate (with combTSOS)=" << estimate << "\n"
243  << "filtering estimate=" << itm->estimate() << "\n";
244 
245  //check for valid hits with no det (refitter with constraints)
246  if (preciseHit->det()) myTraj.push(TM(itm->forwardPredictedState(),
247  predTsos,
248  smooTsos,
249  preciseHit,
250  estimate,
251  theGeometry->idToLayer(preciseHit->geographicalId()) ),
252  estimator()->estimate(predTsos,*preciseHit).second);
253  else myTraj.push(TM(itm->forwardPredictedState(),
254  predTsos,
255  smooTsos,
256  preciseHit,
257  estimate),
258  estimator()->estimate(predTsos,*preciseHit).second);
259  //itm->estimate());
260  }
261  } else {
262  LogDebug("TrackFitters")
263  << "----------------- HIT #" << hitCounter << " (INVALID)-----------------------";
264 
265  //no update
266  currTsos = predTsos;
267  TSOS combTsos;
268  if (itm == start) combTsos = itm->forwardPredictedState();
269  else if (hitCounter == 1) combTsos = predTsos;
270  else combTsos = combiner(predTsos, itm->forwardPredictedState());
271 
272  if unlikely(!combTsos.isValid()) {
273  LogDebug("TrackFitters") <<
274  "KFTrajectorySmoother: combined tsos not valid!";
275  return Trajectory();
276  }
277  assert( (hit->det()==nullptr) || hit->geographicalId()!=0U);
278  if (hit->det())
279  myTraj.push(TM(itm->forwardPredictedState(),
280  predTsos,
281  combTsos,
282  hit,
283  0,
284  theGeometry->idToLayer(hit->geographicalId()) ));
285  else myTraj.push(TM(itm->forwardPredictedState(),
286  predTsos,
287  combTsos,
288  hit,
289  0));
290 
291  }
292  } // for loop
293 
294  if (!retry) return ret;
295  } while(true);
296 
297  return Trajectory();
298 
299 }
#define LogDebug(id)
bool empty() const
True if trajectory has no measurements.
Definition: Trajectory.h:299
tuple ret
prodAgent to be discontinued
tuple start
Check for commandline option errors.
Definition: dqm_diff.py:58
T perp() const
Definition: PV3DBase.h:72
unsigned int layer() const
layer id
Definition: TOBDetId.h:39
TrajectorySeed const & seed() const
Access to the seed used to reconstruct the Trajectory.
Definition: Trajectory.h:330
const DetLayerGeometry * theGeometry
assert(m_qm.get())
GlobalPoint globalPosition() const
virtual PropagationDirection propagationDirection() const final
Definition: Propagator.h:151
#define nullptr
unsigned int layer() const
layer id
Definition: PXBDetId.h:35
PropagationDirection const & direction() const
Definition: Trajectory.cc:125
#define unlikely(x)
DataContainer const & measurements() const
Definition: Trajectory.h:250
virtual TrajectoryStateOnSurface update(const TrajectoryStateOnSurface &, const TrackingRecHit &) const =0
static const int CSC
Definition: MuonSubdetId.h:13
std::shared_ptr< TrackingRecHit const > ConstRecHitPointer
const MeasurementEstimator * estimator() const
int j
Definition: DBlmapReader.cc:9
virtual HitReturnType estimate(const TrajectoryStateOnSurface &ts, const TrackingRecHit &hit) const =0
TrajectoryMeasurement TM
int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:37
#define LogTrace(id)
unsigned int disk() const
disk id
Definition: PXFDetId.h:43
Definition: DetId.h:18
const TrajectoryStateUpdator * updator() const
TrackingRecHit *operator()[[cms TrackingRecHit::ConstRecHitPointer makeShared(TrackingRecHit::ConstRecHitPointer const &hit, TrajectoryStateOnSurface const &tsos) const
Definition: TkCloner.h:22
TrajectoryStateOnSurface propagate(STA const &state, SUR const &surface) const
Definition: Propagator.h:53
unsigned int wheel() const
wheel id
Definition: TECDetId.h:52
unsigned int layer() const
layer id
Definition: TIBDetId.h:41
GlobalVector globalMomentum() const
static const int RPC
Definition: MuonSubdetId.h:14
const Propagator * theAlongPropagator
static const int DT
Definition: MuonSubdetId.h:12
const Propagator * theOppositePropagator
virtual const DetLayer * idToLayer(const DetId &detId) const
Detector det() const
get the detector field from this detid
Definition: DetId.h:35
TkCloner const * theHitCloner
unsigned int wheel() const
wheel id
Definition: TIDDetId.h:50
const TrajectoryStateUpdator* KFTrajectorySmoother::updator ( ) const
inline

Definition at line 83 of file KFTrajectorySmoother.h.

References theUpdator.

Referenced by trajectory().

83 {return theUpdator;}
const TrajectoryStateUpdator * theUpdator

Member Data Documentation

const DetLayerGeometry KFTrajectorySmoother::dummyGeometry
private

Definition at line 95 of file KFTrajectorySmoother.h.

Referenced by KFTrajectorySmoother().

int KFTrajectorySmoother::minHits_
private

Definition at line 102 of file KFTrajectorySmoother.h.

Referenced by clone(), and trajectory().

const Propagator* KFTrajectorySmoother::theAlongPropagator
private
float KFTrajectorySmoother::theErrorRescaling
private

Definition at line 101 of file KFTrajectorySmoother.h.

Referenced by clone(), and trajectory().

const MeasurementEstimator* KFTrajectorySmoother::theEstimator
private

Definition at line 99 of file KFTrajectorySmoother.h.

Referenced by clone(), estimator(), and ~KFTrajectorySmoother().

const DetLayerGeometry* KFTrajectorySmoother::theGeometry
private

Definition at line 103 of file KFTrajectorySmoother.h.

Referenced by clone(), KFTrajectorySmoother(), and trajectory().

TkCloner const* KFTrajectorySmoother::theHitCloner = 0
private

Definition at line 100 of file KFTrajectorySmoother.h.

Referenced by clone(), setHitCloner(), and trajectory().

const Propagator* KFTrajectorySmoother::theOppositePropagator
private
const TrajectoryStateUpdator* KFTrajectorySmoother::theUpdator
private

Definition at line 98 of file KFTrajectorySmoother.h.

Referenced by clone(), updator(), and ~KFTrajectorySmoother().