]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSsegmentationSDD.cxx
Release version of ITS code
[u/mrichter/AliRoot.git] / ITS / AliITSsegmentationSDD.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 #include <TMath.h>
17
18 #include "AliITSgeom.h"
19 #include "AliITSsegmentationSDD.h"
20 #include "AliITS.h"
21 #include "AliRun.h"
22
23 class AliITS;
24
25 ClassImp(AliITSsegmentationSDD)
26 //------------------------------
27 AliITSsegmentationSDD::AliITSsegmentationSDD(AliITSgeom* geom, AliITSresponse *resp){
28   // constructor
29    fGeom=geom;
30    fResponse=resp;
31    fCorr=0;
32    SetDetSize();
33    SetPadSize();
34    SetNPads();
35
36 }
37 //_____________________________________________________________________________
38 AliITSsegmentationSDD::AliITSsegmentationSDD(){
39   // standard constructor
40    fGeom=0;
41    fResponse=0;  
42    fCorr=0;
43    SetDetSize();
44    SetPadSize();
45    SetNPads();
46
47 }
48 //_____________________________________________________________________________
49 AliITSsegmentationSDD& AliITSsegmentationSDD::operator=(AliITSsegmentationSDD &source){
50   // Operator =
51   if(this==&source) return *this;
52   this->fNsamples = source.fNsamples;
53   this->fNanodes  = source.fNanodes;
54   this->fPitch    = source.fPitch;
55   this->fTimeStep = source.fTimeStep;
56   this->fDx       = source.fDx;
57   this->fDz       = source.fDz;
58   this->fDy       = source.fDy;
59   this->fCorr     = new TF1(*(source.fCorr));
60   this->fGeom     = source.fGeom; // Just copy the pointer
61   this->fResponse = source.fResponse; //Just copy the pointer
62   return *this;
63 }
64 //___________________________________________________________________________
65 AliITSsegmentationSDD::AliITSsegmentationSDD(AliITSsegmentationSDD &source){
66   // Copy constructor
67    *this = source;
68 }
69 //------------------------------
70 void AliITSsegmentationSDD::Init(){
71   // Standard initilisation routine
72
73    if(!fGeom) {
74         fGeom = ((AliITS*)gAlice->GetModule("ITS"))->GetITSgeom();
75    }
76    AliITSgeomSDD *gsdd = (AliITSgeomSDD *) (fGeom->GetShape(3,1,1));
77
78    const Float_t kconv=10000.;
79    fDz = 2.*kconv*gsdd->GetDz();
80    fDx = kconv*gsdd->GetDx();
81    fDy = 2.*kconv*gsdd->GetDy();
82 }
83
84 //------------------------------
85 void AliITSsegmentationSDD::
86 Neighbours(Int_t iX, Int_t iZ, Int_t* Nlist, Int_t Xlist[4], Int_t Zlist[4]){
87   // returns neighbers for use in Cluster Finder routines and the like
88
89     if(iX >= fNanodes) printf("iX > fNanodes %d %d\n",iX,fNanodes);
90     if(iZ >= fNsamples) printf("iZ > fNsamples %d %d\n",iZ,fNsamples);
91     *Nlist=4;
92     Xlist[0]=Xlist[1]=iX;
93     if(iX) Xlist[2]=iX-1;
94     else Xlist[2]=iX;
95     if (iX < fNanodes) Xlist[3]=iX+1;
96     else Xlist[3]=iX;
97     if(iZ) Zlist[0]=iZ-1;
98     else Zlist[0]=iZ;
99     if (iZ < fNsamples) Zlist[1]=iZ+1;
100     else Zlist[1]=iZ;
101     Zlist[2]=Zlist[3]=iZ;
102
103 }
104 //------------------------------
105 void AliITSsegmentationSDD::GetPadIxz(Float_t x,Float_t z,Int_t &timebin,Int_t &anode){
106 //  Returns cell coordinates (time sample,anode) for given real local coordinates (x,z)
107
108     // expects x, z in cm
109
110     const Float_t kconv=10000;  // cm->um
111
112     Float_t speed=fResponse->DriftSpeed();
113     Int_t na = fNanodes/2;
114     Float_t driftpath=fDx-TMath::Abs(kconv*x);
115     timebin=(Int_t)(driftpath/speed/fTimeStep);
116     anode=(Int_t)(kconv*z/fPitch) + na/2;
117     if (x > 0) anode += na;
118
119     timebin+=1;
120     anode+=1;
121
122 }
123
124 //------------------------------
125 void AliITSsegmentationSDD::GetPadCxz(Int_t timebin,Int_t anode,Float_t &x ,Float_t &z){
126     // Transform from cell to real local coordinates
127   
128     // returns x, z in cm
129
130     const Float_t kconv=10000;  // um->cm
131
132     Float_t speed=fResponse->DriftSpeed();
133     Int_t na = fNanodes/2;
134     Float_t driftpath=(timebin+1)*fTimeStep*speed;
135     if (anode >= na) x=(fDx-driftpath)/kconv;
136     else x = -(fDx-driftpath)/kconv;
137     if (anode >= na) anode-=na;
138     z=((anode+1)*fPitch-fDz/2)/kconv;
139
140 }
141
142 //------------------------------
143 void AliITSsegmentationSDD::GetPadTxz(Float_t &x,Float_t &z){
144     // Get anode and time bucket as floats - numbering from 0
145
146     // expects x, z in cm
147
148     const Float_t kconv=10000;  // cm->um
149
150     Float_t speed=fResponse->DriftSpeed();
151     Int_t na = fNanodes/2;
152     Float_t driftpath=fDx-TMath::Abs(kconv*x);
153     x=driftpath/speed/fTimeStep;
154     z=kconv*z/fPitch + (float)na/2;
155     if (x > 0) x += (float)na;
156
157 }
158 //------------------------------
159 void AliITSsegmentationSDD::GetLocal(Int_t module,Float_t *g ,Float_t *l){
160   // returns local coordinates from global
161     if(!fGeom) {
162         fGeom = ((AliITS*)gAlice->GetModule("ITS"))->GetITSgeom();
163     }
164     fGeom->GtoL(module,g,l);
165 }
166 //------------------------------
167 void AliITSsegmentationSDD::GetGlobal(Int_t module,Float_t *l ,Float_t *g){
168   // return global coordinates from local
169     if(!fGeom) {
170         fGeom = ((AliITS*)gAlice->GetModule("ITS"))->GetITSgeom();
171     }
172
173     fGeom->LtoG(module,l,g);
174
175 }