ROOT logo

// Author: ruben.shahoyan@cern.ch   20/03/2007

///////////////////////////////////////////////////////////////////////////////////
//                                                                               //
//  Wrapper for the set of mag.field parameterizations by Chebyshev polinomials  //
//  To obtain the field in cartesian coordinates/components use                  //
//    Field(double* xyz, double* bxyz);                                          //
//  For cylindrical coordinates/components:                                      //
//    FieldCyl(double* rphiz, double* brphiz)                                    //
//                                                                               //
//  The solenoid part is parameterized in the volume  R<500, -550<Z<550 cm       //
//                                                                               //
//  The region R<423 cm,  -343.3<Z<481.3 for 30kA and -343.3<Z<481.3 for 12kA    //
//  is parameterized using measured data while outside the Tosca calculation     //
//  is used (matched to data on the boundary of the measurements)                //
//                                                                               //
//  Two options are possible:                                                    //
//  1) _BRING_TO_BOUNDARY_ is defined in the AliCheb3D:                          //
//     If the querried point is outside of the validity region then the field    //
//     at the closest point on the fitted surface is returned.                   //
//  2) _BRING_TO_BOUNDARY_ is not defined in the AliCheb3D:                      //
//     If the querried point is outside of the validity region the return        //
//     value for the field components are set to 0.                              //
//                                                                               //
//  To obtain the field integral in the TPC region from given point to nearest   //
//  cathod plane (+- 250 cm) use:                                                //
//  GetTPCInt(double* xyz, double* bxyz);  for Cartesian frame                   //
//  or                                                                           //
//  GetTPCIntCyl(Double_t *rphiz, Double_t *b); for Cylindrical frame            //
//                                                                               //
//                                                                               //
//  The units are kiloGauss and cm.                                              //
//                                                                               //
///////////////////////////////////////////////////////////////////////////////////

#ifndef ALIMAGWRAPCHEB_H
#define ALIMAGWRAPCHEB_H

#include <TMath.h>
#include <TNamed.h>
#include <TObjArray.h>
#include <TStopwatch.h>
#include "AliCheb3D.h"

#ifndef _MAGCHEB_CACHE_
#define _MAGCHEB_CACHE_  // use to spead up, but then Field calls are not thread safe
#endif

class TSystem;
class TArrayF;
class TArrayI;

