CMS 3D CMS Logo

TrackingRecHitPropagator.h
Go to the documentation of this file.
1 #ifndef TrackingTools_TrackingRecHitPropagator_h
2 #define TrackingTools_TrackingRecHitPropagator_h
3 
8 
15 
16 /* propagates the RecHit position from the original reference frame
17  to the reference frame of another detector.
18  Useful for algorithms like the DAF or the MTF
19 */
20 
22 public:
25  };
26 
28 
29  template <class ResultingHit>
31  const GeomDet& det,
32  const TrajectoryStateOnSurface ts,
33  const TransientTrackingRecHitBuilder* builder) const {
34  TkClonerImpl hc = static_cast<TkTransientTrackingRecHitBuilder const*>(builder)->cloner();
35 
36  //1) propagate the best possible track parameters to the surface of the hit you want to "move" using a AnalyticalPropagator ;
37  //2) create LocalTrajectoryParameters with the local x,y of the hit and direction + momentum from the propagated track parameters;
38  //3) create a LocalTrajectoryError matrix which is 0 except for the local x,y submatrix, which is filled with the hit errors;
39  //4) create a TSOS from the result of 2) and 3) and propagate it to the reference surface;
40  //5) create a new hit with the local x,y subspace of the result of 4)
41  if (!ts.isValid())
42  return std::make_shared<InvalidTrackingRecHit>(*hit->det(), TrackingRecHit::missing);
43  // LogTrace("SiTrackerMultiRecHitUpdator") << "the tsos is valid";
44  //check if the ts lays or not on the destination surface and in case propagate it
45  TrajectoryStateOnSurface propagated = ts;
46  if (hit->surface() != &(ts.surface()))
47  propagated = thePropagator->propagate(ts, *(hit->surface()));
48  if (!propagated.isValid())
49  return std::make_shared<InvalidTrackingRecHit>(*hit->det(), TrackingRecHit::missing);
50  // LogTrace("SiTrackerMultiRecHitUpdator") << "the propagate tsos is valid";
51  // LogTrace("SiTrackerMultiRecHitUpdator") << "Original: position: "<<hit->parameters()<<" error: "<<hit->parametersError()<<std::endl;
52  //clone the original hit with this state
53  TrackingRecHit::RecHitPointer updatedOriginal = hc.makeShared(hit, propagated);
54  // LogTrace("SiTrackerMultiRecHitUpdator") << "New: position: "<<updatedOriginal->parameters()<<" error: "<<updatedOriginal->parametersError()<<std::endl;
55 
56  // LogTrace("SiTrackerMultiRecHitUpdator") << "rechit cloned";
57  LocalTrajectoryParameters ltp(updatedOriginal->localPosition(), propagated.localMomentum(), propagated.charge());
59  ltem(3, 3) = (updatedOriginal->parametersError())(1, 1);
60  ltem(4, 4) = (updatedOriginal->parametersError())(2, 2);
61  ltem(3, 4) = (updatedOriginal->parametersError())(1, 2);
62  // LogTrace("SiTrackerMultiRecHitUpdator") <<"The cov matrix: "<<ltem<<std::endl;
63  LocalTrajectoryError lte(ltem);
64  // LogTrace("SiTrackerMultiRecHitUpdator") <<"Original cov matrix: "<<lte.matrix()<<std::endl;
65  TrajectoryStateOnSurface hit_state(ltp, lte, propagated.surface(), propagated.magneticField());
66  TrajectoryStateOnSurface projected_hit_state = thePropagator->propagate(hit_state, det.surface());
67  if (!projected_hit_state.isValid())
68  return std::make_shared<InvalidTrackingRecHit>(*hit->det(), TrackingRecHit::missing);
69  LocalPoint p = projected_hit_state.localPosition();
70  LocalError e = projected_hit_state.localError().positionError();
71  // LogTrace("SiTrackerMultiRecHitUpdator") << "position: "<<p<<" error: "<<e<<std::endl;
72  //AlgebraicSymMatrix55 projm=projected_hit_state.localError().matrix();
73  // for(int i=0;i<5;i++){
74  // LogTrace("SiTrackerMultiRecHitUpdator") <<"cov matrix: "<<projm<<std::endl;
75  // }
76  return ResultingHit::build(p, e, &det, updatedOriginal->det(), updatedOriginal, this);
77  }
78 
79 private:
81 };
82 
83 #endif
TrajectoryStateOnSurface propagate(STA const &state, SUR const &surface) const
Definition: Propagator.h:50
TrackingRecHit::ConstRecHitPointer makeShared(SiPixelRecHit const &hit, TrajectoryStateOnSurface const &tsos) const override
Definition: TkClonerImpl.cc:64
const SurfaceType & surface() const
TrackingRecHit::RecHitPointer project(const TrackingRecHit::ConstRecHitPointer hit, const GeomDet &det, const TrajectoryStateOnSurface ts, const TransientTrackingRecHitBuilder *builder) const
std::shared_ptr< TrackingRecHit const > ConstRecHitPointer
std::shared_ptr< TrackingRecHit const > RecHitPointer
const Plane & surface() const
The nominal surface of the GeomDet.
Definition: GeomDet.h:37
ROOT::Math::SMatrix< double, 5, 5, ROOT::Math::MatRepSym< double, 5 > > AlgebraicSymMatrix55
const MagneticField * magneticField() const
const AnalyticalPropagator * thePropagator
TrackingRecHitPropagator(const MagneticField *magf)