]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSsegmentationSDD.cxx
warning fixed
[u/mrichter/AliRoot.git] / ITS / AliITSsegmentationSDD.cxx
CommitLineData
b0f5e3fc 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 **************************************************************************/
4ae5bbc4 15#include <Riostream.h>
b0f5e3fc 16#include <TMath.h>
c9649d1e 17#include <TGeoManager.h>
18#include <TGeoVolume.h>
19#include <TGeoBBox.h>
b0f5e3fc 20#include "AliITSsegmentationSDD.h"
253e68a0 21#include "AliITSDriftSpeedSDD.h"
f6b6d58e 22
23/////////////////////////////////////////////////////////////////////////////
24// Segmentation class for drift detectors //
25// //
26// microcables microcables //
27// /\ /\ //
28// || || //
29// || || //
30// || || //
31// 0 256 0 //
32// 0 |----------------------|---------------------| 511 //
33// | time-bins | time-bins | //
34// | a | a | //
35// | n | n | //
36// X <_|_o____________________|___________________o_|__ //
37// | d | d | //
38// | e LEFT SIDE | RIGHT SIDE e | //
39// | s CHANNEL 0 | CHANNEL 1 s | //
40// | Xlocal > 0 | Xlocal < 0 | //
41// 255 |----------------------|---------------------| 256 //
42// | //
43// | //
44// V //
45// Z //
46/////////////////////////////////////////////////////////////////////////////
55d2c544 47
c9649d1e 48/* $Id$ */
214b9c8f 49
55d2c544 50const Float_t AliITSsegmentationSDD::fgkDxDefault = 35085.;
51const Float_t AliITSsegmentationSDD::fgkDzDefault = 75264.;
52const Float_t AliITSsegmentationSDD::fgkDyDefault = 300.;
53const Float_t AliITSsegmentationSDD::fgkPitchDefault = 294.;
54const Float_t AliITSsegmentationSDD::fgkClockDefault = 40.;
55const Int_t AliITSsegmentationSDD::fgkHalfNanodesDefault = 256;
56const Int_t AliITSsegmentationSDD::fgkNsamplesDefault = 256;
d24bc9d6 57const Int_t AliITSsegmentationSDD::fgkNchipsPerHybrid = 4;
58const Int_t AliITSsegmentationSDD::fgkNanodesPerChip = 64;
f6b6d58e 59const Float_t AliITSsegmentationSDD::fgkCm2Micron = 10000.;
60const Float_t AliITSsegmentationSDD::fgkMicron2Cm = 1.0E-04;
b0f5e3fc 61ClassImp(AliITSsegmentationSDD)
fa4f0f62 62
2a4239d3 63//______________________________________________________________________
c9649d1e 64AliITSsegmentationSDD::AliITSsegmentationSDD(Option_t *opt) : AliITSsegmentation(),
e56160b8 65fNsamples(0),
66fNanodes(0),
67fPitch(0),
68fTimeStep(0),
4952f440 69fDriftSpeed(0),
70fSetDriftSpeed(0){
55d2c544 71 // Default constructor
d24bc9d6 72 Init();
c9649d1e 73 if(strstr(opt,"TGeo")){
74 if(!gGeoManager){
75 AliError("Geometry is not initialized\n");
76 return;
77 }
78 TGeoVolume *v=NULL;
79 v = gGeoManager->GetVolume("ITSsddSensitivL3");
80 if(!v){
81 AliWarning("TGeo volume ITSsddSensitivL3 not found (hint: use v11Hybrid geometry)\n Using hardwired default values");
82 }
83 else {
84 TGeoBBox *s=(TGeoBBox*)v->GetShape();
85 SetDetSize(s->GetDX()*10000.,s->GetDZ()*20000.,s->GetDY()*20000.);
86 }
87 }
55d2c544 88}
b0f5e3fc 89
55d2c544 90//______________________________________________________________________
91void AliITSsegmentationSDD::Copy(TObject &obj) const {
92 // protected method. copy this to obj
93 AliITSsegmentation::Copy(obj);
94 ((AliITSsegmentationSDD& ) obj).fNsamples = fNsamples;
95 ((AliITSsegmentationSDD& ) obj).fNanodes = fNanodes;
96 ((AliITSsegmentationSDD& ) obj).fPitch = fPitch;
97 ((AliITSsegmentationSDD& ) obj).fTimeStep = fTimeStep;
98 ((AliITSsegmentationSDD& ) obj).fDriftSpeed = fDriftSpeed;
4952f440 99 ((AliITSsegmentationSDD& ) obj).fSetDriftSpeed = fSetDriftSpeed;
b0f5e3fc 100}
55d2c544 101
102//______________________________________________________________________
103AliITSsegmentationSDD& AliITSsegmentationSDD::operator=(const AliITSsegmentationSDD &source){
104 // = operator
105 if(this==&source) return *this;
106 source.Copy(*this);
107 return *this;
108}
109
110//____________________________________________________________________________
111AliITSsegmentationSDD::AliITSsegmentationSDD(const AliITSsegmentationSDD &source) :
e56160b8 112 AliITSsegmentation(source),
113fNsamples(0),
114fNanodes(0),
115fPitch(0),
116fTimeStep(0),
4952f440 117fDriftSpeed(0),
118fSetDriftSpeed(0){
55d2c544 119 // copy constructor
120 source.Copy(*this);
121}
122
2a4239d3 123//----------------------------------------------------------------------
b0f5e3fc 124void AliITSsegmentationSDD::Init(){
d24bc9d6 125// Standard initilisation routine
253e68a0 126 fDriftSpeed=AliITSDriftSpeedSDD::DefaultDriftSpeed();
d24bc9d6 127 fCorr=0;
128 SetDetSize(fgkDxDefault,fgkDzDefault,fgkDyDefault);
129 SetPadSize(fgkPitchDefault,fgkClockDefault);
130 SetNPads(fgkHalfNanodesDefault,fgkNsamplesDefault);
131}
b0f5e3fc 132
2a4239d3 133//----------------------------------------------------------------------
b0f5e3fc 134void AliITSsegmentationSDD::
55d2c544 135Neighbours(Int_t iX, Int_t iZ, Int_t* Nlist, Int_t Xlist[8], Int_t Zlist[8]) const {
314ba410 136 // returns neighbours for use in Cluster Finder routines and the like
b0f5e3fc 137
e8189707 138 if(iX >= fNanodes) printf("iX > fNanodes %d %d\n",iX,fNanodes);
139 if(iZ >= fNsamples) printf("iZ > fNsamples %d %d\n",iZ,fNsamples);
b0f5e3fc 140 *Nlist=4;
141 Xlist[0]=Xlist[1]=iX;
314ba410 142 if(iX && (iX != fNanodes/2)) Xlist[2]=iX-1;
b0f5e3fc 143 else Xlist[2]=iX;
314ba410 144 if ((iX !=fNanodes/2 -1) && (iX != fNanodes)) Xlist[3]=iX+1;
b0f5e3fc 145 else Xlist[3]=iX;
146 if(iZ) Zlist[0]=iZ-1;
147 else Zlist[0]=iZ;
148 if (iZ < fNsamples) Zlist[1]=iZ+1;
149 else Zlist[1]=iZ;
150 Zlist[2]=Zlist[3]=iZ;
b0f5e3fc 151}
2a4239d3 152//----------------------------------------------------------------------
f6b6d58e 153Float_t AliITSsegmentationSDD::GetAnodeFromLocal(Float_t xloc,Float_t zloc) const {
154 // returns anode coordinate (as float) starting from local coordinates
155 Float_t xAnode=zloc*fgkCm2Micron/fPitch;
156 if(xloc>0){ // left side (anodes 0-255, anode 0 at zloc<0)
157 xAnode+=(Float_t)fNanodes/4;
158 }else{ // right side (anodes 256-511, anode 0 at zloc>0)
159 xAnode=3*fNanodes/4-xAnode;
160 }
161 return xAnode;
162}
163
164//----------------------------------------------------------------------
165Float_t AliITSsegmentationSDD::GetLocalZFromAnode(Int_t nAnode) const{
166 // returns local Z coordinate from anode number (integer)
167 Float_t zAnode=(Float_t)nAnode+0.5;
168 return GetLocalZFromAnode(zAnode);
169}
170
171//----------------------------------------------------------------------
172Float_t AliITSsegmentationSDD::GetLocalZFromAnode(Float_t zAnode) const{
173 // returns local Z coordinate from anode number (float)
174 Float_t zloc=0.;
175 if(zAnode<fNanodes/2){ // left side
176 zloc=(zAnode*fPitch-fDz/2)*fgkMicron2Cm;
177 }else{ // right side
178 zAnode-=fNanodes/2;
179 zloc=-(zAnode*fPitch-fDz/2)*fgkMicron2Cm;
180 }
181 return zloc;
182}
183//----------------------------------------------------------------------
d24bc9d6 184Int_t AliITSsegmentationSDD::GetChipFromChannel(Int_t ix, Int_t iz) const {
214b9c8f 185 // returns chip number (in range 0-7) starting from channel number
d24bc9d6 186 if(iz>=fNanodes || iz<0 || ix>fNsamples){
187 AliError("Bad cell number");
188 return -1;
189 }
190 Int_t theChip=iz/fgkNanodesPerChip;
191 return theChip;
192}
193//----------------------------------------------------------------------
194Int_t AliITSsegmentationSDD::GetChipFromLocal(Float_t xloc, Float_t zloc) const {
214b9c8f 195 // returns chip number (in range 0-7) starting from local coordinates
d24bc9d6 196 Float_t detsize=fDz*fgkMicron2Cm;
197 Float_t chipsize=detsize/(Float_t)fgkNchipsPerHybrid;
198 zloc+=detsize/2.;
199 if(zloc<-0.01 || zloc>detsize+0.01){ // 100 micron tolerance around edges
200 AliError("Z local value out of sensitive SDD area");
201 return -1;
202 }
203 Int_t iChip=int(zloc/chipsize);
204 if(zloc<0.) iChip=0;
205 if(zloc>=detsize) iChip=fgkNchipsPerHybrid-1;
206 if(iChip>=fgkNchipsPerHybrid || iChip<0){
207 AliError(Form("Bad chip number %d",iChip));
208 return -1;
209 }
210 Int_t iSide=GetSideFromLocalX(xloc);
211 if(iSide==1) iChip=fgkNchipsPerHybrid-iChip+3; // i.e. 7-iChip
212 return iChip;
213}
214//----------------------------------------------------------------------
23197852 215Int_t AliITSsegmentationSDD::GetChipsInLocalWindow(Int_t* array, Float_t zmin, Float_t zmax, Float_t xmin, Float_t xmax) const {
216 Int_t nChipInW = 0;
217 Float_t zminDet=-fDz*fgkMicron2Cm/2.;
218 Float_t zmaxDet=fDz*fgkMicron2Cm/2.;
219 if(zmin<zminDet) zmin=zminDet;
220 if(zmax>zmaxDet) zmax=zmaxDet;
221 Float_t xminDet=-fDx*fgkMicron2Cm;
222 Float_t xmaxDet=fDx*fgkMicron2Cm;
223 if(xmin<xminDet) xmin=xminDet;
224 if(xmax>xmaxDet) xmax=xmaxDet;
225 Int_t n1=GetChipFromLocal(xmin,zmin);
226 array[nChipInW]=n1;
227 nChipInW++;
228 Int_t n2=GetChipFromLocal(xmin,zmax);
229 if(n2!=n1){
230 Int_t imin=TMath::Min(n1,n2);
231 Int_t imax=TMath::Max(n1,n2);
232 for(Int_t ichip=imin; ichip<=imax; ichip++){
233 if(ichip==n1) continue;
234 array[nChipInW]=ichip;
235 nChipInW++;
236 }
237 }
238 Int_t n3=GetChipFromLocal(xmax,zmin);
239 if(n3!=n1){
240 array[nChipInW]=n3;
241 nChipInW++;
242 Int_t n4=GetChipFromLocal(xmax,zmax);
243 if(n4!=n3){
244 Int_t imin=TMath::Min(n3,n4);
245 Int_t imax=TMath::Max(n3,n4);
246 for(Int_t ichip=imin; ichip<=imax; ichip++){
247 if(ichip==n3) continue;
248 array[nChipInW]=ichip;
249 nChipInW++;
250 }
251 }
252 }
253 return nChipInW;
254}
255//----------------------------------------------------------------------
2a4239d3 256void AliITSsegmentationSDD::GetPadIxz(Float_t x,Float_t z,
55d2c544 257 Int_t &timebin,Int_t &anode) const {
f6b6d58e 258// Returns cell coordinates (time sample,anode)
03898a57 259// for given real local coordinates (x,z)
b0f5e3fc 260
f6b6d58e 261 // expects x, z in cm
b0f5e3fc 262
f6b6d58e 263 Float_t driftpath=fDx-TMath::Abs(x*fgkCm2Micron);
264 timebin=(Int_t)(driftpath/fDriftSpeed/fTimeStep);
265 anode=(Int_t)GetAnodeFromLocal(x,z);
266 if(!fSetDriftSpeed){
267 timebin=-999;
268 AliWarning("Drift speed not set: timebin is dummy");
269 }
b0f5e3fc 270
271}
2a4239d3 272//----------------------------------------------------------------------
273void AliITSsegmentationSDD::GetPadCxz(Int_t timebin,Int_t anode,
55d2c544 274 Float_t &x ,Float_t &z) const{
f6b6d58e 275 // Transform from cell to real local coordinates
276 // returns x, z in cm
b0f5e3fc 277
03898a57 278 // the +0.5 means that an # and time bin # should start from 0 !!!
03898a57 279 // the +0.5 means that an # and time bin # should start from 0 !!!
b0f5e3fc 280
f6b6d58e 281 Float_t driftpath=GetDriftTimeFromTb(timebin)*fDriftSpeed;
282 if (anode < fNanodes/2){ // left side, positive x
283 x=(fDx-driftpath)*fgkMicron2Cm;
284 }else{ // right side, negative x
285 x = -(fDx-driftpath)*fgkMicron2Cm;
286 }
287 z=GetLocalZFromAnode(anode);
288 if(!fSetDriftSpeed){
289 x=-9999.;
290 AliWarning("Drift speed not set: x coord. is dummy");
291 }
b0f5e3fc 292}
2a4239d3 293//----------------------------------------------------------------------
55d2c544 294void AliITSsegmentationSDD::GetPadTxz(Float_t &x,Float_t &z) const{
e8189707 295 // Get anode and time bucket as floats - numbering from 0
296
297 // expects x, z in cm
298
f6b6d58e 299 Float_t xloc=x;
300 Float_t zloc=z;
301 Float_t driftpath=fDx-TMath::Abs(fgkCm2Micron*xloc);
03898a57 302 x=driftpath/fDriftSpeed/fTimeStep;
f6b6d58e 303 if (xloc < 0) x = -x;
304 z=GetAnodeFromLocal(xloc,zloc);
4952f440 305 if(!fSetDriftSpeed){
306 x=-9999.;
f6b6d58e 307 AliWarning("Drift speed not set: x coord. is dummy");
b0f5e3fc 308 }
b0f5e3fc 309}
f5d698b9 310//----------------------------------------------------------------------
db93954b 311void AliITSsegmentationSDD::Print(Option_t *opt) const {
f5d698b9 312 // Print SDD segmentation Parameters
313
314 cout << "**************************************************" << endl;
ac74f489 315 cout << " Silicon Drift Detector Segmentation Parameters " << opt << endl;
f5d698b9 316 cout << "**************************************************" << endl;
317 cout << "Number of Time Samples: " << fNsamples << endl;
318 cout << "Number of Anodes: " << fNanodes << endl;
319 cout << "Time Step (ns): " << fTimeStep << endl;
320 cout << "Anode Pitch (um): " << fPitch << endl;
55d2c544 321 cout << "Full Detector Width (x): " << fDx;
322 cout<<" (Default is "<<fgkDxDefault<<") "<<endl;
323 cout << "Half Detector Length (z): " << fDz;
324 cout<<" (Default is "<<fgkDzDefault<<") "<<endl;
325 cout << "Full Detector Thickness (y): " << fDy;
326 cout<<" (Default is "<<fgkDyDefault<<") "<<endl;
f5d698b9 327 cout << "**************************************************" << endl;
328
329}
55d2c544 330
331//----------------------------------------------------------------------
332void AliITSsegmentationSDD::PrintDefaultParameters() const {
333 // print SDD parameters defined as static const data members
334
335 cout << "**************************************************" << endl;
336 cout << " Silicon Drift Detector Segmentation Parameters " << endl;
337 cout << " Default values defined as static const data members"<< endl;
338 cout << " Actual values can be set with the relevant setters"<< endl;
339 cout << "**************************************************" << endl;
340 cout<<"fgkDxDefault = "<<fgkDxDefault<<endl;
341 cout<<"fgkDzDefault = "<<fgkDzDefault<<endl;
342 cout<<"fgkDyDefault = "<<fgkDyDefault<<endl;
343 cout<<"fgkPitchDefault = "<<fgkPitchDefault<<endl;
344 cout<<"fgkClockDefault = "<<fgkClockDefault<<endl;
345 cout<<"fgkHalfNanodesDefault = "<<fgkHalfNanodesDefault<<endl;
346 cout<<"fgkNsamplesDefault = "<<fgkNsamplesDefault<<endl;
347 cout << "**************************************************" << endl;
348
349}
5752a110 350
351//______________________________________________________________________
aacedc3e 352Bool_t AliITSsegmentationSDD::LocalToDet(Float_t x,Float_t z,
353 Int_t &ix,Int_t &iz) const {
5752a110 354// Transformation from Geant detector centered local coordinates (cm) to
355// time bucket numbers ix and anode number iz.
356// Input:
357// Float_t x detector local coordinate x in cm with respect to the
358// center of the sensitive volume.
359// Float_t z detector local coordinate z in cm with respect to the
360// center of the sensitive volulme.
361// Output:
362// Int_t ix detector x time coordinate. Has the range 0<=ix<fNsamples.
363// Int_t iz detector z anode coordinate. Has the range 0<=iz<fNandoes.
364// A value of -1 for ix or iz indecates that this point is outside of the
365// detector segmentation as defined.
f6b6d58e 366
367 Float_t dx,dz;
5752a110 368
369 ix = -1; // default values
370 iz = -1; // default values
f6b6d58e 371 dx = -fgkMicron2Cm*Dx(); // lower left edge in cm.
372 dz = -0.5*fgkMicron2Cm*Dz(); // lower left edge in cm.
507cf1a7 373 if(x<dx || x>-dx) {
f6b6d58e 374 AliWarning(Form("Input argument %f out of range (%f, %f)",x,dx,-dx));
aacedc3e 375 return kFALSE; // outside of defined volume.
507cf1a7 376 }
377 if(z<dz || z>-dz) {
f6b6d58e 378 AliWarning(Form("Input argument %f out of range (%f, %f)",z,dz,-dz));
aacedc3e 379 return kFALSE; // outside of defined volume.
507cf1a7 380 }
f6b6d58e 381 GetPadIxz(x,z,ix,iz);
4952f440 382 if(!fSetDriftSpeed){
f6b6d58e 383 ix=-999;
384 AliWarning("Drift speed not set: timebin is dummy");
4952f440 385 return kFALSE;
386 }
aacedc3e 387 return kTRUE; // Found ix and iz, return.
5752a110 388}
389//______________________________________________________________________
55d2c544 390void AliITSsegmentationSDD::DetToLocal(Int_t ix,Int_t iz,Float_t &x,Float_t &z) const
5752a110 391{
392// Transformation from Detector time bucket and anode coordiantes to Geant
393// detector centerd local coordinates (cm).
394// Input:
395// Int_t ix detector x time coordinate. Has the range 0<=ix<fNsamples.
396// Int_t iz detector z anode coordinate. Has the range 0<=iz<fNandoes.
397// Output:
398// Float_t x detector local coordinate x in cm with respect to the
399// center of the sensitive volume.
400// Float_t z detector local coordinate z in cm with respect to the
401// center of the sensitive volulme.
402// If ix and or iz is outside of the segmentation range a value of -Dx()
403// or -0.5*Dz() is returned.
5752a110 404
f6b6d58e 405 x=-Dx();
406 z=-0.5*Dz();
407 if(ix<0 || ix>=Npx()) {
408 AliWarning(Form("Input argument %d out of range (0, %d)",ix,Npx()));
409 return; // outside of detector
410 }
411 if(iz<0 || iz>=Npz()) {
412 AliWarning(Form("Input argument %d out of range (0, %d)",iz,Npz()));
413 return; // outside of detctor
414 }
415 GetPadCxz(ix,iz,x,z);
416 if(!fSetDriftSpeed){
417 x=-9999.;
418 AliWarning("Drift speed not set: x coord. is dummy");
419 }
420 return; // Found x and z, return.
5752a110 421}