50 static void useExtrapV2(
bool extrapV2 =
true) { sExtrapV2 = extrapV2; }
65 return extrapToVertex(trackParam, xVtx, yVtx, zVtx, errXVtx, errYVtx,
true,
true);
71 return extrapToVertex(trackParam, xVtx, yVtx, zVtx, errXVtx, errYVtx,
true,
false);
77 return extrapToVertex(trackParam, 0., 0., zVtx, 0., 0.,
false,
true);
83 return extrapToVertex(trackParam, 0., 0., zVtx, 0., 0.,
false,
false);
95 double errXVtx,
double errYVtx,
bool correctForMCS,
bool correctForEnergyLoss);
97 static bool getAbsorberCorrectionParam(
double trackXYZIn[3],
double trackXYZOut[3],
double pTotal,
98 double& pathLength,
double& f0,
double& f1,
double& f2,
99 double& meanRho,
double& totalELoss,
double& sigmaELoss2);
101 static void addMCSEffectInAbsorber(
TrackParam&
param,
double signedPathLength,
double f0,
double f1,
double f2);
103 static double betheBloch(
double pTotal,
double pathLength,
double rho,
double atomicZ,
double atomicZoverA);
104 static double energyLossFluctuation(
double pTotal,
double pathLength,
double rho,
double atomicZoverA);
106 static bool correctMCSEffectInAbsorber(
TrackParam&
param,
double xVtx,
double yVtx,
double zVtx,
double errXVtx,
double errYVtx,
107 double absZBeg,
double pathLength,
double f0,
double f1,
double f2);
108 static void correctELossEffectInAbsorber(
TrackParam&
param,
double eLoss,
double sigmaELoss2);
110 static void cov2CovP(
const TMatrixD&
param, TMatrixD& cov);
111 static void covP2Cov(
const TMatrixD&
param, TMatrixD& covP);
113 static void convertTrackParamForExtrap(
TrackParam& trackParam,
double forwardBackward,
double*
v3);
114 static void recoverTrackParam(
double*
v3,
double Charge,
TrackParam& trackParam);
116 static bool extrapToZRungekutta(
TrackParam& trackParam,
double zEnd);
117 static bool extrapToZRungekuttaV2(
TrackParam& trackParam,
double zEnd);
118 static bool extrapOneStepRungekutta(
double charge,
double step,
const double* vect,
double* vout);
120 static constexpr double SMuMass = 0.105658;
121 static constexpr double SAbsZBeg = -90.;
122 static constexpr double SAbsZEnd = -505.;
123 static constexpr double SSimpleBPosition = -0.5 * (994.05 + 986.6);
124 static constexpr double SSimpleBLength = 0.5 * (502.1 + 309.4);
125 static constexpr int SMaxStepNumber = 5000;
126 static constexpr double SRungeKuttaMaxResidue = 0.002;
127 static constexpr double SRungeKuttaMaxResidueV2 = 0.01;
130 static constexpr double SMostProbBendingMomentum = 2.;
131 static constexpr double SMuonFilterZBeg = -1471.;
132 static constexpr double SMuonFilterThickness = 120.;
134 static constexpr double SMuonFilterZEnd = SMuonFilterZBeg - SMuonFilterThickness;
135 static constexpr double SMuonFilterX0 = 1.76;
136 static constexpr double SMIDZ = -1603.5;
138 static bool sExtrapV2;
140 static double sSimpleBValue;
141 static bool sFieldON;
143 static std::size_t sNCallExtrapToZCov;
144 static std::size_t sNCallField;