7 #include <TMatrixDSym.h>
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>
29 TVectorD ep1(3), ep2(3), hitcoord(7);
40 TMatrixDSym hitcov(7);
43 hitcov(6, 6) = resol*resol;
46 setRawHitCoords(hitcoord);
50 setTrackPoint(
nullptr);
54 setLeftRightResolution(0);
58 _enableInFit = _bfHit.
hit.
index < 0 ? false : en;
62 genfit::WireMeasurement(meas.rawHitCoords_, meas.rawHitCov_, meas.detId_, meas.hitId_, meas.trackPoint_),
65 _enableInFit(meas._enableInFit),
67 _driftSign(meas._driftSign)
72 setMaxDistance(meas.getMaxDistance());
73 setLeftRightResolution(meas.getLeftRightResolution());
83 if(!_enableInFit)
return;
85 genfit::KalmanFitterInfo* fitinfo = getTrackPoint()->getKalmanFitterInfo();
86 const genfit::MeasuredStateOnPlane& state = fitinfo->getFittedState(
false);
87 genfit::MeasurementOnPlane* mstate = fitinfo->getClosestMeasurementOnPlane(&state);
88 const genfit::AbsHMatrix* H = mstate->getHMatrix();
90 _driftSign = mstate->getState()[0] > 0 ? 1 : -1;
91 _proj = H->Hv(state.getState())[0];
96 std::cout <<
" ................................................" << std::endl;
99 <<
", post-fit sign = " << _driftSign <<
", projection = " << _proj <<
", residual = " << _proj - _driftSign*_bfHit.
hit.
driftDistance << std::endl;
101 if(debugLvl < 1)
return;
107 genfit::KalmanFitterInfo* fitinfo = getTrackPoint()->getKalmanFitterInfo();
108 const genfit::MeasuredStateOnPlane& fitstate = fitinfo->getFittedState(
true);
109 fitstate.getPosMom(pos, mom);
111 printHelper(w, pos, mom,
"Fitted ");
112 if(debugLvl > 10) fitstate.get6DCov().Print();
114 if(debugLvl > 1 && fitinfo->hasReferenceState())
116 genfit::StateOnPlane* state =
static_cast<genfit::StateOnPlane*
>(fitinfo->getReferenceState());
118 state->getPosMom(pos, mom);
120 printHelper(w, pos, mom,
"Reference ");
123 if(debugLvl > 2 && fitinfo->hasForwardPrediction())
125 genfit::MeasuredStateOnPlane* state =
static_cast<genfit::MeasuredStateOnPlane*
>(fitinfo->getForwardPrediction());
127 state->getPosMom(pos, mom);
129 printHelper(w, pos, mom,
"F-prediction ");
130 if(debugLvl > 10) state->get6DCov().Print();
133 if(debugLvl > 2 && fitinfo->hasForwardUpdate())
135 genfit::MeasuredStateOnPlane* state =
static_cast<genfit::MeasuredStateOnPlane*
>(fitinfo->getForwardUpdate());
137 state->getPosMom(pos, mom);
139 printHelper(w, pos, mom,
"F-update ");
140 if(debugLvl > 10) state->get6DCov().Print();
143 if(debugLvl > 3 && fitinfo->hasBackwardPrediction())
145 genfit::MeasuredStateOnPlane* state =
static_cast<genfit::MeasuredStateOnPlane*
>(fitinfo->getBackwardPrediction());
147 state->getPosMom(pos, mom);
149 printHelper(w, pos, mom,
"B-prediction ");
150 if(debugLvl > 10) state->get6DCov().Print();
153 if(debugLvl > 3 && fitinfo->hasBackwardUpdate())
155 genfit::MeasuredStateOnPlane* state =
static_cast<genfit::MeasuredStateOnPlane*
>(fitinfo->getBackwardUpdate());
157 state->getPosMom(pos, mom);
159 printHelper(w, pos, mom,
"B-update ");
160 if(debugLvl > 10) state->get6DCov().Print();
164 void GFMeasurement::printHelper(
double w, TVector3& pos, TVector3& mom, TString name)
const
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;
User interface class about the geometry of detector planes.
double getPlanePosition(int detectorID) const
static GeomSvc * instance()
singlton instance
void getEndPoints(int detectorID, int elementID, TVectorD &ep1, TVectorD &ep2)
double getPlaneResolution(int detectorID) const
double getInterceptionFast(int detectorID, double tx, double ty, double x0, double y0) const
double getCellWidth(int detectorID) const
void setTrackPtr(GFTrack *trackPtr)
void print(unsigned int debugLvl=0) const
GFMeasurement(const SignedHit &rawHit, bool en=true)