class AliMagWrapCheb: public TNamed
{
 public:
  AliMagWrapCheb();
  AliMagWrapCheb(const AliMagWrapCheb& src);
  ~AliMagWrapCheb() {Clear();}
  //
  void       CopyFrom(const AliMagWrapCheb& src);
  AliMagWrapCheb& operator=(const AliMagWrapCheb& rhs);
  virtual void Clear(const Option_t * = "");
  //
  Int_t      GetNParamsSol()                              const {return fNParamsSol;}
  Int_t      GetNSegZSol()                                const {return fNZSegSol;}
  Float_t*   GetSegZSol()                                 const {return fSegZSol;}
  //
  Int_t      GetNParamsTPCInt()                           const {return fNParamsTPC;}
  Int_t      GetNSegZTPCInt()                             const {return fNZSegTPC;}
  //
  Int_t      GetNParamsTPCRatInt()                        const {return fNParamsTPCRat;}
  Int_t      GetNSegZTPCRatInt()                          const {return fNZSegTPCRat;}
  //
  Int_t      GetNParamsDip()                              const {return fNParamsDip;}
  Int_t      GetNSegZDip()                                const {return fNZSegDip;}
  //
  Float_t    GetMaxZ()                                    const {return GetMaxZSol();}
  Float_t    GetMinZ()                                    const {return fParamsDip ? GetMinZDip() : GetMinZSol();}
  //
  Float_t    GetMinZSol()                                 const {return fMinZSol;}
  Float_t    GetMaxZSol()                                 const {return fMaxZSol;}
  Float_t    GetMaxRSol()                                 const {return fMaxRSol;}
  //
  Float_t    GetMinZDip()                                 const {return fMinZDip;}
  Float_t    GetMaxZDip()                                 const {return fMaxZDip;}
  //
  Float_t    GetMinZTPCInt()                              const {return fMinZTPC;}
  Float_t    GetMaxZTPCInt()                              const {return fMaxZTPC;}
  Float_t    GetMaxRTPCInt()                              const {return fMaxRTPC;}
  //
  Float_t    GetMinZTPCRatInt()                           const {return fMinZTPCRat;}
  Float_t    GetMaxZTPCRatInt()                           const {return fMaxZTPCRat;}
  Float_t    GetMaxRTPCRatInt()                           const {return fMaxRTPCRat;}
  //
  AliCheb3D* GetParamSol(Int_t ipar)                      const {return (AliCheb3D*)fParamsSol->UncheckedAt(ipar);}
  AliCheb3D* GetParamTPCRatInt(Int_t ipar)                const {return (AliCheb3D*)fParamsTPCRat->UncheckedAt(ipar);}
  AliCheb3D* GetParamTPCInt(Int_t ipar)                   const {return (AliCheb3D*)fParamsTPC->UncheckedAt(ipar);}
  AliCheb3D* GetParamDip(Int_t ipar)                      const {return (AliCheb3D*)fParamsDip->UncheckedAt(ipar);}
  //
  virtual void Print(Option_t * = "")                     const;
  //
  virtual void Field(const Double_t *xyz, Double_t *b)    const;
  Double_t     GetBz(const Double_t *xyz)                 const;
  //
  void FieldCyl(const Double_t *rphiz, Double_t  *b)      const;  
  void GetTPCInt(const Double_t *xyz, Double_t *b)        const;
  void GetTPCIntCyl(const Double_t *rphiz, Double_t *b)   const;
  void GetTPCRatInt(const Double_t *xyz, Double_t *b)     const;
  void GetTPCRatIntCyl(const Double_t *rphiz, Double_t *b) const;
  //
  Int_t       FindSolSegment(const Double_t *xyz)         const; 
  Int_t       FindTPCSegment(const Double_t *xyz)         const; 
  Int_t       FindTPCRatSegment(const Double_t *xyz)      const; 
  Int_t       FindDipSegment(const Double_t *xyz)         const; 
  static void CylToCartCylB(const Double_t *rphiz, const Double_t *brphiz,Double_t *bxyz);
  static void CylToCartCartB(const Double_t *xyz,  const Double_t *brphiz,Double_t *bxyz);
  static void CartToCylCartB(const Double_t *xyz,  const Double_t *bxyz,  Double_t *brphiz);
  static void CartToCylCylB(const Double_t *rphiz, const Double_t *bxyz,  Double_t *brphiz);
  static void CartToCyl(const Double_t *xyz,  Double_t *rphiz);
  static void CylToCart(const Double_t *rphiz,Double_t *xyz);
  //
#ifdef  _INC_CREATION_ALICHEB3D_                          // see AliCheb3D.h for explanation
  void         LoadData(const char* inpfile);
  //
  AliMagWrapCheb(const char* inputFile);
  void       SaveData(const char* outfile)                const;
  Int_t      SegmentDimension(Float_t** seg,const TObjArray* par,int npar, int dim, 
			      Float_t xmn,Float_t xmx,Float_t ymn,Float_t ymx,Float_t zmn,Float_t zmx);
  //
  void       AddParamSol(const AliCheb3D* param);
  void       AddParamTPCInt(const AliCheb3D* param);
  void       AddParamTPCRatInt(const AliCheb3D* param);
  void       AddParamDip(const AliCheb3D* param);
  void       BuildTable(Int_t npar,TObjArray *parArr, Int_t &nZSeg, Int_t &nYSeg, Int_t &nXSeg,
			Float_t &minZ,Float_t &maxZ,Float_t **segZ,Float_t **segY,Float_t **segX,
			Int_t **begSegY,Int_t **nSegY,Int_t **begSegX,Int_t **nSegX,Int_t **segID);
  void       BuildTableSol();
  void       BuildTableDip();
  void       BuildTableTPCInt();
  void       BuildTableTPCRatInt();
  void       ResetTPCInt();
  void       ResetTPCRatInt();
  void       ResetSol();
  void       ResetDip();
  //
  //
#endif
  //
 protected:
  void     FieldCylSol(const Double_t *rphiz, Double_t *b)    const;
  Double_t FieldCylSolBz(const Double_t *rphiz)               const;
  //
 protected:
  //
  Int_t      fNParamsSol;            // Total number of parameterization pieces for solenoid 
  Int_t      fNZSegSol;              // number of distinct Z segments in Solenoid
  Int_t      fNPSegSol;              // number of distinct P segments in Solenoid
  Int_t      fNRSegSol;              // number of distinct R segments in Solenoid
  Float_t*   fSegZSol;               //[fNZSegSol] coordinates of distinct Z segments in Solenoid
  Float_t*   fSegPSol;               //[fNPSegSol] coordinated of P segments for each Zsegment in Solenoid
  Float_t*   fSegRSol;               //[fNRSegSol] coordinated of R segments for each Psegment in Solenoid
  Int_t*     fBegSegPSol;            //[fNPSegSol] beginning of P segments array for each Z segment
  Int_t*     fNSegPSol;              //[fNZSegSol] number of P segments for each Z segment
  Int_t*     fBegSegRSol;            //[fNPSegSol] beginning of R segments array for each P segment
  Int_t*     fNSegRSol;              //[fNPSegSol] number of R segments for each P segment
  Int_t*     fSegIDSol;              //[fNRSegSol] ID of the solenoid parameterization for given RPZ segment
  Float_t    fMinZSol;               // Min Z of Solenoid parameterization
  Float_t    fMaxZSol;               // Max Z of Solenoid parameterization
  TObjArray* fParamsSol;             // Parameterization pieces for Solenoid field
  Float_t    fMaxRSol;               // max raduis for Solenoid field
  //
  Int_t      fNParamsTPC;            // Total number of parameterization pieces for TPCint 
  Int_t      fNZSegTPC;              // number of distinct Z segments in TPCint
  Int_t      fNPSegTPC;              // number of distinct P segments in TPCint
  Int_t      fNRSegTPC;              // number of distinct R segments in TPCint
  Float_t*   fSegZTPC;               //[fNZSegTPC] coordinates of distinct Z segments in TPCint
  Float_t*   fSegPTPC;               //[fNPSegTPC] coordinated of P segments for each Zsegment in TPCint
  Float_t*   fSegRTPC;               //[fNRSegTPC] coordinated of R segments for each Psegment in TPCint
  Int_t*     fBegSegPTPC;            //[fNPSegTPC] beginning of P segments array for each Z segment
  Int_t*     fNSegPTPC;              //[fNZSegTPC] number of P segments for each Z segment
  Int_t*     fBegSegRTPC;            //[fNPSegTPC] beginning of R segments array for each P segment
  Int_t*     fNSegRTPC;              //[fNPSegTPC] number of R segments for each P segment
  Int_t*     fSegIDTPC;              //[fNRSegTPC] ID of the TPCint parameterization for given RPZ segment
  Float_t    fMinZTPC;               // Min Z of TPCint parameterization
  Float_t    fMaxZTPC;               // Max Z of TPCint parameterization
  TObjArray* fParamsTPC;             // Parameterization pieces for TPCint field
  Float_t    fMaxRTPC;               // max raduis for Solenoid field integral in TPC
  //
  Int_t      fNParamsTPCRat;         // Total number of parameterization pieces for tr.field to Bz integrals in TPC region 
  Int_t      fNZSegTPCRat;           // number of distinct Z segments in TpcRatInt
  Int_t      fNPSegTPCRat;           // number of distinct P segments in TpcRatInt
  Int_t      fNRSegTPCRat;           // number of distinct R segments in TpcRatInt
  Float_t*   fSegZTPCRat;            //[fNZSegTPCRat] coordinates of distinct Z segments in TpcRatInt
  Float_t*   fSegPTPCRat;            //[fNPSegTPCRat] coordinated of P segments for each Zsegment in TpcRatInt
  Float_t*   fSegRTPCRat;            //[fNRSegTPCRat] coordinated of R segments for each Psegment in TpcRatInt
  Int_t*     fBegSegPTPCRat;         //[fNPSegTPCRat] beginning of P segments array for each Z segment
  Int_t*     fNSegPTPCRat;           //[fNZSegTPCRat] number of P segments for each Z segment
  Int_t*     fBegSegRTPCRat;         //[fNPSegTPCRat] beginning of R segments array for each P segment
  Int_t*     fNSegRTPCRat;           //[fNPSegTPCRat] number of R segments for each P segment
  Int_t*     fSegIDTPCRat;           //[fNRSegTPCRat] ID of the TpcRatInt parameterization for given RPZ segment
  Float_t    fMinZTPCRat;            // Min Z of TpcRatInt parameterization
  Float_t    fMaxZTPCRat;            // Max Z of TpcRatInt parameterization
  TObjArray* fParamsTPCRat;          // Parameterization pieces for TpcRatInt field
  Float_t    fMaxRTPCRat;            // max raduis for Solenoid field ratios integral in TPC 
  //
  Int_t      fNParamsDip;            // Total number of parameterization pieces for dipole 
  Int_t      fNZSegDip;              // number of distinct Z segments in Dipole
  Int_t      fNYSegDip;              // number of distinct Y segments in Dipole
  Int_t      fNXSegDip;              // number of distinct X segments in Dipole
  Float_t*   fSegZDip;               //[fNZSegDip] coordinates of distinct Z segments in Dipole
  Float_t*   fSegYDip;               //[fNYSegDip] coordinated of Y segments for each Zsegment in Dipole
  Float_t*   fSegXDip;               //[fNXSegDip] coordinated of X segments for each Ysegment in Dipole
  Int_t*     fBegSegYDip;            //[fNZSegDip] beginning of Y segments array for each Z segment
  Int_t*     fNSegYDip;              //[fNZSegDip] number of Y segments for each Z segment
  Int_t*     fBegSegXDip;            //[fNYSegDip] beginning of X segments array for each Y segment
  Int_t*     fNSegXDip;              //[fNYSegDip] number of X segments for each Y segment
  Int_t*     fSegIDDip;              //[fNXSegDip] ID of the dipole parameterization for given XYZ segment
  Float_t    fMinZDip;               // Min Z of Dipole parameterization
  Float_t    fMaxZDip;               // Max Z of Dipole parameterization
  TObjArray* fParamsDip;             // Parameterization pieces for Dipole field
  //
#ifdef _MAGCHEB_CACHE_
  mutable AliCheb3D* fCacheSol;              //! last used solenoid patch
  mutable AliCheb3D* fCacheDip;              //! last used dipole patch
  mutable AliCheb3D* fCacheTPCInt;           //! last used patch for TPC integral
  mutable AliCheb3D* fCacheTPCRat;           //! last used patch for TPC normalized integral
#endif 
  //
  ClassDef(AliMagWrapCheb,8)         // Wrapper class for the set of Chebishev parameterizations of Alice mag.field
  //
 };


