]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONSt345SlatSegmentation.h
New segmentation with switch between old and new (Ch. Finck)
[u/mrichter/AliRoot.git] / MUON / AliMUONSt345SlatSegmentation.h
1 #ifndef ALIMUONST345SLATSEGMENTATION_H
2 #define ALIMUONST345SLATSEGMENTATION_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id: */
7
8 //*********************************************************
9 //  Segmentation classes for slat modules          
10 //  This class works with local coordinates
11 //  of the slats via the class AliMUONGeometrySegmentation
12 //  This class contains the size of the slats and the
13 //  and the differents PCB densities. 
14 //*********************************************************
15
16 #include  "AliMUONVGeometryDESegmentation.h"
17
18 class TArrayF;
19 class TArrayI;
20
21 class AliMUONSt345SlatSegmentation : public AliMUONVGeometryDESegmentation 
22 {
23  public:
24     AliMUONSt345SlatSegmentation();
25     AliMUONSt345SlatSegmentation(Bool_t bending);
26     virtual ~AliMUONSt345SlatSegmentation();
27       
28     virtual Float_t  Distance2AndOffset(Int_t iX, Int_t iY, Float_t X, Float_t Y, Int_t * dummy);  // Distance between 1 pad and a position
29     virtual Float_t  Dpx() const {return fDpx;}  // Pad size in x   
30     virtual Float_t  Dpy() const {return fDpy;}  // Pad size in y   
31     virtual Float_t  Dpx(Int_t isec) const;       // Pad size in x by Sector
32     virtual Float_t  Dpy(Int_t isec) const;       // Pad size in y by Sector
33     virtual void     Draw(const char */*opt*/ = "") {}  // Not implemented
34     virtual void     FirstPad(Float_t xhit, Float_t yhit, Float_t dx, Float_t dy);  // Initialisation for pad iteration
35     virtual void     FirstPad(Float_t xhit, Float_t yhit, Float_t zhit, Float_t dx, Float_t dy);
36
37     virtual Bool_t   HasPad(Float_t /*x*/, Float_t /*y*/, Float_t /*z*/) { return true; }
38     virtual Bool_t   HasPad(Int_t /*ix*/, Int_t /*iy*/) { return true; }
39     virtual AliMUONGeometryDirection  GetDirection() { return kDirUndefined; } 
40
41     virtual Float_t  GetAnod(Float_t xhit) const;  // Anod wire coordinate closest to xhit
42     virtual void     GetPadI(Float_t x ,Float_t y ,Int_t   &ix,Int_t &iy);  // Transform from pad to real coordinates
43     virtual void     GetPadI(Float_t x, Float_t y , Float_t z, Int_t &ix, Int_t &iy);
44     virtual void     GetPadC(Int_t ix, Int_t iy, Float_t &x, Float_t &y);
45     virtual void     GetPadC(Int_t ix, Int_t iy, Float_t &x, Float_t &y, Float_t &z) {z=0; GetPadC(ix, iy, x , y);}
46  
47  
48     virtual void     IntegrationLimits(Float_t& x1, Float_t& x2, Float_t& y1, Float_t& y2); //Current integration limits
49     virtual Int_t    ISector()  {return fSector;} // Current Pad during Integration (current sector)
50     virtual Int_t    Ix() {return fIx;} // x-coordinate
51     virtual Int_t    Iy() {return fIy;} // y-coordinate
52   
53     virtual Int_t    MorePads();  // Condition
54  
55     virtual void     Neighbours(Int_t iX, Int_t iY, Int_t* Nlist, Int_t Xlist[10], Int_t Ylist[10]);  // Get next neighbours
56     virtual void     NextPad(); // Stepper
57     virtual Int_t    Npx() const {return fNpx;} // Maximum number of Pads in x
58     virtual Int_t    Npy() const {return fNpy;} // Maximum number of Pads in y
59
60     virtual void     SetDAnod(Float_t D) {fWireD = D;};  // Anod pitch
61     virtual Int_t    Sector(Int_t ix, Int_t iy);         // Calculate sector from pad coordinates
62     virtual void     SetHit(Float_t xhit, Float_t yhit); // Set hit position
63     virtual void     SetHit(Float_t xhit, Float_t yhit, Float_t zhit);
64     virtual void     SetId(Int_t id) {fId=id;}  // Setting detection element
65     virtual void     SetPad(Int_t ix, Int_t iy);         // Set pad position
66     virtual void     SetPadDivision(Int_t ndiv[4]);      // Set Slat Segmentation Parameters
67     virtual void     SetPadSize(Float_t p1, Float_t p2); // Pad size Dx*Dy 
68     virtual void     SetPcbBoards(Int_t n[4]);           // Set Segmentation Zones (PCB Boards)
69  
70     // The following function could be obsolet for this class, but they are pure virtual in AliSegmentation
71     virtual void     GetNParallelAndOffset(Int_t /*iX*/, Int_t /*iY*/, Int_t */*Nparallel*/, Int_t */*Offset*/) {};
72     virtual Int_t    SigGenCond(Float_t /*x*/, Float_t /*y*/, Float_t /*z*/){return 0;} ;  // Signal Generation Condition during Stepping
73     virtual void     SigGenInit(Float_t /*x*/, Float_t /*y*/, Float_t /*z*/){};  // Initialise signal gneration at coord (x,y,z)
74     virtual void     GiveTestPoints(Int_t &/*n*/, Float_t * /*x*/, Float_t */*y*/) const{};   // Test points for auto calibration
75     virtual void     SetCorrFunc(Int_t /*dum*/, TF1* /*func*/){}; // Function for systematic corrections, Set the correction function
76     virtual TF1*     CorrFunc(Int_t) const {return 0x0;} // Get the correction Function
77     virtual Int_t    Sector(Float_t /*x*/, Float_t /*y*/) {return 1;}
78
79     virtual void     Init(Int_t detectionElementId); // Initialisation
80     // Current integration limits
81
82  protected:
83
84     AliMUONSt345SlatSegmentation(const AliMUONSt345SlatSegmentation& rhs);
85     AliMUONSt345SlatSegmentation& operator=(const AliMUONSt345SlatSegmentation& rhs);
86     
87     //  Internal geometry of the slat 
88     Bool_t      fBending;        // 0: Bending or 1:Non Bending segmentation
89     Int_t       fId;             // Identifier of detection element
90     Int_t       fNsec;           // Number of density sectors (should be 4, if not not warranty about the output
91     TArrayI*    fNDiv;           // Densities (d1, d2, d3, d4). It should be (4, 4, 2, 1) which goes from beam to out-beam
92     TArrayF*    fDpxD;           // x pad width per density sector
93     TArrayF*    fDpyD;           // x pad width per density sector
94     Float_t     fDpx;            // x pad base width  
95     Float_t     fDpy;            // y pad base width
96     Int_t       fNpx;            // Number of pads in x
97     Int_t       fNpy;            // Number of pads in y
98     Float_t     fWireD;          // wire pitch
99     // 
100     Int_t       fSector;         // Current density sector
101     Float_t     fDxPCB;          // x-size of PCB board
102     Float_t     fDyPCB;          // y-size of PCB board
103     Int_t       fPcbBoards[4];   // number of PCB boards per density sector n1,n2,n3,n4 
104     // n1 PcbBoard with density d1, n2 PcbBoards with density d2, etc ....
105    
106     // Segmentation map
107     Int_t       fNpxS[10];       // Number of pads per sector in x
108     Int_t       fNpyS[10];       // Number of pads per sector in y    
109     Float_t     fCx[10];         // pad-sector contour x vs y      
110     Float_t     fCy;             // y offset      
111
112     // Current pad and wire during tracking (cursor at hit centre)
113     Float_t     fXhit;  // ! x-position of hit
114     Float_t     fYhit;  // ! y-position of hit
115
116     // Current pad and wire during tracking (cursor at hit centre)
117     Int_t       fIx;   // ! pad coord.  x 
118     Int_t       fIy;   // ! pad coord.  y 
119     Float_t     fX;    // ! real coord. x
120     Float_t     fY;    // ! real ccord. y
121     
122     // Chamber region consideres during disintegration   
123     Int_t       fIxmin; // ! lower left  x
124     Int_t       fIxmax; // ! lower left  y
125     Int_t       fIymin; // ! upper right x
126     Int_t       fIymax; // ! upper right y 
127
128     // Chamber region consideres during disintegration  (lower left and upper right corner)
129     Float_t     fXmin;           // lower left  x
130     Float_t     fXmax;           // lower left  y
131     Float_t     fYmin;           // upper right x
132     Float_t     fYmax;           // upper right y 
133
134     ClassDef(AliMUONSt345SlatSegmentation,1) 
135 };
136 #endif
137
138
139
140
141
142