]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSsegmentationSPD.h
Activate delta-electrons for RICH
[u/mrichter/AliRoot.git] / ITS / AliITSsegmentationSPD.h
1 #ifndef ALIITSSEGMENTATIONSPD_H
2 #define ALIITSSEGMENTATIONSPD_H
3
4 #include "AliITSsegmentation.h"
5
6 #include <TF1.h>
7
8 class AliITSgeom;
9
10 // segmentation and response for SPD 
11
12 class AliITSsegmentationSPD :
13 public AliITSsegmentation {
14  public:
15
16     AliITSsegmentationSPD();
17     AliITSsegmentationSPD(AliITSgeom *gm);
18     AliITSsegmentationSPD(AliITSsegmentationSPD &source);
19     virtual ~AliITSsegmentationSPD(){}
20     AliITSsegmentationSPD& operator=(AliITSsegmentationSPD &source);
21
22     // Set Detector Segmentation Parameters
23     //
24     // Detector size along x,z,y coordinates  
25     virtual void    SetDetSize(Float_t Dx, Float_t Dz, Float_t Dy);
26
27     // Maximum number of pixels along the two coordinates  
28     virtual void    SetNPads(Int_t p1, Int_t p2);
29
30     // Transform from real to pixel coordinates
31     virtual void    GetPadIxz
32          (Float_t x,Float_t z,Int_t &ix,Int_t &iz);
33     // Transform from pixel to real coordinates
34     virtual void    GetPadCxz
35          (Int_t ix,Int_t iz,Float_t &x,Float_t &z);
36     // Transform from real global to local coordinates
37     virtual void    GetLocal(Int_t module,Float_t *g ,Float_t *l) {}
38     // Transform from real local to global coordinates
39     virtual void    GetGlobal(Int_t module,Float_t *l ,Float_t *g) {}
40     // Local transformation of real local coordinates -
41     virtual void    GetPadTxz(Float_t &x ,Float_t &z);
42     //
43     // Initialisation
44     virtual void Init();
45     virtual void Init300();
46     //
47     // Get member data
48     //
49     // Detector Type geometry
50     virtual AliITSgeom* Geometry() {return fGeom;}
51     // Detector length
52     virtual Float_t Dx() {return fDx;}
53     // Detector width
54     virtual Float_t Dz() {return fDz;}
55     // Detector thickness
56     virtual Float_t Dy() {return fDy;}
57     // Pixel size in x
58     virtual Float_t Dpx(Int_t ix);
59     // Pixel size in z 
60     virtual Float_t Dpz(Int_t iz);
61
62     // Maximum number of Pixels in x
63     virtual Int_t    Npx() {return fNpx;}
64     // Maximum number of Pixels in z
65     virtual Int_t    Npz(){return fNpz;}
66     //
67     // Get next neighbours 
68     virtual void Neighbours
69        (Int_t iX,Int_t iZ,Int_t* Nlist,Int_t Xlist[10],Int_t Zlist[10]);
70
71   protected:
72
73     Int_t   fNpx;           // Number of pixels in x
74     Int_t   fNpz;           // Number of pixels in z
75     Float_t fDx;            // Full width of the detector (x axis)- microns
76     Float_t fDz;            // Full length of the detector (z axis)- microns
77     Float_t fDy;            // Full thickness of the detector (y axis) -um 
78     Float_t fCellSizeX[256];// Size for each pixel in x -microns
79     Float_t fCellSizeZ[280];// Size for each pixel in z -microns
80     TF1*    fCorr;          // correction function
81     AliITSgeom *fGeom;      //! local pointer to AliITSgeom.
82
83   ClassDef(AliITSsegmentationSPD,1) //Segmentation class for SPD 
84
85 };
86
87 #endif