Project
Loading...
Searching...
No Matches
TrackExtrap.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
16
17#ifndef O2_MCH_TRACKEXTRAP_H_
18#define O2_MCH_TRACKEXTRAP_H_
19
20#include <cstddef>
21
22#include <TMatrixD.h>
23
24namespace o2
25{
26namespace mch
27{
28
29class TrackParam;
30
33{
34 public:
35 // static class
36 TrackExtrap() = delete;
37 ~TrackExtrap() = delete;
38
39 TrackExtrap(const TrackExtrap&) = delete;
43
44 static void setField();
45
47 static bool isFieldON() { return sFieldON; }
48
50 static void useExtrapV2(bool extrapV2 = true) { sExtrapV2 = extrapV2; }
51
52 static double getImpactParamFromBendingMomentum(double bendingMomentum);
53 static double getBendingMomentumFromImpactParam(double impactParam);
54
55 static void linearExtrapToZ(TrackParam& trackParam, double zEnd);
56 static void linearExtrapToZCov(TrackParam& trackParam, double zEnd, bool updatePropagator = false);
57
58 static bool extrapToZ(TrackParam& trackParam, double zEnd);
59 static bool extrapToZCov(TrackParam& trackParam, double zEnd, bool updatePropagator = false);
60
61 static bool extrapToVertex(TrackParam& trackParam, double xVtx, double yVtx, double zVtx, double errXVtx, double errYVtx)
62 {
65 return extrapToVertex(trackParam, xVtx, yVtx, zVtx, errXVtx, errYVtx, true, true);
66 }
67 static bool extrapToVertexWithoutELoss(TrackParam& trackParam, double xVtx, double yVtx, double zVtx, double errXVtx, double errYVtx)
68 {
71 return extrapToVertex(trackParam, xVtx, yVtx, zVtx, errXVtx, errYVtx, true, false);
72 }
73 static bool extrapToVertexWithoutBranson(TrackParam& trackParam, double zVtx)
74 {
77 return extrapToVertex(trackParam, 0., 0., zVtx, 0., 0., false, true);
78 }
79 static bool extrapToVertexUncorrected(TrackParam& trackParam, double zVtx)
80 {
83 return extrapToVertex(trackParam, 0., 0., zVtx, 0., 0., false, false);
84 }
85
86 static bool extrapToMID(TrackParam& trackParam);
87
88 static double getMCSAngle2(const TrackParam& param, double dZ, double x0);
89 static void addMCSEffect(TrackParam& trackParam, double dZ, double x0);
90
91 static void printNCalls();
92
93 private:
94 static bool extrapToVertex(TrackParam& trackParam, double xVtx, double yVtx, double zVtx,
95 double errXVtx, double errYVtx, bool correctForMCS, bool correctForEnergyLoss);
96
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);
100
101 static void addMCSEffectInAbsorber(TrackParam& param, double signedPathLength, double f0, double f1, double f2);
102
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);
105
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);
109
110 static void cov2CovP(const TMatrixD& param, TMatrixD& cov);
111 static void covP2Cov(const TMatrixD& param, TMatrixD& covP);
112
113 static void convertTrackParamForExtrap(TrackParam& trackParam, double forwardBackward, double* v3);
114 static void recoverTrackParam(double* v3, double Charge, TrackParam& trackParam);
115
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);
119
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;
137
138 static bool sExtrapV2;
139
140 static double sSimpleBValue;
141 static bool sFieldON;
142
143 static std::size_t sNCallExtrapToZCov;
144 static std::size_t sNCallField;
145};
146
147} // namespace mch
148} // namespace o2
149
150#endif // O2_MCH_TRACKEXTRAP_H_
int16_t charge
Definition RawEventData.h:5
Class holding tools for track extrapolation.
Definition TrackExtrap.h:33
TrackExtrap(TrackExtrap &&)=delete
static void useExtrapV2(bool extrapV2=true)
Switch to Runge-Kutta extrapolation v2.
Definition TrackExtrap.h:50
static bool extrapToZ(TrackParam &trackParam, double zEnd)
static void addMCSEffect(TrackParam &trackParam, double dZ, double x0)
static bool isFieldON()
Return true if the field is switched ON.
Definition TrackExtrap.h:47
static void setField()
static bool extrapToVertexUncorrected(TrackParam &trackParam, double zVtx)
Definition TrackExtrap.h:79
static bool extrapToVertex(TrackParam &trackParam, double xVtx, double yVtx, double zVtx, double errXVtx, double errYVtx)
Definition TrackExtrap.h:61
static void linearExtrapToZ(TrackParam &trackParam, double zEnd)
static bool extrapToVertexWithoutELoss(TrackParam &trackParam, double xVtx, double yVtx, double zVtx, double errXVtx, double errYVtx)
Definition TrackExtrap.h:67
static double getMCSAngle2(const TrackParam &param, double dZ, double x0)
static bool extrapToZCov(TrackParam &trackParam, double zEnd, bool updatePropagator=false)
static double getBendingMomentumFromImpactParam(double impactParam)
static bool extrapToMID(TrackParam &trackParam)
static bool extrapToVertexWithoutBranson(TrackParam &trackParam, double zVtx)
Definition TrackExtrap.h:73
TrackExtrap & operator=(TrackExtrap &&)=delete
static double getImpactParamFromBendingMomentum(double bendingMomentum)
TrackExtrap(const TrackExtrap &)=delete
static void printNCalls()
static void linearExtrapToZCov(TrackParam &trackParam, double zEnd, bool updatePropagator=false)
TrackExtrap & operator=(const TrackExtrap &)=delete
track parameters for internal use
Definition TrackParam.h:34
GLuint GLfloat x0
Definition glcorearb.h:5034
GLfloat GLfloat GLfloat GLfloat v3
Definition glcorearb.h:814
GLenum GLfloat param
Definition glcorearb.h:271
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...