//__________________________________________________________________________________________
inline void AliMagWrapCheb::FieldCyl(const Double_t *rphiz, Double_t *b) const
{
  // compute field in Cylindircal coordinates
  //  if (rphiz[2]<GetMinZSol() || rphiz[2]>GetMaxZSol() || rphiz[0]>GetMaxRSol()) {for (int i=3;i--;) b[i]=0; return;}
  b[0] = b[1] = b[2] = 0;
  FieldCylSol(rphiz,b);
}

//__________________________________________________________________________________________________
inline void AliMagWrapCheb::CylToCartCylB(const Double_t *rphiz, const Double_t *brphiz,Double_t *bxyz)
{
  // convert field in cylindrical coordinates to cartesian system, point is in cyl.system
  Double_t btr = TMath::Sqrt(brphiz[0]*brphiz[0]+brphiz[1]*brphiz[1]);
  Double_t psiPLUSphi = TMath::ATan2(brphiz[1],brphiz[0]) + rphiz[1];
  bxyz[0] = btr*TMath::Cos(psiPLUSphi);
  bxyz[1] = btr*TMath::Sin(psiPLUSphi);
  bxyz[2] = brphiz[2];
  //
}

//__________________________________________________________________________________________________
inline void AliMagWrapCheb::CylToCartCartB(const Double_t* xyz, const Double_t *brphiz, Double_t *bxyz)
{
  // convert field in cylindrical coordinates to cartesian system, point is in cart.system
  Double_t btr = TMath::Sqrt(brphiz[0]*brphiz[0]+brphiz[1]*brphiz[1]);
  Double_t phiPLUSpsi = TMath::ATan2(xyz[1],xyz[0]) +  TMath::ATan2(brphiz[1],brphiz[0]);
  bxyz[0] = btr*TMath::Cos(phiPLUSpsi);
  bxyz[1] = btr*TMath::Sin(phiPLUSpsi);
  bxyz[2] = brphiz[2];
  //
}

