]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HMPID/AliHMPIDParam.h
Code revisited after debugging. Optimization for functions in V3. Calculations of...
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDParam.h
CommitLineData
d3da6dc4 1#ifndef AliHMPIDParam_h
2#define AliHMPIDParam_h
3010c308 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
d3da6dc4 5
3010c308 6/* $Id$ */
7
8#include <TMath.h>
d3da6dc4 9#include <TNamed.h> //base class
10#include <TGeoManager.h> //Instance()
268f57b1 11#include <TGeoMatrix.h> //Instance()
d3da6dc4 12#include <TVector3.h> //Lors2Mars() Mars2Lors()
13
d3da6dc4 14// Class providing all the needed parametrised information
15// to construct the geometry, to define segmentation and to provide response model
16// In future will also provide all the staff needed for alignment and calibration
17
18class AliHMPIDParam :public TNamed
19{
20public:
21//ctor&dtor
606697a8 22 virtual ~AliHMPIDParam() {if (fgInstance){for(Int_t i=0;i<7;i++){delete fM[i];fM[i] = 0x0;};fgInstance=0;}}
1d6047fb 23
24 void Print(Option_t *opt="") const; //print current parametrization
25
d3da6dc4 26 static inline AliHMPIDParam* Instance(); //pointer to AliHMPIDParam singleton
58fc9564 27 static inline AliHMPIDParam* InstanceNoGeo(); //pointer to AliHMPIDParam singleton without geometry.root for MOOD, displays, ...
ae5a42aa 28//geo info
29 enum EChamberData{kMinCh=0,kMaxCh=6,kMinPc=0,kMaxPc=5}; //Segmenation
30 enum EPadxData{kPadPcX=80,kMinPx=0,kMaxPx=79,kMaxPcx=159}; //Segmentation structure along x
31 enum EPadyData{kPadPcY=48,kMinPy=0,kMaxPy=47,kMaxPcy=143}; //Segmentation structure along y
32
a8ff381e 33 static Float_t SizePadX ( ) {return fgCellX; } //pad size x, [cm]
34 static Float_t SizePadY ( ) {return fgCellY; } //pad size y, [cm]
ae5a42aa 35
a8ff381e 36 static Float_t SizePcX ( ) {return fgPcX; } // PC size x
37 static Float_t SizePcY ( ) {return fgPcY; } // PC size y
38 static Float_t MaxPcX (Int_t iPc ) {return fgkMaxPcX[iPc]; } // PC limits
39 static Float_t MaxPcY (Int_t iPc ) {return fgkMaxPcY[iPc]; } // PC limits
40 static Float_t MinPcX (Int_t iPc ) {return fgkMinPcX[iPc]; } // PC limits
41 static Float_t MinPcY (Int_t iPc ) {return fgkMinPcY[iPc]; } // PC limits
42 static Int_t Nsig ( ) {return fgSigmas; } //Getter n. sigmas for noise
43 static Float_t SizeAllX ( ) {return fgAllX; } //all PCs size x, [cm]
44 static Float_t SizeAllY ( ) {return fgAllY; } //all PCs size y, [cm]
ae5a42aa 45
f455af6e 46 static Float_t LorsX (Int_t pc,Int_t padx ) {return (padx +0.5)*SizePadX()+fgkMinPcX[pc]; } //center of the pad x, [cm]
a8ff381e 47 static Float_t LorsY (Int_t pc,Int_t pady ) {return (pady +0.5)*SizePadY()+fgkMinPcY[pc]; } //center of the pad y, [cm]
ae5a42aa 48
a8ff381e 49 inline static void Lors2Pad(Float_t x,Float_t y,Int_t &pc,Int_t &px,Int_t &py); //(x,y)->(pc,px,py)
ae5a42aa 50
a8ff381e 51 static Int_t Abs (Int_t ch,Int_t pc,Int_t x,Int_t y) {return ch*100000000+pc*1000000+x*1000+y; } //(ch,pc,padx,pady)-> abs pad
56c73976 52 static Int_t DDL2C (Int_t ddl ) {return ddl/2; } //ddl -> chamber
a8ff381e 53 static Int_t A2C (Int_t pad ) {return pad/100000000; } //abs pad -> chamber
54 static Int_t A2P (Int_t pad ) {return pad%100000000/1000000; } //abs pad -> pc
55 static Int_t A2X (Int_t pad ) {return pad%1000000/1000; } //abs pad -> pad X
56 static Int_t A2Y (Int_t pad ) {return pad%1000; } //abs pad -> pad Y
ae5a42aa 57
a8ff381e 58 static Bool_t IsOverTh (Float_t q ) {return q >= fgSigmas; } //is digit over threshold?
59
b38ac33a 60 Bool_t GetInstType ( )const{return fgInstanceType; } //return if the instance is from geom or ideal
a8ff381e 61
62 inline static Bool_t IsInDead(Float_t x,Float_t y ); //is the point in dead area?
7656d8ac 63 inline static Int_t InHVSector( Float_t y ); //find HV sector
f455af6e 64 static Int_t Radiator( Float_t y ) {if (InHVSector(y)<0) return -1; return InHVSector(y)/2;}
a8ff381e 65 static Bool_t IsInside (Float_t x,Float_t y,Float_t d=0) {return x>-d&&y>-d&&x<fgkMaxPcX[kMaxPc]+d&&y<fgkMaxPcY[kMaxPc]+d; } //is point inside chamber boundaries?
ae5a42aa 66
f455af6e 67 //For optical properties
68 static Double_t EPhotMin() {return 5.5;} //
69 static Double_t EPhotMax() {return 8.5;} //Photon energy range,[eV]
70 static Double_t NIdxRad(Double_t eV,Double_t temp) {return TMath::Sqrt(1+0.554*(1239.84/eV)*(1239.84/eV)/((1239.84/eV)*(1239.84/eV)-5769)-0.0005*(temp-20));}
71 static Double_t NIdxWin(Double_t eV) {return TMath::Sqrt(1+46.411/(10.666*10.666-eV*eV)+228.71/(18.125*18.125-eV*eV));}
72 static Double_t NMgF2Idx(Double_t eV) {return 1.7744 - 2.866e-3*(1239.842609/eV) + 5.5564e-6*(1239.842609/eV)*(1239.842609/eV);} // MgF2 idx of trasparency system
73 static Double_t NIdxGap(Double_t eV) {return 1+0.12489e-6/(2.62e-4 - eV*eV/1239.84/1239.84);}
74 static Double_t LAbsRad(Double_t eV) {return (eV<7.8)*(GausPar(eV,3.20491e16,-0.00917890,0.742402)+GausPar(eV,3035.37,4.81171,0.626309))+(eV>=7.8)*0.0001;}
75 static Double_t LAbsWin(Double_t eV) {return (eV<8.2)*(818.8638-301.0436*eV+36.89642*eV*eV-1.507555*eV*eV*eV)+(eV>=8.2)*0.0001;}//fit from DiMauro data 28.10.03
76 static Double_t LAbsGap(Double_t eV) {return (eV<7.75)*6512.399+(eV>=7.75)*3.90743e-2/(-1.655279e-1+6.307392e-2*eV-8.011441e-3*eV*eV+3.392126e-4*eV*eV*eV);}
77 static Double_t QEffCSI(Double_t eV) {return (eV>6.07267)*0.344811*(1-exp(-1.29730*(eV-6.07267)));}//fit from DiMauro data 28.10.03
78 static Double_t GausPar(Double_t x,Double_t a1,Double_t a2,Double_t a3) {return a1*TMath::Exp(-0.5*((x-a2)/a3)*((x-a2)/a3));}
79 inline static Double_t FindTemp(Double_t tLow,Double_t tUp,Double_t y); //find the temperature of the C6F14 in a given point with coord. y (in x is uniform)
80
81
82 Double_t GetEPhotMean ()const {return fPhotEMean;}
83 Double_t GetRefIdx ()const {return fRefIdx;} //running refractive index
84
85 Double_t MeanIdxRad ()const {return NIdxRad(fPhotEMean,fTemp);}
86 Double_t MeanIdxWin ()const {return NIdxWin(fPhotEMean);}
87 //
88 Float_t DistCut ()const {return 1.0;} //<--TEMPORAR--> to be removed in future. Cut for MIP-TRACK residual
89 Float_t QCut ()const {return 100;} //<--TEMPORAR--> to be removed in future. Separation PHOTON-MIP charge
90 Float_t MultCut ()const {return 200;} //<--TEMPORAR--> to be removed in future. Multiplicity cut to activate WEIGHT procedure
ae5a42aa 91
f455af6e 92 Double_t RadThick ()const {return 1.5;} //<--TEMPORAR--> to be removed in future. Radiator thickness
93 Double_t WinThick ()const {return 0.5;} //<--TEMPORAR--> to be removed in future. Window thickness
94 Double_t GapThick ()const {return 8.0;} //<--TEMPORAR--> to be removed in future. Proximity gap thickness
95 Double_t WinIdx ()const {return 1.5787;} //<--TEMPORAR--> to be removed in future. Mean refractive index of WIN material (SiO2)
96 Double_t GapIdx ()const {return 1.0005;} //<--TEMPORAR--> to be removed in future. Mean refractive index of GAP material (CH4)
ae5a42aa 97
d3da6dc4 98 static Int_t Stack(Int_t evt=-1,Int_t tid=-1); //Print stack info for event and tid
99 static Int_t StackCount(Int_t pid,Int_t evt); //Counts stack particles of given sort in given event
1d4857c5 100 static void IdealPosition(Int_t iCh,TGeoHMatrix *m); //ideal position of given chamber
101 //trasformation methodes
d3da6dc4 102 void Lors2Mars (Int_t c,Float_t x,Float_t y,Double_t *m,Int_t pl=kPc)const{Double_t z=0; switch(pl){case kPc:z=8.0;break; case kAnod:z=7.806;break; case kRad:z=-1.25; break;} Double_t l[3]={x-fX,y-fY,z}; fM[c]->LocalToMaster(l,m); }
103 TVector3 Lors2Mars (Int_t c,Float_t x,Float_t y, Int_t pl=kPc)const{Double_t m[3];Lors2Mars(c,x,y,m,pl); return TVector3(m); }//MRS->LRS
59d9d4b3 104 void Mars2Lors (Int_t c,Double_t *m,Float_t &x ,Float_t &y )const{Double_t l[3];fM[c]->MasterToLocal(m,l);x=l[0]+fX;y=l[1]+fY;}//MRS->LRS
86568433 105 void Mars2LorsVec(Int_t c,Double_t *m,Float_t &th,Float_t &ph )const{Double_t l[3]; fM[c]->MasterToLocalVect(m,l);
106 Float_t pt=TMath::Sqrt(l[0]*l[0]+l[1]*l[1]);
107 th=TMath::ATan(pt/l[2]);
108 ph=TMath::ATan2(l[1],l[0]);}
d3da6dc4 109 TVector3 Norm (Int_t c )const{Double_t n[3]; Norm(c,n); return TVector3(n); }//norm
110 void Norm (Int_t c,Double_t *n )const{Double_t l[3]={0,0,1};fM[c]->LocalToMasterVect(l,n); }//norm
f455af6e 111 void Point (Int_t c,Double_t *p,Int_t plane )const{Lors2Mars(c,0,0,p,plane);} //point of given chamber plane
58fc9564 112
f455af6e 113 void SetTemp (Double_t temp ) {fTemp = temp;} //set actual temperature of the C6F14
114 void SetEPhotMean (Double_t ePhotMean ) {fPhotEMean = ePhotMean;} //set mean photon energy
115
116 void SetRefIdx (Double_t refRadIdx ) {fRefIdx = refRadIdx;} //set running refractive index
117
b38ac33a 118 void SetSigmas (Int_t sigmas ) {fgSigmas = sigmas;} //set sigma cut
119 void SetInstanceType(Bool_t inst ) {fgInstanceType = inst;} //kTRUE if from geomatry kFALSE if from ideal geometry
3278403b 120 //For PID
121 Double_t SigLoc (Double_t trkTheta,Double_t trkPhi,Double_t ckovTh,Double_t ckovPh,Double_t beta);//error due to cathode segmetation
122 Double_t SigGeom (Double_t trkTheta,Double_t trkPhi,Double_t ckovTh,Double_t ckovPh,Double_t beta);//error due to unknown photon origin
123 Double_t SigCrom (Double_t trkTheta,Double_t trkPhi,Double_t ckovTh,Double_t ckovPh,Double_t beta);//error due to unknonw photon energy
124 Double_t Sigma2 (Double_t trkTheta,Double_t trkPhi,Double_t ckovTh,Double_t ckovPh );//photon candidate sigma^2
c770ceb9 125
126 //Mathieson Getters
a8ff381e 127
c770ceb9 128 static Double_t PitchAnodeCathode() {return fgkD;}
129 static Double_t SqrtK3x() {return fgkSqrtK3x;}
130 static Double_t K2x () {return fgkK2x;}
131 static Double_t K1x () {return fgkK1x;}
132 static Double_t K4x () {return fgkK4x;}
133 static Double_t SqrtK3y() {return fgkSqrtK3y;}
134 static Double_t K2y () {return fgkK2y;}
135 static Double_t K1y () {return fgkK1y;}
136 static Double_t K4y () {return fgkK4y;}
137 //
d3da6dc4 138 enum EPlaneId {kPc,kRad,kAnod}; //3 planes in chamber
a8ff381e 139 enum ETrackingFlags {kMipDistCut=-9,kMipQdcCut=-5,kNoPhotAccept=-11}; //flags for Reconstruction
ae5a42aa 140
d3da6dc4 141protected:
ae5a42aa 142 static /*const*/ Float_t fgkMinPcX[6]; //limits PC
143 static /*const*/ Float_t fgkMinPcY[6]; //limits PC
144 static /*const*/ Float_t fgkMaxPcX[6]; //limits PC
145 static /*const*/ Float_t fgkMaxPcY[6];
c770ceb9 146
147// Mathieson constants
148// For HMPID --> x direction means parallel to the wires: K3 = 0.66 (NIM A270 (1988) 602-603) fig.1
149// For HMPID --> y direction means perpendicular to the wires: K3 = 0.90 (NIM A270 (1988) 602-603) fig.2
150//
ae5a42aa 151
c770ceb9 152 static const Double_t fgkD; // ANODE-CATHODE distance 0.445/2
153
154 static const Double_t fgkSqrtK3x,fgkK2x,fgkK1x,fgkK4x;
155 static const Double_t fgkSqrtK3y,fgkK2y,fgkK1y,fgkK4y;
156//
157
b38ac33a 158 static Int_t fgSigmas; //sigma Cut
159 static Bool_t fgInstanceType; //kTRUE if from geomatry kFALSE if from ideal geometry
160
161 static Float_t fgCellX, fgCellY, fgPcX, fgPcY, fgAllX, fgAllY; //definition of HMPID geometric parameters
58fc9564 162 AliHMPIDParam(Bool_t noGeo); //default ctor is protected to enforce it to be singleton
ae5a42aa 163
d3da6dc4 164 static AliHMPIDParam *fgInstance; //static pointer to instance of AliHMPIDParam singleton
ae5a42aa 165
423554a3 166 TGeoHMatrix *fM[7]; //pointers to matrices defining HMPID chambers rotations-translations
167 Float_t fX; //x shift of LORS with respect to rotated MARS
f455af6e 168 Float_t fY; //y shift of LORS with respect to rotated MARS
169 Double_t fRefIdx; //running refractive index of C6F14
170 Double_t fPhotEMean; //mean energy of photon
171 Double_t fTemp; //actual temparature of C6F14
8f05fd11 172private:
173 AliHMPIDParam(const AliHMPIDParam& r); //dummy copy constructor
174 AliHMPIDParam &operator=(const AliHMPIDParam& r); //dummy assignment operator
175
f455af6e 176 ClassDef(AliHMPIDParam,1) //HMPID main parameters class
d3da6dc4 177};
cf7e313e 178
d3da6dc4 179//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
180AliHMPIDParam* AliHMPIDParam::Instance()
181{
182// Return pointer to the AliHMPIDParam singleton.
183// Arguments: none
184// Returns: pointer to the instance of AliHMPIDParam or 0 if no geometry
58fc9564 185 if(!fgInstance) new AliHMPIDParam(kFALSE); //default setting for reconstruction, if no geometry.root -> AliFatal
186 return fgInstance;
187}//Instance()
188//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
189AliHMPIDParam* AliHMPIDParam::InstanceNoGeo()
190{
191// Return pointer to the AliHMPIDParam singleton without the geometry.root.
192// Arguments: none
193// Returns: pointer to the instance of AliHMPIDParam or 0 if no geometry
194 if(!fgInstance) new AliHMPIDParam(kTRUE); //to avoid AliFatal, for MOOD and displays, use ideal geometry parameters
d3da6dc4 195 return fgInstance;
196}//Instance()
197//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
ae5a42aa 198Bool_t AliHMPIDParam::IsInDead(Float_t x,Float_t y)
199{
200// Check is the current point is outside of sensitive area or in dead zones
201// Arguments: x,y -position
202// Returns: 1 if not in sensitive zone
203 for(Int_t iPc=0;iPc<6;iPc++)
204 if(x>=fgkMinPcX[iPc] && x<=fgkMaxPcX[iPc] && y>=fgkMinPcY[iPc] && y<=fgkMaxPcY [iPc]) return kFALSE; //in current pc
205
206 return kTRUE;
207}
208//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
209void AliHMPIDParam::Lors2Pad(Float_t x,Float_t y,Int_t &pc,Int_t &px,Int_t &py)
210{
211// Check the pad of given position
212// Arguments: x,y- position [cm] in LORS; pc,px,py- pad where to store the result
213// Returns: none
214 pc=px=py=-1;
215 if (x>fgkMinPcX[0] && x<fgkMaxPcX[0]) {pc=0; px=Int_t( x / SizePadX());}//PC 0 or 2 or 4
216 else if(x>fgkMinPcX[1] && x<fgkMaxPcX[1]) {pc=1; px=Int_t((x-fgkMinPcX[1]) / SizePadX());}//PC 1 or 3 or 5
217 else return;
218 if (y>fgkMinPcY[0] && y<fgkMaxPcY[0]) { py=Int_t( y / SizePadY());}//PC 0 or 1
219 else if(y>fgkMinPcY[2] && y<fgkMaxPcY[2]) {pc+=2;py=Int_t((y-fgkMinPcY[2]) / SizePadY());}//PC 2 or 3
220 else if(y>fgkMinPcY[4] && y<fgkMaxPcY[4]) {pc+=4;py=Int_t((y-fgkMinPcY[4]) / SizePadY());}//PC 4 or 5
221 else return;
222}
49881df7 223//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
7656d8ac 224Int_t AliHMPIDParam::InHVSector(Float_t y)
49881df7 225{
7656d8ac 226//Calculate the HV sector corresponding to the cluster position
227//Arguments: y
228//Returns the HV sector in the single module
229
230 Int_t hvsec = -1;
231 Int_t pc,px,py;
232 Lors2Pad(1.,y,pc,px,py);
233 if(py==-1) return hvsec;
234
235 hvsec = (py+(pc/2)*(kMaxPy+1))/((kMaxPy+1)/2);
236
237 return hvsec;
49881df7 238}
239//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
f455af6e 240Double_t AliHMPIDParam::FindTemp(Double_t tLow,Double_t tHigh,Double_t y)
241{
242// Model for gradient in temperature
243
244// Double_t gradT = (t2-t1)/SizePcY(); // linear gradient
245// return gradT*y+t1;
246 Double_t halfPadSize = 0.5*SizePadY();
247 Double_t gradT = (TMath::Log(SizePcY()) - TMath::Log(halfPadSize))/(TMath::Log(tHigh)-TMath::Log(tLow));
248 return tLow*TMath::Power(y/halfPadSize,1./gradT);
249}
250//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
d3da6dc4 251#endif