]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONTrackExtrap.cxx
- Added the possibility to disable the Branson and/or energy loss correction(s) in...
[u/mrichter/AliRoot.git] / MUON / AliMUONTrackExtrap.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *                                                                        *
4  * Author: The ALICE Off-line Project.                                    *
5  * Contributors are mentioned in the code where appropriate.              *
6  *                                                                        *
7  * Permission to use, copy, modify and distribute this software and its   *
8  * documentation strictly for non-commercial purposes is hereby granted   *
9  * without fee, provided that the above copyright notice appears in all   *
10  * copies and that both the copyright notice and this permission notice   *
11  * appear in the supporting documentation. The authors make no claims     *
12  * about the suitability of this software for any purpose. It is          *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 /* $Id$ */
17
18 ///////////////////////////////////////////////////
19 //
20 // Tools
21 // for
22 // track
23 // extrapolation
24 // in
25 // ALICE
26 // dimuon
27 // spectrometer
28 //
29 ///////////////////////////////////////////////////
30
31 #include "AliMUONTrackExtrap.h" 
32 #include "AliMUONTrackParam.h"
33 #include "AliMUONConstants.h"
34
35 #include "AliMagF.h" 
36
37 #include <Riostream.h>
38 #include <TMath.h>
39 #include <TMatrixD.h>
40 #include <TGeoManager.h>
41
42 /// \cond CLASSIMP
43 ClassImp(AliMUONTrackExtrap) // Class implementation in ROOT context
44 /// \endcond
45
46 const AliMagF* AliMUONTrackExtrap::fgkField = 0x0;
47 const Bool_t   AliMUONTrackExtrap::fgkUseHelix = kFALSE;
48 const Int_t    AliMUONTrackExtrap::fgkMaxStepNumber = 5000;
49 const Double_t AliMUONTrackExtrap::fgkHelixStepLength = 6.;
50 const Double_t AliMUONTrackExtrap::fgkRungeKuttaMaxResidue = 0.002;
51
52   //__________________________________________________________________________
53 Double_t AliMUONTrackExtrap::GetImpactParamFromBendingMomentum(Double_t bendingMomentum)
54 {
55   /// Returns impact parameter at vertex in bending plane (cm),
56   /// from the signed bending momentum "BendingMomentum" in bending plane (GeV/c),
57   /// using simple values for dipole magnetic field.
58   /// The sign of "BendingMomentum" is the sign of the charge.
59   
60   if (bendingMomentum == 0.) return 1.e10;
61   
62   Double_t simpleBPosition = 0.5 * (AliMUONConstants::CoilZ() + AliMUONConstants::YokeZ());
63   Double_t simpleBLength = 0.5 * (AliMUONConstants::CoilL() + AliMUONConstants::YokeL());
64   Float_t b[3], x[3] = {0.,0.,(Float_t) simpleBPosition};
65   if (fgkField) fgkField->Field(x,b);
66   else {
67     cout<<"F-AliMUONTrackExtrap::GetField: fgkField = 0x0"<<endl;
68     exit(-1);
69   }
70   Double_t simpleBValue = (Double_t) b[0];
71   
72   return (-0.0003 * simpleBValue * simpleBLength * simpleBPosition / bendingMomentum);
73 }
74
75   //__________________________________________________________________________
76 Double_t AliMUONTrackExtrap::GetBendingMomentumFromImpactParam(Double_t impactParam)
77 {
78   /// Returns signed bending momentum in bending plane (GeV/c),
79   /// the sign being the sign of the charge for particles moving forward in Z,
80   /// from the impact parameter "ImpactParam" at vertex in bending plane (cm),
81   /// using simple values for dipole magnetic field.
82   
83   if (impactParam == 0.) return 1.e10;
84   
85   Double_t simpleBPosition = 0.5 * (AliMUONConstants::CoilZ() + AliMUONConstants::YokeZ());
86   Double_t simpleBLength = 0.5 * (AliMUONConstants::CoilL() + AliMUONConstants::YokeL());
87   Float_t b[3], x[3] = {0.,0.,(Float_t) simpleBPosition};
88   if (fgkField) fgkField->Field(x,b);
89   else {
90     cout<<"F-AliMUONTrackExtrap::GetField: fgkField = 0x0"<<endl;
91     exit(-1);
92   }
93   Double_t simpleBValue = (Double_t) b[0];
94   
95   return (-0.0003 * simpleBValue * simpleBLength * simpleBPosition / impactParam);
96 }
97
98   //__________________________________________________________________________
99 void AliMUONTrackExtrap::ExtrapToZ(AliMUONTrackParam* trackParam, Double_t zEnd)
100 {
101   /// Interface to track parameter extrapolation to the plane at "Z" using Helix or Rungekutta algorithm.
102   /// On return, the track parameters resulting from the extrapolation are updated in trackParam.
103   if (fgkUseHelix) AliMUONTrackExtrap::ExtrapToZHelix(trackParam,zEnd);
104   else AliMUONTrackExtrap::ExtrapToZRungekutta(trackParam,zEnd);
105 }
106
107   //__________________________________________________________________________
108 void AliMUONTrackExtrap::ExtrapToZHelix(AliMUONTrackParam* trackParam, Double_t zEnd)
109 {
110   /// Track parameter extrapolation to the plane at "Z" using Helix algorithm.
111   /// On return, the track parameters resulting from the extrapolation are updated in trackParam.
112   if (trackParam->GetZ() == zEnd) return; // nothing to be done if same Z
113   Double_t forwardBackward; // +1 if forward, -1 if backward
114   if (zEnd < trackParam->GetZ()) forwardBackward = 1.0; // spectro. z<0 
115   else forwardBackward = -1.0;
116   Double_t v3[7], v3New[7]; // 7 in parameter ????
117   Int_t i3, stepNumber;
118   // For safety: return kTRUE or kFALSE ????
119   // Parameter vector for calling EXTRAP_ONESTEP
120   ConvertTrackParamForExtrap(trackParam, forwardBackward, v3);
121   // sign of charge (sign of fInverseBendingMomentum if forward motion)
122   // must be changed if backward extrapolation
123   Double_t chargeExtrap = forwardBackward * TMath::Sign(Double_t(1.0), trackParam->GetInverseBendingMomentum());
124   // Extrapolation loop
125   stepNumber = 0;
126   while (((-forwardBackward * (v3[2] - zEnd)) <= 0.0) && (stepNumber < fgkMaxStepNumber)) { // spectro. z<0
127     stepNumber++;
128     ExtrapOneStepHelix(chargeExtrap, fgkHelixStepLength, v3, v3New);
129     if ((-forwardBackward * (v3New[2] - zEnd)) > 0.0) break; // one is beyond Z spectro. z<0
130     // better use TArray ????
131     for (i3 = 0; i3 < 7; i3++) {v3[i3] = v3New[i3];}
132   }
133   // check fgkMaxStepNumber ????
134   // Interpolation back to exact Z (2nd order)
135   // should be in function ???? using TArray ????
136   Double_t dZ12 = v3New[2] - v3[2]; // 1->2
137   if (TMath::Abs(dZ12) > 0) {
138     Double_t dZ1i = zEnd - v3[2]; // 1-i
139     Double_t dZi2 = v3New[2] - zEnd; // i->2
140     Double_t xPrime = (v3New[0] - v3[0]) / dZ12;
141     Double_t xSecond = ((v3New[3] / v3New[5]) - (v3[3] / v3[5])) / dZ12;
142     Double_t yPrime = (v3New[1] - v3[1]) / dZ12;
143     Double_t ySecond = ((v3New[4] / v3New[5]) - (v3[4] / v3[5])) / dZ12;
144     v3[0] = v3[0] + xPrime * dZ1i - 0.5 * xSecond * dZ1i * dZi2; // X
145     v3[1] = v3[1] + yPrime * dZ1i - 0.5 * ySecond * dZ1i * dZi2; // Y
146     v3[2] = zEnd; // Z
147     Double_t xPrimeI = xPrime - 0.5 * xSecond * (dZi2 - dZ1i);
148     Double_t yPrimeI = yPrime - 0.5 * ySecond * (dZi2 - dZ1i);
149     // (PX, PY, PZ)/PTOT assuming forward motion
150     v3[5] = 1.0 / TMath::Sqrt(1.0 + xPrimeI * xPrimeI + yPrimeI * yPrimeI); // PZ/PTOT
151     v3[3] = xPrimeI * v3[5]; // PX/PTOT
152     v3[4] = yPrimeI * v3[5]; // PY/PTOT
153   } else {
154     cout<<"W-AliMUONTrackExtrap::ExtrapToZHelix: Extrap. to Z not reached, Z = "<<zEnd<<endl;
155   }
156   // Recover track parameters (charge back for forward motion)
157   RecoverTrackParam(v3, chargeExtrap * forwardBackward, trackParam);
158 }
159
160   //__________________________________________________________________________
161 void AliMUONTrackExtrap::ExtrapToZRungekutta(AliMUONTrackParam* trackParam, Double_t zEnd)
162 {
163   /// Track parameter extrapolation to the plane at "Z" using Rungekutta algorithm.
164   /// On return, the track parameters resulting from the extrapolation are updated in trackParam.
165   if (trackParam->GetZ() == zEnd) return; // nothing to be done if same Z
166   Double_t forwardBackward; // +1 if forward, -1 if backward
167   if (zEnd < trackParam->GetZ()) forwardBackward = 1.0; // spectro. z<0 
168   else forwardBackward = -1.0;
169   // sign of charge (sign of fInverseBendingMomentum if forward motion)
170   // must be changed if backward extrapolation
171   Double_t chargeExtrap = forwardBackward * TMath::Sign(Double_t(1.0), trackParam->GetInverseBendingMomentum());
172   Double_t v3[7], v3New[7];
173   Double_t dZ, step;
174   Int_t stepNumber = 0;
175   
176   // Extrapolation loop (until within tolerance)
177   Double_t residue = zEnd - trackParam->GetZ();
178   while (TMath::Abs(residue) > fgkRungeKuttaMaxResidue && stepNumber <= fgkMaxStepNumber) {
179     dZ = zEnd - trackParam->GetZ();
180     // step lenght assuming linear trajectory
181     step = dZ * TMath::Sqrt(1.0 + trackParam->GetBendingSlope()*trackParam->GetBendingSlope() +
182                             trackParam->GetNonBendingSlope()*trackParam->GetNonBendingSlope());
183     ConvertTrackParamForExtrap(trackParam, forwardBackward, v3);
184     do { // reduce step lenght while zEnd oversteped
185       if (stepNumber > fgkMaxStepNumber) {
186         cout<<"W-AliMUONTrackExtrap::ExtrapToZRungekutta: Too many trials: "<<stepNumber<<endl;
187         break;
188       }
189       stepNumber ++;
190       step = TMath::Abs(step);
191       AliMUONTrackExtrap::ExtrapOneStepRungekutta(chargeExtrap,step,v3,v3New);
192       residue = zEnd - v3New[2];
193       step *= dZ/(v3New[2]-trackParam->GetZ());
194     } while (residue*dZ < 0 && TMath::Abs(residue) > fgkRungeKuttaMaxResidue);
195     RecoverTrackParam(v3New, chargeExtrap * forwardBackward, trackParam);
196   }
197   
198   // terminate the extropolation with a straight line up to the exact "zEnd" value
199   trackParam->SetNonBendingCoor(trackParam->GetNonBendingCoor() + residue * trackParam->GetNonBendingSlope());
200   trackParam->SetBendingCoor(trackParam->GetBendingCoor() + residue * trackParam->GetBendingSlope());
201   trackParam->SetZ(zEnd);
202 }
203
204   //__________________________________________________________________________
205 void AliMUONTrackExtrap::ConvertTrackParamForExtrap(AliMUONTrackParam* trackParam, Double_t forwardBackward, Double_t *v3)
206 {
207   /// Set vector of Geant3 parameters pointed to by "v3" from track parameters in trackParam.
208   /// Since AliMUONTrackParam is only geometry, one uses "forwardBackward"
209   /// to know whether the particle is going forward (+1) or backward (-1).
210   v3[0] = trackParam->GetNonBendingCoor(); // X
211   v3[1] = trackParam->GetBendingCoor(); // Y
212   v3[2] = trackParam->GetZ(); // Z
213   Double_t pYZ = TMath::Abs(1.0 / trackParam->GetInverseBendingMomentum());
214   Double_t pZ = pYZ / TMath::Sqrt(1.0 + trackParam->GetBendingSlope() * trackParam->GetBendingSlope());
215   v3[6] = TMath::Sqrt(pYZ * pYZ + pZ * pZ * trackParam->GetNonBendingSlope() * trackParam->GetNonBendingSlope()); // PTOT
216   v3[5] = -forwardBackward * pZ / v3[6]; // PZ/PTOT spectro. z<0
217   v3[3] = trackParam->GetNonBendingSlope() * v3[5]; // PX/PTOT
218   v3[4] = trackParam->GetBendingSlope() * v3[5]; // PY/PTOT
219 }
220
221   //__________________________________________________________________________
222 void AliMUONTrackExtrap::RecoverTrackParam(Double_t *v3, Double_t charge, AliMUONTrackParam* trackParam)
223 {
224   /// Set track parameters in trackParam from Geant3 parameters pointed to by "v3",
225   /// assumed to be calculated for forward motion in Z.
226   /// "InverseBendingMomentum" is signed with "charge".
227   trackParam->SetNonBendingCoor(v3[0]); // X
228   trackParam->SetBendingCoor(v3[1]); // Y
229   trackParam->SetZ(v3[2]); // Z
230   Double_t pYZ = v3[6] * TMath::Sqrt(1.0 - v3[3] * v3[3]);
231   trackParam->SetInverseBendingMomentum(charge/pYZ);
232   trackParam->SetBendingSlope(v3[4]/v3[5]);
233   trackParam->SetNonBendingSlope(v3[3]/v3[5]);
234 }
235
236   //__________________________________________________________________________
237 void AliMUONTrackExtrap::ExtrapToZCov(AliMUONTrackParam* trackParam, Double_t zEnd)
238 {
239   /// Track parameters and their covariances extrapolated to the plane at "zEnd".
240   /// On return, results from the extrapolation are updated in trackParam.
241   
242   if (trackParam->GetZ() == zEnd) return; // nothing to be done if same z
243   
244   // Save the actual track parameters
245   AliMUONTrackParam trackParamSave(*trackParam);
246   Double_t nonBendingCoor         = trackParamSave.GetNonBendingCoor();
247   Double_t nonBendingSlope        = trackParamSave.GetNonBendingSlope();
248   Double_t bendingCoor            = trackParamSave.GetBendingCoor();
249   Double_t bendingSlope           = trackParamSave.GetBendingSlope();
250   Double_t inverseBendingMomentum = trackParamSave.GetInverseBendingMomentum();
251   Double_t zBegin                 = trackParamSave.GetZ();
252   
253   // Extrapolate track parameters to "zEnd"
254   ExtrapToZ(trackParam,zEnd);
255   Double_t extrapNonBendingCoor         = trackParam->GetNonBendingCoor();
256   Double_t extrapNonBendingSlope        = trackParam->GetNonBendingSlope();
257   Double_t extrapBendingCoor            = trackParam->GetBendingCoor();
258   Double_t extrapBendingSlope           = trackParam->GetBendingSlope();
259   Double_t extrapInverseBendingMomentum = trackParam->GetInverseBendingMomentum();
260   
261   // Get the pointer to the parameter covariance matrix
262   if (!trackParam->CovariancesExist()) {
263     //cout<<"W-AliMUONTrackExtrap::ExtrapToZCov: track parameter covariance matrix does not exist"<<endl;
264     //cout<<"                                    -> nothing to extrapolate !!"<<endl;
265     return;
266   }
267   TMatrixD* paramCov = trackParam->GetCovariances();
268   
269   // Calculate the jacobian related to the track parameters extrapolation to "zEnd"
270   TMatrixD jacob(5,5);
271   jacob = 0.;
272   Double_t dParam[5];
273   for (Int_t i=0; i<5; i++) {
274     // Skip jacobian calculation for parameters with no associated error
275     if ((*paramCov)(i,i) == 0.) continue;
276     // Small variation of parameter i only
277     for (Int_t j=0; j<5; j++) {
278       if (j==i) {
279         dParam[j] = TMath::Sqrt((*paramCov)(i,i));
280         if (j == 4) dParam[j] *= TMath::Sign(1.,-inverseBendingMomentum); // variation always in the same direction
281       } else dParam[j] = 0.;
282     }
283     // Set new parameters
284     trackParamSave.SetNonBendingCoor        (nonBendingCoor         + dParam[0]);
285     trackParamSave.SetNonBendingSlope       (nonBendingSlope        + dParam[1]);
286     trackParamSave.SetBendingCoor           (bendingCoor            + dParam[2]);
287     trackParamSave.SetBendingSlope          (bendingSlope           + dParam[3]);
288     trackParamSave.SetInverseBendingMomentum(inverseBendingMomentum + dParam[4]);
289     trackParamSave.SetZ                     (zBegin);
290     // Extrapolate new track parameters to "zEnd"
291     ExtrapToZ(&trackParamSave,zEnd);
292     // Calculate the jacobian
293     jacob(0,i) = (trackParamSave.GetNonBendingCoor()         - extrapNonBendingCoor        ) / dParam[i];
294     jacob(1,i) = (trackParamSave.GetNonBendingSlope()        - extrapNonBendingSlope       ) / dParam[i];
295     jacob(2,i) = (trackParamSave.GetBendingCoor()            - extrapBendingCoor           ) / dParam[i];
296     jacob(3,i) = (trackParamSave.GetBendingSlope()           - extrapBendingSlope          ) / dParam[i];
297     jacob(4,i) = (trackParamSave.GetInverseBendingMomentum() - extrapInverseBendingMomentum) / dParam[i];
298   }
299   
300   // Extrapolate track parameter covariances to "zEnd"
301   TMatrixD tmp((*paramCov),TMatrixD::kMultTranspose,jacob);
302   (*paramCov) = TMatrixD(jacob,TMatrixD::kMult,tmp);
303   
304 }
305
306   //__________________________________________________________________________
307 void AliMUONTrackExtrap::ExtrapToStation(AliMUONTrackParam* trackParamIn, Int_t station, AliMUONTrackParam *trackParamOut)
308 {
309   /// Track parameters extrapolated from "trackParamIn" to both chambers of the station(0..) "station"
310   /// are returned in the array (dimension 2) of track parameters pointed to by "TrackParamOut"
311   /// (index 0 and 1 for first and second chambers).
312   Double_t extZ[2], z1, z2;
313   Int_t i1 = -1, i2 = -1; // = -1 to avoid compilation warnings
314   // range of station to be checked ????
315   z1 = AliMUONConstants::DefaultChamberZ(2 * station);
316   z2 = AliMUONConstants::DefaultChamberZ(2 * station + 1);
317   // First and second Z to extrapolate at
318   if ((z1 > trackParamIn->GetZ()) && (z2 > trackParamIn->GetZ())) {i1 = 0; i2 = 1;}
319   else if ((z1 < trackParamIn->GetZ()) && (z2 < trackParamIn->GetZ())) {i1 = 1; i2 = 0;}
320   else {
321     cout<<"E-AliMUONTrackExtrap::ExtrapToStation: Starting Z ("<<trackParamIn->GetZ()
322         <<") in between z1 ("<<z1<<") and z2 ("<<z2<<") of station(0..)"<<station<<endl;
323     exit(-1);
324   }
325   extZ[i1] = z1;
326   extZ[i2] = z2;
327   // copy of track parameters
328   trackParamOut[i1] = *trackParamIn;
329   // first extrapolation
330   ExtrapToZ(&(trackParamOut[i1]),extZ[0]);
331   trackParamOut[i2] = trackParamOut[i1];
332   // second extrapolation
333   ExtrapToZ(&(trackParamOut[i2]),extZ[1]);
334   return;
335 }
336
337   //__________________________________________________________________________
338 void AliMUONTrackExtrap::ExtrapToVertexUncorrected(AliMUONTrackParam* trackParam, Double_t zVtx)
339 {
340   /// Extrapolation to the vertex (at the z position "zVtx") without Branson and energy loss corrections.
341   /// Returns the track parameters resulting from the extrapolation in the current TrackParam.
342   /// Include multiple Coulomb scattering effects in trackParam covariances.
343   
344   if (trackParam->GetZ() == zVtx) return; // nothing to be done if already at vertex
345   
346   if (trackParam->GetZ() > zVtx) { // spectro. (z<0)
347     cout<<"W-AliMUONTrackExtrap::ExtrapToVertexUncorrected: Starting Z ("<<trackParam->GetZ()
348         <<") upstream the vertex (zVtx = "<<zVtx<<")"<<endl;
349     exit(-1);
350   }
351   
352   // Check whether the geometry is available and get absorber boundaries
353   if (!gGeoManager) {
354     cout<<"E-AliMUONTrackExtrap::ExtrapToVertexUncorrected: no TGeo"<<endl;
355     return;
356   }
357   TGeoNode *absNode = gGeoManager->GetVolume("ALIC")->GetNode("ABSM_1");
358   if (!absNode) {
359     cout<<"E-AliMUONTrackExtrap::ExtrapToVertexUncorrected: failed to get absorber node"<<endl;
360     return;
361   }
362   Double_t zAbsBeg, zAbsEnd;
363   absNode->GetVolume()->GetShape()->GetAxisRange(3,zAbsBeg,zAbsEnd);
364   const Double_t *absPos = absNode->GetMatrix()->GetTranslation();
365   zAbsBeg = absPos[2] - zAbsBeg; // spectro. (z<0)
366   zAbsEnd = absPos[2] - zAbsEnd; // spectro. (z<0)
367   
368   // Check the vertex position relatively to the absorber
369   if (zVtx < zAbsBeg && zVtx > zAbsEnd) { // spectro. (z<0)
370     cout<<"W-AliMUONTrackExtrap::ExtrapToVertex: Ending Z ("<<zVtx
371         <<") inside the front absorber ("<<zAbsBeg<<","<<zAbsEnd<<")"<<endl;
372   } else if (zVtx < zAbsEnd ) { // spectro. (z<0)
373     cout<<"W-AliMUONTrackExtrap::ExtrapToVertex: Ending Z ("<<zVtx
374         <<") downstream the front absorber (zAbsorberEnd = "<<zAbsEnd<<")"<<endl;
375     ExtrapToZCov(trackParam,zVtx);
376     return;
377   }
378   
379   // Check the track position relatively to the absorber and extrapolate track parameters to the end of the absorber if needed
380   if (trackParam->GetZ() > zAbsBeg) { // spectro. (z<0)
381     cout<<"W-AliMUONTrackExtrap::ExtrapToVertex: Starting Z ("<<trackParam->GetZ()
382         <<") upstream the front absorber (zAbsorberBegin = "<<zAbsBeg<<")"<<endl;
383     ExtrapToZCov(trackParam,zVtx);
384     return;
385   } else if (trackParam->GetZ() > zAbsEnd) { // spectro. (z<0)
386     cout<<"W-AliMUONTrackExtrap::ExtrapToVertex: Starting Z ("<<trackParam->GetZ()
387         <<") inside the front absorber ("<<zAbsBeg<<","<<zAbsEnd<<")"<<endl;
388   } else {
389     ExtrapToZCov(trackParam,zAbsEnd);
390   }
391   
392   // Then add MCS effect in absorber to the parameters covariances
393   AliMUONTrackParam trackParamIn(*trackParam);
394   ExtrapToZ(&trackParamIn, TMath::Min(zVtx, zAbsBeg));
395   Double_t trackXYZIn[3];
396   trackXYZIn[0] = trackParamIn.GetNonBendingCoor();
397   trackXYZIn[1] = trackParamIn.GetBendingCoor();
398   trackXYZIn[2] = trackParamIn.GetZ();
399   Double_t trackXYZOut[3];
400   trackXYZOut[0] = trackParam->GetNonBendingCoor();
401   trackXYZOut[1] = trackParam->GetBendingCoor();
402   trackXYZOut[2] = trackParam->GetZ();
403   Double_t pathLength = 0.;
404   Double_t f0 = 0.;
405   Double_t f1 = 0.;
406   Double_t f2 = 0.;
407   Double_t meanRho = 0.;
408   GetAbsorberCorrectionParam(trackXYZIn,trackXYZOut,pathLength,f0,f1,f2,meanRho);
409   AddMCSEffectInAbsorber(trackParam,pathLength,f0,f1,f2);
410   
411   // finally go to the vertex
412   ExtrapToZCov(trackParam,zVtx);
413   
414 }
415
416   //__________________________________________________________________________
417 void AliMUONTrackExtrap::AddMCSEffectInAbsorber(AliMUONTrackParam* param, Double_t pathLength, Double_t f0, Double_t f1, Double_t f2)
418 {
419   /// Add to the track parameter covariances the effects of multiple Coulomb scattering
420   /// at the end of the front absorber using the absorber correction parameters
421   
422   // absorber related covariance parameters
423   Double_t bendingSlope = param->GetBendingSlope();
424   Double_t nonBendingSlope = param->GetNonBendingSlope();
425   Double_t inverseBendingMomentum = param->GetInverseBendingMomentum();
426   Double_t alpha2 = 0.0136 * 0.0136 * inverseBendingMomentum * inverseBendingMomentum * (1.0 + bendingSlope * bendingSlope) /
427                                         (1.0 + bendingSlope *bendingSlope + nonBendingSlope * nonBendingSlope); // velocity = 1
428   Double_t varCoor = alpha2 * (pathLength * pathLength * f0 - 2. * pathLength * f1 + f2);
429   Double_t covCorrSlope = alpha2 * (pathLength * f0 - f1);
430   Double_t varSlop = alpha2 * f0;
431   
432   TMatrixD* paramCov = param->GetCovariances();
433   // Non bending plane
434   (*paramCov)(0,0) += varCoor;          (*paramCov)(0,1) += covCorrSlope;
435   (*paramCov)(1,0) += covCorrSlope;     (*paramCov)(1,1) += varSlop;
436   // Bending plane
437   (*paramCov)(2,2) += varCoor;          (*paramCov)(2,3) += covCorrSlope;
438   (*paramCov)(3,2) += covCorrSlope;     (*paramCov)(3,3) += varSlop;
439   
440 }
441
442   //__________________________________________________________________________
443 void AliMUONTrackExtrap::GetAbsorberCorrectionParam(Double_t trackXYZIn[3], Double_t trackXYZOut[3], Double_t &pathLength,
444                                                     Double_t &f0, Double_t &f1, Double_t &f2, Double_t &meanRho)
445 {
446   /// Parameters used to correct for Multiple Coulomb Scattering and energy loss in absorber
447   /// Calculated assuming a linear propagation between track positions trackXYZIn and trackXYZOut
448   // pathLength: path length between trackXYZIn and trackXYZOut (cm)
449   // f0:         0th moment of z calculated with the inverse radiation-length distribution
450   // f1:         1st moment of z calculated with the inverse radiation-length distribution
451   // f2:         2nd moment of z calculated with the inverse radiation-length distribution
452   // meanRho:    average density of crossed material (g/cm3)
453   
454   // Reset absorber's parameters
455   pathLength = 0.;
456   f0 = 0.;
457   f1 = 0.;
458   f2 = 0.;
459   meanRho = 0.;
460   
461   // Check whether the geometry is available
462   if (!gGeoManager) {
463     cout<<"E-AliMUONTrackExtrap::GetAbsorberCorrectionParam: no TGeo"<<endl;
464     return;
465   }
466   
467   // Initialize starting point and direction
468   pathLength = TMath::Sqrt((trackXYZOut[0] - trackXYZIn[0])*(trackXYZOut[0] - trackXYZIn[0])+
469                            (trackXYZOut[1] - trackXYZIn[1])*(trackXYZOut[1] - trackXYZIn[1])+
470                            (trackXYZOut[2] - trackXYZIn[2])*(trackXYZOut[2] - trackXYZIn[2]));
471   if (pathLength < TGeoShape::Tolerance()) return;
472   Double_t b[3];
473   b[0] = (trackXYZOut[0] - trackXYZIn[0]) / pathLength;
474   b[1] = (trackXYZOut[1] - trackXYZIn[1]) / pathLength;
475   b[2] = (trackXYZOut[2] - trackXYZIn[2]) / pathLength;
476   TGeoNode *currentnode = gGeoManager->InitTrack(trackXYZIn, b);
477   if (!currentnode) {
478     cout<<"E-AliMUONTrackExtrap::GetAbsorberCorrectionParam: start point out of geometry"<<endl;
479     return;
480   }
481   
482   // loop over absorber slices and calculate absorber's parameters
483   Double_t rho = 0.; // material density (g/cm3)
484   Double_t x0 = 0.;  // radiation-length (cm-1)
485   Double_t localPathLength = 0;
486   Double_t remainingPathLength = pathLength;
487   Double_t zB = trackXYZIn[2];
488   Double_t zE, dzB, dzE;
489   do {
490     // Get material properties
491     TGeoMaterial *material = currentnode->GetVolume()->GetMedium()->GetMaterial();
492     rho = material->GetDensity();
493     x0 = material->GetRadLen();
494     if (!material->IsMixture()) x0 /= rho; // different normalization in the modeler for mixture
495     
496     // Get path length within this material
497     gGeoManager->FindNextBoundary(remainingPathLength);
498     localPathLength = gGeoManager->GetStep() + 1.e-6;
499     // Check if boundary within remaining path length. If so, make sure to cross the boundary to prepare the next step
500     if (localPathLength >= remainingPathLength) localPathLength = remainingPathLength;
501     else {
502       currentnode = gGeoManager->Step();
503       if (!currentnode) {
504         cout<<"E-AliMUONTrackExtrap::GetAbsorberCorrectionParam: navigation failed"<<endl;
505         f0 = f1 = f2 = meanRho = 0.;
506         return;
507       }
508       if (!gGeoManager->IsEntering()) {
509         // make another small step to try to enter in new absorber slice
510         gGeoManager->SetStep(0.001);
511         currentnode = gGeoManager->Step();
512         if (!gGeoManager->IsEntering() || !currentnode) {
513           cout<<"E-AliMUONTrackExtrap::GetAbsorberCorrectionParam: navigation failed"<<endl;
514           f0 = f1 = f2 = meanRho = 0.;
515           return;
516         }
517         localPathLength += 0.001;
518       }
519     }
520     
521     // calculate absorber's parameters
522     zE = b[2] * localPathLength + zB;
523     dzB = zB - trackXYZIn[2];
524     dzE = zE - trackXYZIn[2];
525     f0 += localPathLength / x0;
526     f1 += (dzE*dzE - dzB*dzB) / b[2] / b[2] / x0 / 2.;
527     f2 += (dzE*dzE*dzE - dzB*dzB*dzB) / b[2] / b[2] / b[2] / x0 / 3.;
528     meanRho += localPathLength * rho;
529     
530     // prepare next step
531     zB = zE;
532     remainingPathLength -= localPathLength;
533   } while (remainingPathLength > TGeoShape::Tolerance());
534   
535   meanRho /= pathLength;
536 }
537
538   //__________________________________________________________________________
539 void AliMUONTrackExtrap::AddMCSEffect(AliMUONTrackParam *param, Double_t dZ, Double_t x0)
540 {
541   /// Add to the track parameter covariances the effects of multiple Coulomb scattering
542   /// through a material of thickness "dZ" and of radiation length "x0"
543   /// assuming linear propagation and using the small angle approximation.
544   
545   Double_t bendingSlope = param->GetBendingSlope();
546   Double_t nonBendingSlope = param->GetNonBendingSlope();
547   Double_t inverseTotalMomentum2 = param->GetInverseBendingMomentum() * param->GetInverseBendingMomentum() *
548                                    (1.0 + bendingSlope * bendingSlope) /
549                                    (1.0 + bendingSlope *bendingSlope + nonBendingSlope * nonBendingSlope); 
550   // Path length in the material
551   Double_t pathLength = TMath::Abs(dZ) * TMath::Sqrt(1.0 + bendingSlope*bendingSlope + nonBendingSlope*nonBendingSlope);
552   Double_t pathLength2 = pathLength * pathLength;
553   // relativistic velocity
554   Double_t velo = 1.;
555   // Angular dispersion square of the track (variance) in a plane perpendicular to the trajectory
556   Double_t theta02 = 0.0136 / velo * (1 + 0.038 * TMath::Log(pathLength/x0));
557   theta02 *= theta02 * inverseTotalMomentum2 * pathLength / x0;
558   
559   // Add effects of multiple Coulomb scattering in track parameter covariances
560   TMatrixD* paramCov = param->GetCovariances();
561   Double_t varCoor      = pathLength2 * theta02 / 3.;
562   Double_t varSlop      = theta02;
563   Double_t covCorrSlope = pathLength * theta02 / 2.;
564   // Non bending plane
565   (*paramCov)(0,0) += varCoor;          (*paramCov)(0,1) += covCorrSlope;
566   (*paramCov)(1,0) += covCorrSlope;     (*paramCov)(1,1) += varSlop;
567   // Bending plane
568   (*paramCov)(2,2) += varCoor;          (*paramCov)(2,3) += covCorrSlope;
569   (*paramCov)(3,2) += covCorrSlope;     (*paramCov)(3,3) += varSlop;
570   
571 }
572
573   //__________________________________________________________________________
574 void AliMUONTrackExtrap::ExtrapToVertex(AliMUONTrackParam* trackParam, Double_t xVtx, Double_t yVtx, Double_t zVtx,
575                                         Bool_t CorrectForMCS, Bool_t CorrectForEnergyLoss)
576 {
577   /// Extrapolation to the vertex.
578   /// Returns the track parameters resulting from the extrapolation of the current TrackParam.
579   /// Changes parameters according to Branson correction through the absorber and energy loss
580   
581   if (trackParam->GetZ() == zVtx) return; // nothing to be done if already at vertex
582   
583   if (trackParam->GetZ() > zVtx) { // spectro. (z<0)
584     cout<<"F-AliMUONTrackExtrap::ExtrapToVertex: Starting Z ("<<trackParam->GetZ()
585         <<") upstream the vertex (zVtx = "<<zVtx<<")"<<endl;
586     exit(-1);
587   }
588   
589   // Check if correction required
590   if (!CorrectForMCS && !CorrectForEnergyLoss) {
591     ExtrapToZ(trackParam,zVtx);
592     return;
593   }
594   
595   // Check whether the geometry is available and get absorber boundaries
596   if (!gGeoManager) {
597     cout<<"E-AliMUONTrackExtrap::ExtrapToVertex: no TGeo"<<endl;
598     return;
599   }
600   TGeoNode *absNode = gGeoManager->GetVolume("ALIC")->GetNode("ABSM_1");
601   if (!absNode) {
602     cout<<"E-AliMUONTrackExtrap::ExtrapToVertex: failed to get absorber node"<<endl;
603     return;
604   }
605   Double_t zAbsBeg, zAbsEnd;
606   absNode->GetVolume()->GetShape()->GetAxisRange(3,zAbsBeg,zAbsEnd);
607   const Double_t *absPos = absNode->GetMatrix()->GetTranslation();
608   zAbsBeg = absPos[2] - zAbsBeg; // spectro. (z<0)
609   zAbsEnd = absPos[2] - zAbsEnd; // spectro. (z<0)
610   
611   // Check the vertex position relatively to the absorber
612   if (zVtx < zAbsBeg && zVtx > zAbsEnd) { // spectro. (z<0)
613     cout<<"W-AliMUONTrackExtrap::ExtrapToVertex: Ending Z ("<<zVtx
614         <<") inside the front absorber ("<<zAbsBeg<<","<<zAbsEnd<<")"<<endl;
615   } else if (zVtx < zAbsEnd ) { // spectro. (z<0)
616     cout<<"W-AliMUONTrackExtrap::ExtrapToVertex: Ending Z ("<<zVtx
617         <<") downstream the front absorber (zAbsorberEnd = "<<zAbsEnd<<")"<<endl;
618     ExtrapToZ(trackParam,zVtx);
619     return;
620   }
621   
622   // Check the track position relatively to the absorber and extrapolate track parameters to the end of the absorber if needed
623   if (trackParam->GetZ() > zAbsBeg) { // spectro. (z<0)
624     cout<<"W-AliMUONTrackExtrap::ExtrapToVertex: Starting Z ("<<trackParam->GetZ()
625         <<") upstream the front absorber (zAbsorberBegin = "<<zAbsBeg<<")"<<endl;
626     ExtrapToZ(trackParam,zVtx);
627     return;
628   } else if (trackParam->GetZ() > zAbsEnd) { // spectro. (z<0)
629     cout<<"W-AliMUONTrackExtrap::ExtrapToVertex: Starting Z ("<<trackParam->GetZ()
630         <<") inside the front absorber ("<<zAbsBeg<<","<<zAbsEnd<<")"<<endl;
631   } else {
632     ExtrapToZ(trackParam,zAbsEnd);
633   }
634   
635   // Get absorber correction parameters assuming linear propagation from vertex to the track position
636   Double_t trackXYZOut[3];
637   trackXYZOut[0] = trackParam->GetNonBendingCoor();
638   trackXYZOut[1] = trackParam->GetBendingCoor();
639   trackXYZOut[2] = trackParam->GetZ();
640   Double_t trackXYZIn[3];
641   trackXYZIn[2] = TMath::Min(zVtx, zAbsBeg); // spectro. (z<0)
642   trackXYZIn[0] = trackXYZOut[0] + (xVtx - trackXYZOut[0]) / (zVtx - trackXYZOut[2]) * (trackXYZIn[2] - trackXYZOut[2]);
643   trackXYZIn[1] = trackXYZOut[1] + (yVtx - trackXYZOut[1]) / (zVtx - trackXYZOut[2]) * (trackXYZIn[2] - trackXYZOut[2]);
644   Double_t pathLength = 0.;
645   Double_t f0 = 0.;
646   Double_t f1 = 0.;
647   Double_t f2 = 0.;
648   Double_t meanRho = 0.;
649   GetAbsorberCorrectionParam(trackXYZIn,trackXYZOut,pathLength,f0,f1,f2,meanRho);
650   
651   // Calculate energy loss
652   Double_t pTot = trackParam->P();
653   Double_t charge = TMath::Sign(Double_t(1.0), trackParam->GetInverseBendingMomentum());      
654   Double_t deltaP = TotalMomentumEnergyLoss(pTot,pathLength,meanRho);
655   
656   // Correct for half of energy loss
657   Double_t nonBendingSlope, bendingSlope;
658   if (CorrectForEnergyLoss) {
659     pTot += 0.5 * deltaP;
660     nonBendingSlope = trackParam->GetNonBendingSlope();
661     bendingSlope = trackParam->GetBendingSlope();
662     trackParam->SetInverseBendingMomentum(charge / pTot *
663           TMath::Sqrt(1.0 + nonBendingSlope*nonBendingSlope + bendingSlope*bendingSlope) /
664           TMath::Sqrt(1.0 + bendingSlope*bendingSlope));
665   }
666   
667   if (CorrectForMCS) {
668     // Position of the Branson plane (spectro. (z<0))
669     Double_t zB = (f1>0.) ? trackXYZIn[2] - f2/f1 : 0.;
670     
671     // Get track position in the Branson plane corrected for magnetic field effect
672     ExtrapToZ(trackParam,zVtx);
673     Double_t xB = trackParam->GetNonBendingCoor() + (zB - zVtx) * trackParam->GetNonBendingSlope();
674     Double_t yB = trackParam->GetBendingCoor()    + (zB - zVtx) * trackParam->GetBendingSlope();
675     
676     // Get track slopes corrected for multiple scattering (spectro. (z<0))
677     nonBendingSlope = (zB<0.) ? (xB - xVtx) / (zB - zVtx) : trackParam->GetNonBendingSlope();
678     bendingSlope    = (zB<0.) ? (yB - yVtx) / (zB - zVtx) : trackParam->GetBendingSlope();
679     
680     // Set track parameters at vertex
681     trackParam->SetNonBendingCoor(xVtx);
682     trackParam->SetBendingCoor(yVtx);
683     trackParam->SetZ(zVtx);
684     trackParam->SetNonBendingSlope(nonBendingSlope);
685     trackParam->SetBendingSlope(bendingSlope);
686   } else {
687     ExtrapToZ(trackParam,zVtx);
688     nonBendingSlope = trackParam->GetNonBendingSlope();
689     bendingSlope = trackParam->GetBendingSlope();
690   }
691   
692   // Correct for second half of energy loss
693   if (CorrectForEnergyLoss) pTot += 0.5 * deltaP;
694   
695   // Set track parameters at vertex
696   trackParam->SetInverseBendingMomentum(charge / pTot *
697         TMath::Sqrt(1.0 + nonBendingSlope*nonBendingSlope + bendingSlope*bendingSlope) /
698         TMath::Sqrt(1.0 + bendingSlope*bendingSlope));
699   
700 }
701
702   //__________________________________________________________________________
703 Double_t AliMUONTrackExtrap::TotalMomentumEnergyLoss(AliMUONTrackParam* trackParam, Double_t xVtx, Double_t yVtx, Double_t zVtx)
704 {
705   /// Calculate the total momentum energy loss in-between the track position and the vertex assuming a linear propagation
706   
707   if (trackParam->GetZ() == zVtx) return 0.; // nothing to be done if already at vertex
708   
709   // Check whether the geometry is available
710   if (!gGeoManager) {
711     cout<<"E-AliMUONTrackExtrap::TotalMomentumEnergyLoss: no TGeo"<<endl;
712     return 0.;
713   }
714   
715   // Get encountered material correction parameters assuming linear propagation from vertex to the track position
716   Double_t trackXYZOut[3];
717   trackXYZOut[0] = trackParam->GetNonBendingCoor();
718   trackXYZOut[1] = trackParam->GetBendingCoor();
719   trackXYZOut[2] = trackParam->GetZ();
720   Double_t trackXYZIn[3];
721   trackXYZIn[0] = xVtx;
722   trackXYZIn[1] = yVtx;
723   trackXYZIn[2] = zVtx;
724   Double_t pathLength = 0.;
725   Double_t f0 = 0.;
726   Double_t f1 = 0.;
727   Double_t f2 = 0.;
728   Double_t meanRho = 0.;
729   GetAbsorberCorrectionParam(trackXYZIn,trackXYZOut,pathLength,f0,f1,f2,meanRho);
730   
731   // Calculate energy loss
732   Double_t pTot = trackParam->P();
733   return TotalMomentumEnergyLoss(pTot,pathLength,meanRho);
734 }
735
736   //__________________________________________________________________________
737 Double_t AliMUONTrackExtrap::TotalMomentumEnergyLoss(Double_t pTotal, Double_t pathLength, Double_t rho)
738 {
739   /// Returns the total momentum energy loss in the front absorber
740   Double_t muMass = 0.105658369;
741   Double_t p2=pTotal*pTotal;
742   Double_t beta2=p2/(p2 + muMass*muMass);
743   Double_t dE=ApproximateBetheBloch(beta2)*pathLength*rho;
744   
745   return dE;
746 }
747
748   //__________________________________________________________________________
749 Double_t AliMUONTrackExtrap::ApproximateBetheBloch(Double_t beta2) {
750   //------------------------------------------------------------------
751   // This is an approximation of the Bethe-Bloch formula with 
752   // the density effect taken into account at beta*gamma > 3.5
753   // (the approximation is reasonable only for solid materials) 
754   //------------------------------------------------------------------
755   if (beta2/(1-beta2)>3.5*3.5)
756      return 0.153e-3/beta2*(log(3.5*5940)+0.5*log(beta2/(1-beta2)) - beta2);
757
758   return 0.153e-3/beta2*(log(5940*beta2/(1-beta2)) - beta2);
759 }
760
761  //__________________________________________________________________________
762 void AliMUONTrackExtrap::ExtrapOneStepHelix(Double_t charge, Double_t step, Double_t *vect, Double_t *vout)
763 {
764 ///    ******************************************************************
765 ///    *                                                                *
766 ///    *  Performs the tracking of one step in a magnetic field         *
767 ///    *  The trajectory is assumed to be a helix in a constant field   *
768 ///    *  taken at the mid point of the step.                           *
769 ///    *  Parameters:                                                   *
770 ///    *   input                                                        *
771 ///    *     STEP =arc length of the step asked                         *
772 ///    *     VECT =input vector (position,direction cos and momentum)   *
773 ///    *     CHARGE=  electric charge of the particle                   *
774 ///    *   output                                                       *
775 ///    *     VOUT = same as VECT after completion of the step           *
776 ///    *                                                                *
777 ///    *    ==>Called by : <USER>, GUSWIM                               *
778 ///    *       Author    m.hansroul  *********                          *
779 ///    *       modified  s.egli, s.v.levonian                           *
780 ///    *       modified  v.perevoztchikov
781 ///    *                                                                *
782 ///    ******************************************************************
783
784 // modif: everything in double precision
785
786     Double_t xyz[3], h[4], hxp[3];
787     Double_t h2xy, hp, rho, tet;
788     Double_t sint, sintt, tsint, cos1t;
789     Double_t f1, f2, f3, f4, f5, f6;
790
791     const Int_t kix  = 0;
792     const Int_t kiy  = 1;
793     const Int_t kiz  = 2;
794     const Int_t kipx = 3;
795     const Int_t kipy = 4;
796     const Int_t kipz = 5;
797     const Int_t kipp = 6;
798
799     const Double_t kec = 2.9979251e-4;
800     //
801     //    ------------------------------------------------------------------
802     //
803     //       units are kgauss,centimeters,gev/c
804     //
805     vout[kipp] = vect[kipp];
806     if (TMath::Abs(charge) < 0.00001) {
807       for (Int_t i = 0; i < 3; i++) {
808         vout[i] = vect[i] + step * vect[i+3];
809         vout[i+3] = vect[i+3];
810       }
811       return;
812     }
813     xyz[0]    = vect[kix] + 0.5 * step * vect[kipx];
814     xyz[1]    = vect[kiy] + 0.5 * step * vect[kipy];
815     xyz[2]    = vect[kiz] + 0.5 * step * vect[kipz];
816
817     //cmodif: call gufld (xyz, h) changed into:
818     GetField (xyz, h);
819  
820     h2xy = h[0]*h[0] + h[1]*h[1];
821     h[3] = h[2]*h[2]+ h2xy;
822     if (h[3] < 1.e-12) {
823       for (Int_t i = 0; i < 3; i++) {
824         vout[i] = vect[i] + step * vect[i+3];
825         vout[i+3] = vect[i+3];
826       }
827       return;
828     }
829     if (h2xy < 1.e-12*h[3]) {
830       ExtrapOneStepHelix3(charge*h[2], step, vect, vout);
831       return;
832     }
833     h[3] = TMath::Sqrt(h[3]);
834     h[0] /= h[3];
835     h[1] /= h[3];
836     h[2] /= h[3];
837     h[3] *= kec;
838
839     hxp[0] = h[1]*vect[kipz] - h[2]*vect[kipy];
840     hxp[1] = h[2]*vect[kipx] - h[0]*vect[kipz];
841     hxp[2] = h[0]*vect[kipy] - h[1]*vect[kipx];
842  
843     hp = h[0]*vect[kipx] + h[1]*vect[kipy] + h[2]*vect[kipz];
844
845     rho = -charge*h[3]/vect[kipp];
846     tet = rho * step;
847
848     if (TMath::Abs(tet) > 0.15) {
849       sint = TMath::Sin(tet);
850       sintt = (sint/tet);
851       tsint = (tet-sint)/tet;
852       cos1t = 2.*(TMath::Sin(0.5*tet))*(TMath::Sin(0.5*tet))/tet;
853     } else {
854       tsint = tet*tet/36.;
855       sintt = (1. - tsint);
856       sint = tet*sintt;
857       cos1t = 0.5*tet;
858     }
859
860     f1 = step * sintt;
861     f2 = step * cos1t;
862     f3 = step * tsint * hp;
863     f4 = -tet*cos1t;
864     f5 = sint;
865     f6 = tet * cos1t * hp;
866  
867     vout[kix] = vect[kix] + f1*vect[kipx] + f2*hxp[0] + f3*h[0];
868     vout[kiy] = vect[kiy] + f1*vect[kipy] + f2*hxp[1] + f3*h[1];
869     vout[kiz] = vect[kiz] + f1*vect[kipz] + f2*hxp[2] + f3*h[2];
870  
871     vout[kipx] = vect[kipx] + f4*vect[kipx] + f5*hxp[0] + f6*h[0];
872     vout[kipy] = vect[kipy] + f4*vect[kipy] + f5*hxp[1] + f6*h[1];
873     vout[kipz] = vect[kipz] + f4*vect[kipz] + f5*hxp[2] + f6*h[2];
874  
875     return;
876 }
877
878  //__________________________________________________________________________
879 void AliMUONTrackExtrap::ExtrapOneStepHelix3(Double_t field, Double_t step, Double_t *vect, Double_t *vout)
880 {
881 ///     ******************************************************************
882 ///     *                                                                *
883 ///     *       Tracking routine in a constant field oriented            *
884 ///     *       along axis 3                                             *
885 ///     *       Tracking is performed with a conventional                *
886 ///     *       helix step method                                        *
887 ///     *                                                                *
888 ///     *    ==>Called by : <USER>, GUSWIM                               *
889 ///     *       Authors    R.Brun, M.Hansroul  *********                 *
890 ///     *       Rewritten  V.Perevoztchikov
891 ///     *                                                                *
892 ///     ******************************************************************
893
894     Double_t hxp[3];
895     Double_t h4, hp, rho, tet;
896     Double_t sint, sintt, tsint, cos1t;
897     Double_t f1, f2, f3, f4, f5, f6;
898
899     const Int_t kix  = 0;
900     const Int_t kiy  = 1;
901     const Int_t kiz  = 2;
902     const Int_t kipx = 3;
903     const Int_t kipy = 4;
904     const Int_t kipz = 5;
905     const Int_t kipp = 6;
906
907     const Double_t kec = 2.9979251e-4;
908
909 // 
910 //     ------------------------------------------------------------------
911 // 
912 //       units are kgauss,centimeters,gev/c
913 // 
914     vout[kipp] = vect[kipp];
915     h4 = field * kec;
916
917     hxp[0] = - vect[kipy];
918     hxp[1] = + vect[kipx];
919  
920     hp = vect[kipz];
921
922     rho = -h4/vect[kipp];
923     tet = rho * step;
924     if (TMath::Abs(tet) > 0.15) {
925       sint = TMath::Sin(tet);
926       sintt = (sint/tet);
927       tsint = (tet-sint)/tet;
928       cos1t = 2.* TMath::Sin(0.5*tet) * TMath::Sin(0.5*tet)/tet;
929     } else {
930       tsint = tet*tet/36.;
931       sintt = (1. - tsint);
932       sint = tet*sintt;
933       cos1t = 0.5*tet;
934     }
935
936     f1 = step * sintt;
937     f2 = step * cos1t;
938     f3 = step * tsint * hp;
939     f4 = -tet*cos1t;
940     f5 = sint;
941     f6 = tet * cos1t * hp;
942  
943     vout[kix] = vect[kix] + f1*vect[kipx] + f2*hxp[0];
944     vout[kiy] = vect[kiy] + f1*vect[kipy] + f2*hxp[1];
945     vout[kiz] = vect[kiz] + f1*vect[kipz] + f3;
946  
947     vout[kipx] = vect[kipx] + f4*vect[kipx] + f5*hxp[0];
948     vout[kipy] = vect[kipy] + f4*vect[kipy] + f5*hxp[1];
949     vout[kipz] = vect[kipz] + f4*vect[kipz] + f6;
950
951     return;
952 }
953
954  //__________________________________________________________________________
955 void AliMUONTrackExtrap::ExtrapOneStepRungekutta(Double_t charge, Double_t step, Double_t* vect, Double_t* vout)
956 {
957 ///     ******************************************************************
958 ///     *                                                                *
959 ///     *  Runge-Kutta method for tracking a particle through a magnetic *
960 ///     *  field. Uses Nystroem algorithm (See Handbook Nat. Bur. of     *
961 ///     *  Standards, procedure 25.5.20)                                 *
962 ///     *                                                                *
963 ///     *  Input parameters                                              *
964 ///     *       CHARGE    Particle charge                                *
965 ///     *       STEP      Step size                                      *
966 ///     *       VECT      Initial co-ords,direction cosines,momentum     *
967 ///     *  Output parameters                                             *
968 ///     *       VOUT      Output co-ords,direction cosines,momentum      *
969 ///     *  User routine called                                           *
970 ///     *       CALL GUFLD(X,F)                                          *
971 ///     *                                                                *
972 ///     *    ==>Called by : <USER>, GUSWIM                               *
973 ///     *       Authors    R.Brun, M.Hansroul  *********                 *
974 ///     *                  V.Perevoztchikov (CUT STEP implementation)    *
975 ///     *                                                                *
976 ///     *                                                                *
977 ///     ******************************************************************
978
979     Double_t h2, h4, f[4];
980     Double_t xyzt[3], a, b, c, ph,ph2;
981     Double_t secxs[4],secys[4],seczs[4],hxp[3];
982     Double_t g1, g2, g3, g4, g5, g6, ang2, dxt, dyt, dzt;
983     Double_t est, at, bt, ct, cba;
984     Double_t f1, f2, f3, f4, rho, tet, hnorm, hp, rho1, sint, cost;
985     
986     Double_t x;
987     Double_t y;
988     Double_t z;
989     
990     Double_t xt;
991     Double_t yt;
992     Double_t zt;
993
994     Double_t maxit = 1992;
995     Double_t maxcut = 11;
996
997     const Double_t kdlt   = 1e-4;
998     const Double_t kdlt32 = kdlt/32.;
999     const Double_t kthird = 1./3.;
1000     const Double_t khalf  = 0.5;
1001     const Double_t kec = 2.9979251e-4;
1002
1003     const Double_t kpisqua = 9.86960440109;
1004     const Int_t kix  = 0;
1005     const Int_t kiy  = 1;
1006     const Int_t kiz  = 2;
1007     const Int_t kipx = 3;
1008     const Int_t kipy = 4;
1009     const Int_t kipz = 5;
1010   
1011     // *.
1012     // *.    ------------------------------------------------------------------
1013     // *.
1014     // *             this constant is for units cm,gev/c and kgauss
1015     // *
1016     Int_t iter = 0;
1017     Int_t ncut = 0;
1018     for(Int_t j = 0; j < 7; j++)
1019       vout[j] = vect[j];
1020
1021     Double_t  pinv   = kec * charge / vect[6];
1022     Double_t tl = 0.;
1023     Double_t h = step;
1024     Double_t rest;
1025
1026  
1027     do {
1028       rest  = step - tl;
1029       if (TMath::Abs(h) > TMath::Abs(rest)) h = rest;
1030       //cmodif: call gufld(vout,f) changed into:
1031
1032       GetField(vout,f);
1033
1034       // *
1035       // *             start of integration
1036       // *
1037       x      = vout[0];
1038       y      = vout[1];
1039       z      = vout[2];
1040       a      = vout[3];
1041       b      = vout[4];
1042       c      = vout[5];
1043
1044       h2     = khalf * h;
1045       h4     = khalf * h2;
1046       ph     = pinv * h;
1047       ph2    = khalf * ph;
1048       secxs[0] = (b * f[2] - c * f[1]) * ph2;
1049       secys[0] = (c * f[0] - a * f[2]) * ph2;
1050       seczs[0] = (a * f[1] - b * f[0]) * ph2;
1051       ang2 = (secxs[0]*secxs[0] + secys[0]*secys[0] + seczs[0]*seczs[0]);
1052       if (ang2 > kpisqua) break;
1053
1054       dxt    = h2 * a + h4 * secxs[0];
1055       dyt    = h2 * b + h4 * secys[0];
1056       dzt    = h2 * c + h4 * seczs[0];
1057       xt     = x + dxt;
1058       yt     = y + dyt;
1059       zt     = z + dzt;
1060       // *
1061       // *              second intermediate point
1062       // *
1063
1064       est = TMath::Abs(dxt) + TMath::Abs(dyt) + TMath::Abs(dzt);
1065       if (est > h) {
1066         if (ncut++ > maxcut) break;
1067         h *= khalf;
1068         continue;
1069       }
1070  
1071       xyzt[0] = xt;
1072       xyzt[1] = yt;
1073       xyzt[2] = zt;
1074
1075       //cmodif: call gufld(xyzt,f) changed into:
1076       GetField(xyzt,f);
1077
1078       at     = a + secxs[0];
1079       bt     = b + secys[0];
1080       ct     = c + seczs[0];
1081
1082       secxs[1] = (bt * f[2] - ct * f[1]) * ph2;
1083       secys[1] = (ct * f[0] - at * f[2]) * ph2;
1084       seczs[1] = (at * f[1] - bt * f[0]) * ph2;
1085       at     = a + secxs[1];
1086       bt     = b + secys[1];
1087       ct     = c + seczs[1];
1088       secxs[2] = (bt * f[2] - ct * f[1]) * ph2;
1089       secys[2] = (ct * f[0] - at * f[2]) * ph2;
1090       seczs[2] = (at * f[1] - bt * f[0]) * ph2;
1091       dxt    = h * (a + secxs[2]);
1092       dyt    = h * (b + secys[2]);
1093       dzt    = h * (c + seczs[2]);
1094       xt     = x + dxt;
1095       yt     = y + dyt;
1096       zt     = z + dzt;
1097       at     = a + 2.*secxs[2];
1098       bt     = b + 2.*secys[2];
1099       ct     = c + 2.*seczs[2];
1100
1101       est = TMath::Abs(dxt)+TMath::Abs(dyt)+TMath::Abs(dzt);
1102       if (est > 2.*TMath::Abs(h)) {
1103         if (ncut++ > maxcut) break;
1104         h *= khalf;
1105         continue;
1106       }
1107  
1108       xyzt[0] = xt;
1109       xyzt[1] = yt;
1110       xyzt[2] = zt;
1111
1112       //cmodif: call gufld(xyzt,f) changed into:
1113       GetField(xyzt,f);
1114
1115       z      = z + (c + (seczs[0] + seczs[1] + seczs[2]) * kthird) * h;
1116       y      = y + (b + (secys[0] + secys[1] + secys[2]) * kthird) * h;
1117       x      = x + (a + (secxs[0] + secxs[1] + secxs[2]) * kthird) * h;
1118
1119       secxs[3] = (bt*f[2] - ct*f[1])* ph2;
1120       secys[3] = (ct*f[0] - at*f[2])* ph2;
1121       seczs[3] = (at*f[1] - bt*f[0])* ph2;
1122       a      = a+(secxs[0]+secxs[3]+2. * (secxs[1]+secxs[2])) * kthird;
1123       b      = b+(secys[0]+secys[3]+2. * (secys[1]+secys[2])) * kthird;
1124       c      = c+(seczs[0]+seczs[3]+2. * (seczs[1]+seczs[2])) * kthird;
1125
1126       est    = TMath::Abs(secxs[0]+secxs[3] - (secxs[1]+secxs[2]))
1127         + TMath::Abs(secys[0]+secys[3] - (secys[1]+secys[2]))
1128         + TMath::Abs(seczs[0]+seczs[3] - (seczs[1]+seczs[2]));
1129
1130       if (est > kdlt && TMath::Abs(h) > 1.e-4) {
1131         if (ncut++ > maxcut) break;
1132         h *= khalf;
1133         continue;
1134       }
1135
1136       ncut = 0;
1137       // *               if too many iterations, go to helix
1138       if (iter++ > maxit) break;
1139
1140       tl += h;
1141       if (est < kdlt32) 
1142         h *= 2.;
1143       cba    = 1./ TMath::Sqrt(a*a + b*b + c*c);
1144       vout[0] = x;
1145       vout[1] = y;
1146       vout[2] = z;
1147       vout[3] = cba*a;
1148       vout[4] = cba*b;
1149       vout[5] = cba*c;
1150       rest = step - tl;
1151       if (step < 0.) rest = -rest;
1152       if (rest < 1.e-5*TMath::Abs(step)) return;
1153
1154     } while(1);
1155
1156     // angle too big, use helix
1157
1158     f1  = f[0];
1159     f2  = f[1];
1160     f3  = f[2];
1161     f4  = TMath::Sqrt(f1*f1+f2*f2+f3*f3);
1162     rho = -f4*pinv;
1163     tet = rho * step;
1164  
1165     hnorm = 1./f4;
1166     f1 = f1*hnorm;
1167     f2 = f2*hnorm;
1168     f3 = f3*hnorm;
1169
1170     hxp[0] = f2*vect[kipz] - f3*vect[kipy];
1171     hxp[1] = f3*vect[kipx] - f1*vect[kipz];
1172     hxp[2] = f1*vect[kipy] - f2*vect[kipx];
1173  
1174     hp = f1*vect[kipx] + f2*vect[kipy] + f3*vect[kipz];
1175
1176     rho1 = 1./rho;
1177     sint = TMath::Sin(tet);
1178     cost = 2.*TMath::Sin(khalf*tet)*TMath::Sin(khalf*tet);
1179
1180     g1 = sint*rho1;
1181     g2 = cost*rho1;
1182     g3 = (tet-sint) * hp*rho1;
1183     g4 = -cost;
1184     g5 = sint;
1185     g6 = cost * hp;
1186  
1187     vout[kix] = vect[kix] + g1*vect[kipx] + g2*hxp[0] + g3*f1;
1188     vout[kiy] = vect[kiy] + g1*vect[kipy] + g2*hxp[1] + g3*f2;
1189     vout[kiz] = vect[kiz] + g1*vect[kipz] + g2*hxp[2] + g3*f3;
1190  
1191     vout[kipx] = vect[kipx] + g4*vect[kipx] + g5*hxp[0] + g6*f1;
1192     vout[kipy] = vect[kipy] + g4*vect[kipy] + g5*hxp[1] + g6*f2;
1193     vout[kipz] = vect[kipz] + g4*vect[kipz] + g5*hxp[2] + g6*f3;
1194
1195     return;
1196 }
1197
1198 //___________________________________________________________
1199  void  AliMUONTrackExtrap::GetField(Double_t *Position, Double_t *Field)
1200 {
1201   /// interface for arguments in double precision (Why ? ChF)
1202   Float_t x[3], b[3];
1203
1204   x[0] = Position[0]; x[1] = Position[1]; x[2] = Position[2];
1205
1206   if (fgkField) fgkField->Field(x,b);
1207   else {
1208     cout<<"F-AliMUONTrackExtrap::GetField: fgkField = 0x0"<<endl;
1209     exit(-1);
1210   }
1211   
1212   Field[0] = b[0]; Field[1] = b[1]; Field[2] = b[2];
1213
1214   return;
1215 }