//__________________________________________________________________________________________________
inline void AliMagWrapCheb::CartToCylCartB(const Double_t *xyz, const Double_t *bxyz, Double_t *brphiz)
{
  // convert field in cylindrical coordinates to cartesian system, poin is in cart.system
  Double_t btr = TMath::Sqrt(bxyz[0]*bxyz[0]+bxyz[1]*bxyz[1]);
  Double_t psiMINphi = TMath::ATan2(bxyz[1],bxyz[0]) - TMath::ATan2(xyz[1],xyz[0]);
  //
  brphiz[0] = btr*TMath::Cos(psiMINphi);
  brphiz[1] = btr*TMath::Sin(psiMINphi);
  brphiz[2] = bxyz[2];
  //
}

//__________________________________________________________________________________________________
inline void AliMagWrapCheb::CartToCylCylB(const Double_t *rphiz, const Double_t *bxyz, Double_t *brphiz)
{
  // convert field in cylindrical coordinates to cartesian system, point is in cyl.system
  Double_t btr = TMath::Sqrt(bxyz[0]*bxyz[0]+bxyz[1]*bxyz[1]);
  Double_t psiMINphi =  TMath::ATan2(bxyz[1],bxyz[0]) - rphiz[1];
  brphiz[0] = btr*TMath::Cos(psiMINphi);
  brphiz[1] = btr*TMath::Sin(psiMINphi);
  brphiz[2] = bxyz[2];
  //
}

