Class Reference for E1039 Core & Analysis Software
GFMeasurement.cxx
Go to the documentation of this file.
1 #include "GFMeasurement.h"
2 
3 #include <iostream>
4 #include <iomanip>
5 #include <cmath>
6 #include <TVectorD.h>
7 #include <TMatrixDSym.h>
8 #include <TVector3.h>
9 
10 #include <GenFit/KalmanFitterInfo.h>
11 #include <GenFit/MeasuredStateOnPlane.h>
12 #include <GenFit/MeasurementOnPlane.h>
13 #include <GenFit/TrackPoint.h>
14 #include <GenFit/AbsHMatrix.h>
15 
16 #include <geom_svc/GeomSvc.h>
17 
18 namespace SQGenFit
19 {
20 
21 GFMeasurement::GFMeasurement(const SignedHit& rawHit, bool en):
22  _bfHit(rawHit),
23  _proj(0.),
24  _driftSign(0),
25  _track(nullptr)
26 {
27  GeomSvc* p_geomSvc = GeomSvc::instance();
28 
29  TVectorD ep1(3), ep2(3), hitcoord(7);
30  int detID = _bfHit.hit.detectorID;
31  p_geomSvc->getEndPoints(detID, _bfHit.hit.elementID, ep1, ep2);
32  hitcoord[0] = ep1[0];
33  hitcoord[1] = ep1[1];
34  hitcoord[2] = ep1[2];
35  hitcoord[3] = ep2[0];
36  hitcoord[4] = ep2[1];
37  hitcoord[5] = ep2[2];
38  hitcoord[6] = fabs(_bfHit.hit.driftDistance);
39 
40  TMatrixDSym hitcov(7);
41  double resol = p_geomSvc->getPlaneResolution(detID);
42  hitcov.Zero();
43  hitcov(6, 6) = resol*resol;
44 
45  //Base AbsMeasurement data
46  setRawHitCoords(hitcoord);
47  setRawHitCov(hitcov);
48  setDetId(detID);
49  setHitId(_bfHit.hit.index);
50  setTrackPoint(nullptr);
51 
52  //WireMeasurement data
53  setMaxDistance(0.5*p_geomSvc->getCellWidth(detID));
54  setLeftRightResolution(0);
55 
56  //Own data
57  _z = p_geomSvc->getPlanePosition(detID);
58  _enableInFit = _bfHit.hit.index < 0 ? false : en;
59 }
60 
62  genfit::WireMeasurement(meas.rawHitCoords_, meas.rawHitCov_, meas.detId_, meas.hitId_, meas.trackPoint_),
63  _bfHit(meas._bfHit),
64  _z(meas._z),
65  _enableInFit(meas._enableInFit),
66  _proj(meas._proj),
67  _driftSign(meas._driftSign)
68 {
69  _track = nullptr;
70 
71  //WireMeasurement data
72  setMaxDistance(meas.getMaxDistance());
73  setLeftRightResolution(meas.getLeftRightResolution());
74 }
75 
77 {
78  _track = trackPtr;
79 }
80 
82 {
83  if(!_enableInFit) return; //Needs extrapolation, not implemented for now
84 
85  genfit::KalmanFitterInfo* fitinfo = getTrackPoint()->getKalmanFitterInfo();
86  const genfit::MeasuredStateOnPlane& state = fitinfo->getFittedState(false); //biased = false since residual needs unbiased measured state
87  genfit::MeasurementOnPlane* mstate = fitinfo->getClosestMeasurementOnPlane(&state);
88  const genfit::AbsHMatrix* H = mstate->getHMatrix();
89 
90  _driftSign = mstate->getState()[0] > 0 ? 1 : -1;
91  _proj = H->Hv(state.getState())[0];
92 }
93 
94 void GFMeasurement::print(unsigned int debugLvl) const
95 {
96  std::cout << " ................................................" << std::endl;
97  std::cout << "Hit " << _bfHit.hit.index << ", detID = " << _bfHit.hit.detectorID << ", eleID = " << _bfHit.hit.elementID
98  << ", pos = " << _bfHit.hit.pos << ", driftD = " << _bfHit.hit.driftDistance << ", pre-fit sign = " << _bfHit.sign
99  << ", post-fit sign = " << _driftSign << ", projection = " << _proj << ", residual = " << _proj - _driftSign*_bfHit.hit.driftDistance << std::endl;
100 
101  if(debugLvl < 1) return;
102 
103  GeomSvc* p_geomSvc = GeomSvc::instance();
104  TVector3 pos, mom;
105  double w;
106 
107  genfit::KalmanFitterInfo* fitinfo = getTrackPoint()->getKalmanFitterInfo();
108  const genfit::MeasuredStateOnPlane& fitstate = fitinfo->getFittedState(true); //this time we need the biased/smoothed result
109  fitstate.getPosMom(pos, mom);
110  w = p_geomSvc->getInterceptionFast(_bfHit.hit.detectorID, pos.X(), pos.Y());
111  printHelper(w, pos, mom, "Fitted ");
112  if(debugLvl > 10) fitstate.get6DCov().Print();
113 
114  if(debugLvl > 1 && fitinfo->hasReferenceState())
115  {
116  genfit::StateOnPlane* state = static_cast<genfit::StateOnPlane*>(fitinfo->getReferenceState());
117 
118  state->getPosMom(pos, mom);
119  w = p_geomSvc->getInterceptionFast(_bfHit.hit.detectorID, pos.X(), pos.Y());
120  printHelper(w, pos, mom, "Reference ");
121  }
122 
123  if(debugLvl > 2 && fitinfo->hasForwardPrediction())
124  {
125  genfit::MeasuredStateOnPlane* state = static_cast<genfit::MeasuredStateOnPlane*>(fitinfo->getForwardPrediction());
126 
127  state->getPosMom(pos, mom);
128  w = p_geomSvc->getInterceptionFast(_bfHit.hit.detectorID, pos.X(), pos.Y());
129  printHelper(w, pos, mom, "F-prediction ");
130  if(debugLvl > 10) state->get6DCov().Print();
131  }
132 
133  if(debugLvl > 2 && fitinfo->hasForwardUpdate())
134  {
135  genfit::MeasuredStateOnPlane* state = static_cast<genfit::MeasuredStateOnPlane*>(fitinfo->getForwardUpdate());
136 
137  state->getPosMom(pos, mom);
138  w = p_geomSvc->getInterceptionFast(_bfHit.hit.detectorID, pos.X(), pos.Y());
139  printHelper(w, pos, mom, "F-update ");
140  if(debugLvl > 10) state->get6DCov().Print();
141  }
142 
143  if(debugLvl > 3 && fitinfo->hasBackwardPrediction())
144  {
145  genfit::MeasuredStateOnPlane* state = static_cast<genfit::MeasuredStateOnPlane*>(fitinfo->getBackwardPrediction());
146 
147  state->getPosMom(pos, mom);
148  w = p_geomSvc->getInterceptionFast(_bfHit.hit.detectorID, pos.X(), pos.Y());
149  printHelper(w, pos, mom, "B-prediction ");
150  if(debugLvl > 10) state->get6DCov().Print();
151  }
152 
153  if(debugLvl > 3 && fitinfo->hasBackwardUpdate())
154  {
155  genfit::MeasuredStateOnPlane* state = static_cast<genfit::MeasuredStateOnPlane*>(fitinfo->getBackwardUpdate());
156 
157  state->getPosMom(pos, mom);
158  w = p_geomSvc->getInterceptionFast(_bfHit.hit.detectorID, pos.X(), pos.Y());
159  printHelper(w, pos, mom, "B-update ");
160  if(debugLvl > 10) state->get6DCov().Print();
161  }
162 }
163 
164 void GFMeasurement::printHelper(double w, TVector3& pos, TVector3& mom, TString name) const
165 {
166  std::cout << " -- " << name.Data() << ": ";
167  std::cout << "pos (X,Y,Z,W) = " << std::setprecision(6) << pos.X() << " " << pos.Y() << " " << pos.Z() << " " << w;
168  std::cout << " - mom(Px,Py,Pz) = " << mom.X() << " " << mom.Y() << " " << mom.Z();
169  std::cout << " - rep(tx,ty,x0,y0) = " << mom.X()/mom.Z() << " " << mom.Y()/mom.Z() << " " << pos.X()-mom.X()/mom.Z()*pos.Z();
170  std::cout << " " << pos.Y()-mom.Y()/mom.Z()*pos.Z();
171  std::cout << std::endl;
172 }
173 
174 }
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
double getPlanePosition(int detectorID) const
Definition: GeomSvc.h:235
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
void getEndPoints(int detectorID, int elementID, TVectorD &ep1, TVectorD &ep2)
Definition: GeomSvc.cxx:662
double getPlaneResolution(int detectorID) const
Definition: GeomSvc.h:245
double getInterceptionFast(int detectorID, double tx, double ty, double x0, double y0) const
Definition: GeomSvc.cxx:860
double getCellWidth(int detectorID) const
Definition: GeomSvc.h:238
Int_t index
Definition: SRawEvent.h:77
Float_t pos
Definition: SRawEvent.h:82
Short_t elementID
Definition: SRawEvent.h:79
Short_t detectorID
Definition: SRawEvent.h:78
Float_t driftDistance
Definition: SRawEvent.h:81
void setTrackPtr(GFTrack *trackPtr)
void print(unsigned int debugLvl=0) const
GFMeasurement(const SignedHit &rawHit, bool en=true)