//__________________________________________________________________________________________________
inline void AliMagWrapCheb::CartToCyl(const Double_t *xyz, Double_t *rphiz)
{
  rphiz[0] = TMath::Sqrt(xyz[0]*xyz[0]+xyz[1]*xyz[1]);
  rphiz[1] = TMath::ATan2(xyz[1],xyz[0]);
  rphiz[2] = xyz[2];
}

//__________________________________________________________________________________________________
inline void AliMagWrapCheb::CylToCart(const Double_t *rphiz, Double_t *xyz)
{
  xyz[0] = rphiz[0]*TMath::Cos(rphiz[1]);
  xyz[1] = rphiz[0]*TMath::Sin(rphiz[1]);
  xyz[2] = rphiz[2];
}

#endif
 AliMagWrapCheb.h:1
 AliMagWrapCheb.h:2
 AliMagWrapCheb.h:3
 AliMagWrapCheb.h:4
 AliMagWrapCheb.h:5
 AliMagWrapCheb.h:6
 AliMagWrapCheb.h:7
 AliMagWrapCheb.h:8
 AliMagWrapCheb.h:9
 AliMagWrapCheb.h:10
 AliMagWrapCheb.h:11
 AliMagWrapCheb.h:12
 AliMagWrapCheb.h:13
 AliMagWrapCheb.h:14
 AliMagWrapCheb.h:15
 AliMagWrapCheb.h:16
 AliMagWrapCheb.h:17
 AliMagWrapCheb.h:18
 AliMagWrapCheb.h:19
 AliMagWrapCheb.h:20
 AliMagWrapCheb.h:21
 AliMagWrapCheb.h:22
 AliMagWrapCheb.h:23
 AliMagWrapCheb.h:24
 AliMagWrapCheb.h:25
 AliMagWrapCheb.h:26
 AliMagWrapCheb.h:27
 AliMagWrapCheb.h:28
 AliMagWrapCheb.h:29
 AliMagWrapCheb.h:30
 AliMagWrapCheb.h:31
 AliMagWrapCheb.h:32
 AliMagWrapCheb.h:33
 AliMagWrapCheb.h:34
 AliMagWrapCheb.h:35
 AliMagWrapCheb.h:36
 AliMagWrapCheb.h:37
 AliMagWrapCheb.h:38
 AliMagWrapCheb.h:39
 AliMagWrapCheb.h:40
 AliMagWrapCheb.h:41
 AliMagWrapCheb.h:42
 AliMagWrapCheb.h:43
 AliMagWrapCheb.h:44
 AliMagWrapCheb.h:45
 AliMagWrapCheb.h:46
 AliMagWrapCheb.h:47
 AliMagWrapCheb.h:48
 AliMagWrapCheb.h:49
 AliMagWrapCheb.h:50
 AliMagWrapCheb.h:51
 AliMagWrapCheb.h:52
 AliMagWrapCheb.h:53
 AliMagWrapCheb.h:54
 AliMagWrapCheb.h:55
 AliMagWrapCheb.h:56
 AliMagWrapCheb.h:57
 AliMagWrapCheb.h:58
 AliMagWrapCheb.h:59
 AliMagWrapCheb.h:60
 AliMagWrapCheb.h:61
 AliMagWrapCheb.h:62
 AliMagWrapCheb.h:63
 AliMagWrapCheb.h:64
 AliMagWrapCheb.h:65
 AliMagWrapCheb.h:66
 AliMagWrapCheb.h:67
 AliMagWrapCheb.h:68
 AliMagWrapCheb.h:69
 AliMagWrapCheb.h:70
 AliMagWrapCheb.h:71
 AliMagWrapCheb.h:72
 AliMagWrapCheb.h:73
 AliMagWrapCheb.h:74
 AliMagWrapCheb.h:75
 AliMagWrapCheb.h:76
 AliMagWrapCheb.h:77
 AliMagWrapCheb.h:78
 AliMagWrapCheb.h:79
 AliMagWrapCheb.h:80
 AliMagWrapCheb.h:81
 AliMagWrapCheb.h:82
 AliMagWrapCheb.h:83
 AliMagWrapCheb.h:84
 AliMagWrapCheb.h:85
 AliMagWrapCheb.h:86
 AliMagWrapCheb.h:87
 AliMagWrapCheb.h:88
 AliMagWrapCheb.h:89
 AliMagWrapCheb.h:90
 AliMagWrapCheb.h:91
 AliMagWrapCheb.h:92
 AliMagWrapCheb.h:93
 AliMagWrapCheb.h:94
 AliMagWrapCheb.h:95
 AliMagWrapCheb.h:96
 AliMagWrapCheb.h:97
 AliMagWrapCheb.h:98
 AliMagWrapCheb.h:99
 AliMagWrapCheb.h:100
 AliMagWrapCheb.h:101
 AliMagWrapCheb.h:102
 AliMagWrapCheb.h:103
 AliMagWrapCheb.h:104
 AliMagWrapCheb.h:105
 AliMagWrapCheb.h:106
 AliMagWrapCheb.h:107
 AliMagWrapCheb.h:108
 AliMagWrapCheb.h:109
 AliMagWrapCheb.h:110
 AliMagWrapCheb.h:111
 AliMagWrapCheb.h:112
 AliMagWrapCheb.h:113
 AliMagWrapCheb.h:114
 AliMagWrapCheb.h:115
 AliMagWrapCheb.h:116
 AliMagWrapCheb.h:117
 AliMagWrapCheb.h:118
 AliMagWrapCheb.h:119
 AliMagWrapCheb.h:120
 AliMagWrapCheb.h:121
 AliMagWrapCheb.h:122
 AliMagWrapCheb.h:123
 AliMagWrapCheb.h:124
 AliMagWrapCheb.h:125
 AliMagWrapCheb.h:126
 AliMagWrapCheb.h:127
 AliMagWrapCheb.h:128
 AliMagWrapCheb.h:129
 AliMagWrapCheb.h:130
 AliMagWrapCheb.h:131
 AliMagWrapCheb.h:132
 AliMagWrapCheb.h:133
 AliMagWrapCheb.h:134
 AliMagWrapCheb.h:135
 AliMagWrapCheb.h:136
 AliMagWrapCheb.h:137
 AliMagWrapCheb.h:138
 AliMagWrapCheb.h:139
 AliMagWrapCheb.h:140
 AliMagWrapCheb.h:141
 AliMagWrapCheb.h:142
 AliMagWrapCheb.h:143
 AliMagWrapCheb.h:144
 AliMagWrapCheb.h:145
 AliMagWrapCheb.h:146
 AliMagWrapCheb.h:147
 AliMagWrapCheb.h:148
 AliMagWrapCheb.h:149
 AliMagWrapCheb.h:150
 AliMagWrapCheb.h:151
 AliMagWrapCheb.h:152
 AliMagWrapCheb.h:153
 AliMagWrapCheb.h:154
 AliMagWrapCheb.h:155
 AliMagWrapCheb.h:156
 AliMagWrapCheb.h:157
 AliMagWrapCheb.h:158
 AliMagWrapCheb.h:159
 AliMagWrapCheb.h:160
 AliMagWrapCheb.h:161
 AliMagWrapCheb.h:162
 AliMagWrapCheb.h:163
 AliMagWrapCheb.h:164
 AliMagWrapCheb.h:165
 AliMagWrapCheb.h:166
 AliMagWrapCheb.h:167
 AliMagWrapCheb.h:168
 AliMagWrapCheb.h:169
 AliMagWrapCheb.h:170
 AliMagWrapCheb.h:171
 AliMagWrapCheb.h:172
 AliMagWrapCheb.h:173
 AliMagWrapCheb.h:174
 AliMagWrapCheb.h:175
 AliMagWrapCheb.h:176
 AliMagWrapCheb.h:177
 AliMagWrapCheb.h:178
 AliMagWrapCheb.h:179
 AliMagWrapCheb.h:180
 AliMagWrapCheb.h:181
 AliMagWrapCheb.h:182
 AliMagWrapCheb.h:183
 AliMagWrapCheb.h:184
 AliMagWrapCheb.h:185
 AliMagWrapCheb.h:186
 AliMagWrapCheb.h:187
 AliMagWrapCheb.h:188
 AliMagWrapCheb.h:189
 AliMagWrapCheb.h:190
 AliMagWrapCheb.h:191
 AliMagWrapCheb.h:192
 AliMagWrapCheb.h:193
 AliMagWrapCheb.h:194
 AliMagWrapCheb.h:195
 AliMagWrapCheb.h:196
 AliMagWrapCheb.h:197
 AliMagWrapCheb.h:198
 AliMagWrapCheb.h:199
 AliMagWrapCheb.h:200
 AliMagWrapCheb.h:201
 AliMagWrapCheb.h:202
 AliMagWrapCheb.h:203
 AliMagWrapCheb.h:204
 AliMagWrapCheb.h:205
 AliMagWrapCheb.h:206
 AliMagWrapCheb.h:207
 AliMagWrapCheb.h:208
 AliMagWrapCheb.h:209
 AliMagWrapCheb.h:210
 AliMagWrapCheb.h:211
 AliMagWrapCheb.h:212
 AliMagWrapCheb.h:213
 AliMagWrapCheb.h:214
 AliMagWrapCheb.h:215
 AliMagWrapCheb.h:216
 AliMagWrapCheb.h:217
 AliMagWrapCheb.h:218
 AliMagWrapCheb.h:219
 AliMagWrapCheb.h:220
 AliMagWrapCheb.h:221
 AliMagWrapCheb.h:222
 AliMagWrapCheb.h:223
 AliMagWrapCheb.h:224
 AliMagWrapCheb.h:225
 AliMagWrapCheb.h:226
 AliMagWrapCheb.h:227
 AliMagWrapCheb.h:228
 AliMagWrapCheb.h:229
 AliMagWrapCheb.h:230
 AliMagWrapCheb.h:231
 AliMagWrapCheb.h:232
 AliMagWrapCheb.h:233
 AliMagWrapCheb.h:234
 AliMagWrapCheb.h:235
 AliMagWrapCheb.h:236
 AliMagWrapCheb.h:237
 AliMagWrapCheb.h:238
 AliMagWrapCheb.h:239
 AliMagWrapCheb.h:240
 AliMagWrapCheb.h:241
 AliMagWrapCheb.h:242
 AliMagWrapCheb.h:243
 AliMagWrapCheb.h:244
 AliMagWrapCheb.h:245
 AliMagWrapCheb.h:246
 AliMagWrapCheb.h:247
 AliMagWrapCheb.h:248
 AliMagWrapCheb.h:249
 AliMagWrapCheb.h:250
 AliMagWrapCheb.h:251
 AliMagWrapCheb.h:252
 AliMagWrapCheb.h:253
 AliMagWrapCheb.h:254
 AliMagWrapCheb.h:255
 AliMagWrapCheb.h:256
 AliMagWrapCheb.h:257
 AliMagWrapCheb.h:258
 AliMagWrapCheb.h:259
 AliMagWrapCheb.h:260
 AliMagWrapCheb.h:261
 AliMagWrapCheb.h:262
 AliMagWrapCheb.h:263
 AliMagWrapCheb.h:264
 AliMagWrapCheb.h:265
 AliMagWrapCheb.h:266
 AliMagWrapCheb.h:267
 AliMagWrapCheb.h:268
 AliMagWrapCheb.h:269
 AliMagWrapCheb.h:270
 AliMagWrapCheb.h:271
 AliMagWrapCheb.h:272
 AliMagWrapCheb.h:273
 AliMagWrapCheb.h:274
 AliMagWrapCheb.h:275
 AliMagWrapCheb.h:276
 AliMagWrapCheb.h:277
 AliMagWrapCheb.h:278
 AliMagWrapCheb.h:279
 AliMagWrapCheb.h:280
 AliMagWrapCheb.h:281
 AliMagWrapCheb.h:282
 AliMagWrapCheb.h:283
 AliMagWrapCheb.h:284
 AliMagWrapCheb.h:285
 AliMagWrapCheb.h:286
 AliMagWrapCheb.h:287
 AliMagWrapCheb.h:288
 AliMagWrapCheb.h:289
 AliMagWrapCheb.h:290
 AliMagWrapCheb.h:291
 AliMagWrapCheb.h:292
 AliMagWrapCheb.h:293
 AliMagWrapCheb.h:294
 AliMagWrapCheb.h:295
 AliMagWrapCheb.h:296
 AliMagWrapCheb.h:297
 AliMagWrapCheb.h:298
 AliMagWrapCheb.h:299
 AliMagWrapCheb.h:300
 AliMagWrapCheb.h:301
 AliMagWrapCheb.h:302
 AliMagWrapCheb.h:303
 AliMagWrapCheb.h:304
 AliMagWrapCheb.h:305
 AliMagWrapCheb.h:306
 AliMagWrapCheb.h:307
 AliMagWrapCheb.h:308
 AliMagWrapCheb.h:309