]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSgeom.cxx
re-activate contrib code
[u/mrichter/AliRoot.git] / ITS / AliITSgeom.cxx
CommitLineData
4c039060 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
88cb7938 16/* $Id$ */
4c039060 17
58005f18 18///////////////////////////////////////////////////////////////////////
593e9459 19// ITS geometry manipulation routines. //
58005f18 20// Created April 15 1999. //
21// version: 0.0.0 //
22// By: Bjorn S. Nilsen //
23// version: 0.0.1 //
24// Updated May 27 1999. //
023ae34b 25// Added Cylindrical random and global based changes. //
c98634db 26// //
023ae34b 27// Modified and added functions Feb. 7 2006 //
58005f18 28///////////////////////////////////////////////////////////////////////
593e9459 29
30
31////////////////////////////////////////////////////////////////////////
593e9459 32// The local coordinate system by, default, is show in the following
33// figures. Also shown are the ladder numbering scheme.
34//Begin_Html
35/*
269f57ed 36<img src="picts/ITS/AliITSgeomMatrix_L1.gif">
37</pre>
38<br clear=left>
39<font size=+2 color=blue>
40<p>This shows the relative geometry differences between the ALICE Global
41coordinate system and the local detector coordinate system.
42</font>
43<pre>
44
45<pre>
593e9459 46<img src="picts/ITS/its1+2_convention_front_5.gif">
47</pre>
48<br clear=left>
49<font size=+2 color=blue>
50<p>This shows the front view of the SPDs and the orientation of the local
51pixel coordinate system. Note that the inner pixel layer has its y coordinate
52in the opposite direction from all of the other layers.
53</font>
54<pre>
55
56<pre>
57<img src="picts/ITS/its3+4_convention_front_5.gif">
58</pre>
59<br clear=left>
60<font size=+2 color=blue>
61<p>This shows the front view of the SDDs and the orientation of the local
62pixel coordinate system.
63</font>
64<pre>
65
66<pre>
67<img src="picts/ITS/its5+6_convention_front_5.gif">
68</pre>
69<br clear=left>
70<font size=+2 color=blue>
71<p>This shows the front view of the SSDs and the orientation of the local
72pixel coordinate system.
73</font>
74<pre>
75*/
76//End_Html
269f57ed 77//
593e9459 78////////////////////////////////////////////////////////////////////////
79
80////////////////////////////////////////////////////////////////////////
81//
82// version: 0
83// Written by Bjorn S. Nilsen
84//
85// Data Members:
86//
023ae34b 87// TString fVersion
88// Transformation version.
89// Int_t fTrans
90// Flag to keep track of which transformation
91// Int_t fNmodules
92// The total number of modules
593e9459 93// Int_t fNlayers
94// The number of ITS layers for this geometry. By default this
95// is 6, but can be modified by the creator function if there are
96// more layers defined.
97//
023ae34b 98// TArrayI fNlad
593e9459 99// A pointer to an array fNlayers long containing the number of
100// ladders for each layer. This array is typically created and filled
101// by the AliITSgeom creator function.
102//
023ae34b 103// TArrayI fNdet
593e9459 104// A pointer to an array fNlayers long containing the number of
105// active detector volumes for each ladder. This array is typically
106// created and filled by the AliITSgeom creator function.
107//
023ae34b 108// TObjArray fGm containing objects of type AliITSgeomMatrix
269f57ed 109// A pointer to an array of AliITSgeomMatrix classes. One element
110// per module (detector) in the ITS. AliITSgeomMatrix basicly contains
111// all of the necessary information about the detector and it's coordinate
112// transformations.
593e9459 113//
593e9459 114////////////////////////////////////////////////////////////////////////
4ae5bbc4 115#include <Riostream.h>
5cf690c1 116#include <ctype.h>
8253cd9a 117
269f57ed 118#include <TRandom.h>
f77f13c8 119#include <TSystem.h>
023ae34b 120#include <TArrayI.h>
e8189707 121
023ae34b 122#include "AliITSgeom.h"
f77f13c8 123#include "AliLog.h"
58005f18 124
125ClassImp(AliITSgeom)
126
85f1e34a 127//______________________________________________________________________
023ae34b 128AliITSgeom::AliITSgeom():
129TObject(),
130fVersion("GEANT"),// Transformation version.
131fTrans(0), // Flag to keep track of which transformation
132fNmodules(0), // The total number of modules
133fNlayers(0), // The number of layers.
134fNlad(), //[] Array of the number of ladders/layer(layer)
135fNdet(), //[] Array of the number of detector/ladder(layer)
325d8c32 136fGm(0,0) // Structure of translation. and rotation.
023ae34b 137{
85f1e34a 138 // The default constructor for the AliITSgeom class. It, by default,
139 // sets fNlayers to zero and zeros all pointers.
140 // Do not allocate anything zero everything.
023ae34b 141 // Inputs:
142 // none.
143 // Outputs:
144 // none.
145 // Return:
146 // a zeroed AliITSgeom object.
85f1e34a 147
023ae34b 148 fGm.SetOwner(kTRUE);
8253cd9a 149 return;
150}
e56160b8 151
85f1e34a 152//______________________________________________________________________
023ae34b 153AliITSgeom::AliITSgeom(Int_t itype,Int_t nlayers,const Int_t *nlads,
154 const Int_t *ndets,Int_t mods):
155TObject(),
156fVersion("GEANT"), // Transformation version.
157fTrans(itype), // Flag to keep track of which transformation
158fNmodules(mods), // The total number of modules
159fNlayers(nlayers), // The number of layers.
160fNlad(nlayers,nlads),//[] Array of the number of ladders/layer(layer)
161fNdet(nlayers,ndets),//[] Array of the number of detector/ladder(layer)
325d8c32 162fGm(mods,0) // Structure of translation. and rotation.
023ae34b 163{
85f1e34a 164 // A simple constructor to set basic geometry class variables
165 // Inputs:
023ae34b 166 // Int_t itype the type of transformation kept.
167 // bit 0 => Standard GEANT
168 // bit 1 => ITS tracking
012f0f4c 169 // bit 2 => A change in the coordinate system
170 // has been made. others are still to be defined
171 // as needed.
172 // Int_t nlayers The number of ITS layers also set the size of
173 // the arrays
174 // Int_t *nlads an array of the number of ladders for each
023ae34b 175 // layer. This array must be nlayers long.
012f0f4c 176 // Int_t *ndets an array of the number of detectors per ladder
177 // for each layer. This array must be nlayers long.
023ae34b 178 // Int_t mods The number of modules. Typically the sum of all the
179 // detectors on every layer and ladder.
85f1e34a 180 // Outputs:
023ae34b 181 // none
182 // Return:
183 // A properly inilized AliITSgeom object.
184
185 fGm.SetOwner(kTRUE);
023ae34b 186 return;
187}
188//______________________________________________________________________
189void AliITSgeom::Init(Int_t itype,Int_t nlayers,const Int_t *nlads,
190 const Int_t *ndets,Int_t mods){
191 // A simple Inilizer to set basic geometry class variables
192 // Inputs:
193 // Int_t itype the type of transformation kept.
194 // bit 0 => Standard GEANT
195 // bit 1 => ITS tracking
012f0f4c 196 // bit 2 => A change in the coordinate system
197 // has been made. others are still to be defined
198 // as needed.
199 // Int_t nlayers The number of ITS layers also set the size of
200 // the arrays
201 // Int_t *nlads an array of the number of ladders for each
023ae34b 202 // layer. This array must be nlayers long.
012f0f4c 203 // Int_t *ndets an array of the number of detectors per ladder
204 // for each layer. This array must be nlayers long.
023ae34b 205 // Int_t mods The number of modules. Typically the sum of all the
206 // detectors on every layer and ladder.
207 // Outputs:
208 // none
209 // Return:
210 // A properly inilized AliITSgeom object.
8253cd9a 211
023ae34b 212 fVersion = "GEANT"; // Transformation version.
213 fTrans = itype; // Flag to keep track of which transformation
214 fNmodules = mods; // The total number of modules
215 fNlayers = nlayers; // The number of layers.
216 fNlad.Set(nlayers,nlads);//[] Array of the number of ladders/layer(layer)
217 fNdet.Set(nlayers,ndets);//[] Array of the number of detector/ladder(layer)
218 fGm.Clear();
219 fGm.Expand(mods); // Structure of translation. and rotation.
220 fGm.SetOwner(kTRUE);
8253cd9a 221 return;
58005f18 222}
8253cd9a 223//______________________________________________________________________
023ae34b 224void AliITSgeom::CreateMatrix(Int_t mod,Int_t lay,Int_t lad,Int_t det,
225 AliITSDetector idet,const Double_t tran[3],
226 const Double_t rot[10]){
85f1e34a 227 // Given the translation vector tran[3] and the rotation matrix rot[1],
228 // this function creates and adds to the TObject Array fGm the
229 // AliITSgeomMatrix object.
85f1e34a 230 // The rot[10] matrix is set up like:
231 /* / rot[0] rot[1] rot[2] \
232 // | rot[3] rot[4] rot[5] |
233 // \ rot[6] rot[7] rot[8] / if(rot[9]!=0) then the Identity matrix
234 // is used regardless of the values in rot[0]-rot[8].
235 */
023ae34b 236 // Inputs:
237 // Int_t mod The module number. The location in TObjArray
238 // Int_t lay The layer where this module is
239 // Int_t lad On which ladder this module is
240 // Int_t det Which detector on this ladder this module is
241 // AliITSDetector idet The type of detector see AliITSgeom.h
242 // Double_t tran[3] The translation vector
243 // Double_t rot[10] The rotation matrix.
244 // Outputs:
245 // none
246 // Return:
247 // none.
8253cd9a 248 Int_t id[3];
249 Double_t r[3][3] = {{1.0,0.0,0.0},{0.0,1.0,0.0},{0.0,0.0,1.0}};
58005f18 250
023ae34b 251 if(mod<0||mod>=fGm.GetSize()){
252 Error("CreateMatrix","mod=%d is out of bounds max value=%d",mod,
253 fGm.GetSize());
254 return;
255 } // end if
256 delete fGm.At(mod);
8253cd9a 257 id[0] = lay; id[1] = lad; id[2] = det;
258 if(rot[9]!=0.0) { // null rotation
023ae34b 259 r[0][0] = rot[0]; r[0][1] = rot[1]; r[0][2] = rot[2];
260 r[1][0] = rot[3]; r[1][1] = rot[4]; r[1][2] = rot[5];
261 r[2][0] = rot[6]; r[2][1] = rot[7]; r[2][2] = rot[8];
8253cd9a 262 } // end if
023ae34b 263 fGm.AddAt(new AliITSgeomMatrix(idet,id,r,tran),mod);
8253cd9a 264}
85f1e34a 265//______________________________________________________________________
58005f18 266AliITSgeom::~AliITSgeom(){
85f1e34a 267 // The destructor for the AliITSgeom class. If the arrays fNlad,
268 // fNdet, or fGm have had memory allocated to them, there pointer values
269 // are non zero, then this memory space is freed and they are set
270 // to zero. In addition, fNlayers is set to zero. The destruction of
023ae34b 271 // Inputs:
272 // none.
273 // Outputs:
274 // none.
275 // Return:
276 // none.
85f1e34a 277
023ae34b 278 return;
58005f18 279}
269f57ed 280//______________________________________________________________________
012f0f4c 281AliITSgeom::AliITSgeom(const AliITSgeom &source) :
282TObject(source),
283fVersion(source.fVersion), // Transformation version.
284fTrans(source.fTrans), // Flag to keep track of which transformation
285fNmodules(source.fNmodules),// The total number of modules
286fNlayers(source.fNlayers), // The number of layers.
287fNlad(source.fNlad), // Array of the number of ladders/layer(layer)
288fNdet(source.fNdet), // Array of the number of detector/ladder(layer)
325d8c32 289fGm(source.fGm.GetSize(),source.fGm.LowerBound())// Structure of
012f0f4c 290 // translation and rotation.
e56160b8 291{
85f1e34a 292 // The copy constructor for the AliITSgeom class. It calls the
293 // = operator function. See the = operator function for more details.
023ae34b 294 // Inputs:
295 // AliITSgeom &source The AliITSgeom class with which to make this
296 // a copy of.
297 // Outputs:
298 // none.
299 // Return:
300 // none.
012f0f4c 301 Int_t i,n;
593e9459 302
012f0f4c 303 n = source.fGm.GetLast()+1;
304 for(i=source.fGm.LowerBound();i<n;i++){
305 fGm.AddAt(new AliITSgeomMatrix(*((AliITSgeomMatrix*)(
306 source.fGm.At(i)))),i);
307 } // end for i
308 fGm.SetOwner(kTRUE);
012f0f4c 309 return;
58005f18 310}
85f1e34a 311//______________________________________________________________________
7f6ab649 312AliITSgeom& AliITSgeom::operator=(const AliITSgeom &source){
85f1e34a 313 // The = operator function for the AliITSgeom class. It makes an
314 // independent copy of the class in such a way that any changes made
315 // to the copied class will not affect the source class in any way.
316 // This is required for many ITS alignment studies where the copied
317 // class is then modified by introducing some misalignment.
023ae34b 318 // Inputs:
319 // AliITSgeom &source The AliITSgeom class with which to make this
320 // a copy of.
321 // Outputs:
322 // none.
323 // Return:
324 // *this The a new copy of source.
325 Int_t i;
58005f18 326
023ae34b 327 if(this == &source) return *this; // don't assign to ones self.
58005f18 328
023ae34b 329 // if there is an old structure allocated delete it first.
330 this->fGm.Clear();
085bb6ed 331
023ae34b 332 this->fVersion = source.fVersion;
333 this->fTrans = source.fTrans;
334 this->fNmodules = source.fNmodules;
012f0f4c 335 this->fNlayers = source.fNlayers;
336 this->fNlad = source.fNlad;
337 this->fNdet = source.fNdet;
023ae34b 338 this->fGm.Expand(this->fNmodules);
012f0f4c 339 for(i=source.fGm.LowerBound();i<source.fGm.GetLast();i++){
340 fGm.AddAt(new AliITSgeomMatrix(*((AliITSgeomMatrix*)(
341 source.fGm.At(i)))),i);
342 } // end for i
343 fGm.SetOwner(kTRUE);
023ae34b 344 return *this;
85f1e34a 345}
346//______________________________________________________________________
5cf690c1 347Int_t AliITSgeom::GetModuleIndex(Int_t lay,Int_t lad,Int_t det)const{
85f1e34a 348 // This routine computes the module index number from the layer,
349 // ladder, and detector numbers. The number of ladders and detectors
350 // per layer is determined when this geometry package is constructed,
351 // see AliITSgeom(const char *filename) for specifics.
023ae34b 352 // Inputs:
353 // Int_t lay The layer number. Starting from 1.
354 // Int_t lad The ladder number. Starting from 1.
355 // Int_t det The detector number. Starting from 1.
356 // Outputs:
357 // none.
358 // Return:
359 // the module index number, starting from zero.
269f57ed 360 Int_t i,j,k,id[3];
593e9459 361
362 i = fNdet[lay-1] * (lad-1) + det - 1;
363 j = 0;
364 for(k=0;k<lay-1;k++) j += fNdet[k]*fNlad[k];
269f57ed 365 i = i+j;
7e932df0 366 if(i>=fNmodules) return -1;
8253cd9a 367 GetGeomMatrix(i)->GetIndex(id);
269f57ed 368 if(id[0]==lay&&id[1]==lad&&id[2]==det) return i;
369 // Array of modules fGm is not in expected order. Search for this index
370 for(i=0;i<fNmodules;i++){
023ae34b 371 GetGeomMatrix(i)->GetIndex(id);
372 if(id[0]==lay&&id[1]==lad&&id[2]==det) return i;
269f57ed 373 } // end for i
374 // This layer ladder and detector combination does not exist return -1.
375 return -1;
593e9459 376}
269f57ed 377//______________________________________________________________________
012f0f4c 378void AliITSgeom::GetModuleId(Int_t index,Int_t &lay,Int_t &lad,Int_t &det)
379const{
85f1e34a 380 // This routine computes the layer, ladder and detector number
381 // given the module index number. The number of ladders and detectors
382 // per layer is determined when this geometry package is constructed,
383 // see AliITSgeom(const char *filename) for specifics.
023ae34b 384 // Inputs:
385 // Int_t index The module index number, starting from zero.
386 // Outputs:
387 // Int_t lay The layer number. Starting from 1.
388 // Int_t lad The ladder number. Starting from 1.
389 // Int_t det The detector number. Starting from 1.
390 // Return:
391 // none.
269f57ed 392 Int_t id[3];
88cb7938 393 AliITSgeomMatrix *g = GetGeomMatrix(index);
269f57ed 394
023ae34b 395 if (g == 0x0){
396 Error("GetModuleId","Can not get GeoMatrix for index = %d",index);
397 lay = -1; lad = -1; det = -1;
398 }else{
399 g->GetIndex(id);
400 lay = id[0]; lad = id[1]; det = id[2];
401 }// End if
402 return;
269f57ed 403 // The old way kept for posterity.
404/*
405 Int_t i,j,k;
593e9459 406 j = 0;
407 for(k=0;k<fNlayers;k++){
58005f18 408 j += fNdet[k]*fNlad[k];
aa6248e2 409 if(j>index)break;
58005f18 410 } // end for k
411 lay = k+1;
412 i = index -j + fNdet[k]*fNlad[k];
413 j = 0;
414 for(k=0;k<fNlad[lay-1];k++){
aa6248e2 415 j += fNdet[lay-1];
416 if(j>i)break;
58005f18 417 } // end for k
418 lad = k+1;
419 det = 1+i-fNdet[lay-1]*k;
420 return;
269f57ed 421*/
58005f18 422}
85f1e34a 423//______________________________________________________________________
5cf690c1 424Int_t AliITSgeom::GetNDetTypes(Int_t &max)const{
023ae34b 425 // Finds and returns the number of detector types used and the
426 // maximum detector type value. Only counts id >=0 (no undefined
427 // values. See AliITSgeom.h for list of AliITSDetecor enumerated types.
428 // Inputs:
429 // none.
430 // Outputs:
431 // The maximum detector type used
432 // Return:
433 // The number of detector types used
434 Int_t i,*n,id;
435
436 max = -1;
437 for(i=0;i<GetIndexMax();i++){
438 id = GetModuleType(i);
439 if(id>max) max=id;
440 } // end for i
441 n = new Int_t[max+1];
442 for(i=0;i<max;i++) n[i] = 0;
443 for(i=0;i<GetIndexMax();i++){
444 id = GetModuleType(i);
445 if(id>-1)n[id]++; // note id=-1 => undefined.
446 } // end for i
447 id = 0;
448 for(i=0;i<max;i++) if(n[i]!=0) id++;
449 delete[] n;
450 return id+1;
451}
452//______________________________________________________________________
5cf690c1 453Int_t AliITSgeom::GetNDetTypes(TArrayI &maxs,AliITSDetector *types)const{
023ae34b 454 // Finds and returns the number of detector types used and the
455 // number of each detector type. Only counts id >=0 (no undefined
456 // values. See AliITSgeom.h for list of AliITSDetecor enumerated types.
457 // Inputs:
458 // none.
459 // Outputs:
460 // The maximum detector type used
461 // Return:
462 // The number of detector types used
463 Int_t i,j,*n,id,max;
464
465 max = -1;
466 for(i=0;i<GetIndexMax();i++){
467 id = GetModuleType(i);
468 if(id>max) max=id;
469 } // end for i
470 n = new Int_t[max+1];
471 for(i=0;i<max;i++) n[i] = 0;
472 for(i=0;i<GetIndexMax();i++){
473 id = GetModuleType(i);
474 if(id>-1)n[id]++; // note id=-1 => undefined.
475 } // end for i
476 id = 0;
477 for(i=0;i<=max;i++) if(n[i]!=0) id++;
478 maxs.Set(id);
479 j = 0;
480 for(i=0;i<=max;i++) if(n[i]!=0){
481 maxs[j] = n[i];
482 types[j++] = (AliITSDetector) i;
483 } // end for i/end if
484 delete[] n;
485 return id;
486}
487//______________________________________________________________________
5cf690c1 488Int_t AliITSgeom::GetStartDet(Int_t dtype)const{
85f1e34a 489 // returns the starting module index value for a give type of detector id.
490 // This assumes that the detector types are different on different layers
491 // and that they are not mixed up.
023ae34b 492 // Inputs:
012f0f4c 493 // Int_t dtype A detector type number. 0 for SPD, 1 for SDD,
494 // and 2 for SSD.
023ae34b 495 // Outputs:
496 // none.
497 // Return:
498 // the module index for the first occurrence of that detector type.
85f1e34a 499
500 switch(dtype){
501 case 0:
023ae34b 502 return GetModuleIndex(1,1,1);
503 break;
85f1e34a 504 case 1:
023ae34b 505 return GetModuleIndex(3,1,1);
506 break;
85f1e34a 507 case 2:
023ae34b 508 return GetModuleIndex(5,1,1);
509 break;
85f1e34a 510 default:
023ae34b 511 Warning("GetStartDet","undefined detector type %d",dtype);
512 return 0;
85f1e34a 513 } // end switch
514
515 Warning("GetStartDet","undefined detector type %d",dtype);
516 return 0;
085bb6ed 517}
85f1e34a 518//______________________________________________________________________
5cf690c1 519Int_t AliITSgeom::GetLastDet(Int_t dtype)const{
85f1e34a 520 // returns the last module index value for a give type of detector id.
521 // This assumes that the detector types are different on different layers
522 // and that they are not mixed up.
023ae34b 523 // Inputs:
012f0f4c 524 // Int_t dtype A detector type number. 0 for SPD, 1 for SDD,
525 // and 2 for SSD.
023ae34b 526 // Outputs:
527 // Return:
528 // the module index for the last occurrence of that detector type.
85f1e34a 529
a1e4be5b 530 switch((AliITSDetector)dtype){
531 case kSPD:
532 return GetModuleIndex(3,1,1)-1;
023ae34b 533 break;
a1e4be5b 534 case kSDD:
535 return GetModuleIndex(5,1,1)-1;
023ae34b 536 break;
a1e4be5b 537 case kSSD:
e8d3012e 538 return GetIndexMax()-1;
023ae34b 539 break;
a1e4be5b 540 case kSSDp: case kSDDp: case kND:
85f1e34a 541 default:
023ae34b 542 Warning("GetLastDet","undefined detector type %d",dtype);
543 return 0;
85f1e34a 544 } // end switch
545
546 Warning("GetLastDet","undefined detector type %d",dtype);
547 return 0;
085bb6ed 548}
85f1e34a 549
85f1e34a 550//______________________________________________________________________
5cf690c1 551void AliITSgeom::PrintData(FILE *fp,Int_t lay,Int_t lad,Int_t det)const{
85f1e34a 552 // This function prints out the coordinate transformations for
553 // the particular detector defined by layer, ladder, and detector
554 // to the file pointed to by the File pointer fp. fprintf statements
555 // are used to print out the numbers. The format is
556 // layer ladder detector Trans= fx0 fy0 fz0 rot= frx fry frz
557 // Shape=fShapeIndex
558 // dfr= fr[0] fr[1] fr[2]
559 // dfr= fr[3] fr[4] fr[5]
560 // dfr= fr[6] fr[7] fr[8]
561 // By indicating which detector, some control over the information
562 // is given to the user. The output it written to the file pointed
563 // to by the file pointer fp. This can be set to stdout if you want.
023ae34b 564 // Inputs:
012f0f4c 565 // FILE *fp A file pointer to an opened file for
566 // writing in which the results of the
567 // comparison will be written.
023ae34b 568 // Int_t lay The layer number. Starting from 1.
569 // Int_t lad The ladder number. Starting from 1.
570 // Int_t det The detector number. Starting from 1.
571 // Outputs:
572 // none
573 // Return:
574 // none.
85f1e34a 575 AliITSgeomMatrix *gt;
576 Double_t t[3],r[3],m[3][3];
577
578 gt = this->GetGeomMatrix(GetModuleIndex(lay,lad,det));
579 gt->GetTranslation(t);
580 gt->GetAngles(r);
581 fprintf(fp,"%1.1d %2.2d %2.2d Trans=%f %f %f rot=%f %f %f Shape=%d\n",
023ae34b 582 lay,lad,det,t[0],t[1],t[2],r[0],r[1],r[2],
583 gt->GetDetectorIndex());
85f1e34a 584 gt->GetMatrix(m);
585 fprintf(fp," dfr= %e %e %e\n",m[0][0],m[0][1],m[0][2]);
586 fprintf(fp," dfr= %e %e %e\n",m[1][0],m[1][1],m[1][2]);
587 fprintf(fp," dfr= %e %e %e\n",m[2][0],m[2][1],m[2][2]);
588 return;
58005f18 589}
85f1e34a 590
269f57ed 591//______________________________________________________________________
5cf690c1 592Int_t AliITSgeom::GetNearest(const Double_t g[3],Int_t lay)const{
85f1e34a 593 // Finds the Detector (Module) that is nearest the point g [cm] in
594 // ALICE Global coordinates. If layer !=0 then the search is restricted
595 // to Detectors (Modules) in that particular layer.
023ae34b 596 // Inputs:
597 // Double_t g[3] The ALICE Cartesian global coordinate from which the
598 // distance is to be calculated with.
599 // Int_t lay The layer to restrict the search to. If layer=0 then
600 // all layers are searched. Default is lay=0.
601 // Output:
602 // none.
603 // Return:
604 // The module number representing the nearest module.
85f1e34a 605 Int_t i,l,a,e,in=0;
606 Double_t d,dn=1.0e10;
607 Bool_t t=lay!=0; // skip if lay = 0 default value check all layers.
085bb6ed 608
85f1e34a 609 for(i=0;i<fNmodules;i++){
023ae34b 610 if(t){GetModuleId(i,l,a,e);if(l!=lay) continue;}
611 if((d=GetGeomMatrix(i)->Distance2(g))<dn){
612 dn = d;
613 in = i;
614 } // end if
85f1e34a 615 } // end for i
616 return in;
085bb6ed 617}
269f57ed 618//______________________________________________________________________
5cf690c1 619void AliITSgeom::GetNearest27(const Double_t g[3],Int_t n[27],Int_t lay)const{
85f1e34a 620 // Finds 27 Detectors (Modules) that are nearest the point g [cm] in
621 // ALICE Global coordinates. If layer !=0 then the search is restricted
622 // to Detectors (Modules) in that particular layer. The number 27 comes
623 // from including the nearest detector and all those around it (up, down,
624 // left, right, forwards, backwards, and the corners).
023ae34b 625 // Input:
626 // Double_t g[3] The ALICE Cartesian global coordinate from which the
627 // distance is to be calculated with.
628 // Int_t lay The layer to restrict the search to. If layer=0 then
629 // all layers are searched. Default is lay=0.
630 // Output:
631 // Int_t n[27] The module number representing the nearest 27 modules
632 // in order.
633 // Return:
634 // none.
85f1e34a 635 Int_t i,l,a,e,in[27]={0,0,0,0,0,0,0,0,0,
023ae34b 636 0,0,0,0,0,0,0,0,0,
637 0,0,0,0,0,0,0,0,0,};
85f1e34a 638 Double_t d,dn[27]={1.0e10,1.0e10,1.0e10,1.0e10,1.0e10,1.0e10,
023ae34b 639 1.0e10,1.0e10,1.0e10,1.0e10,1.0e10,1.0e10,
640 1.0e10,1.0e10,1.0e10,1.0e10,1.0e10,1.0e10,
641 1.0e10,1.0e10,1.0e10,1.0e10,1.0e10,1.0e10,
642 1.0e10,1.0e10,1.0e10};
85f1e34a 643 Bool_t t=(lay!=0); // skip if lay = 0 default value check all layers.
269f57ed 644
85f1e34a 645 for(i=0;i<fNmodules;i++){
023ae34b 646 if(t){GetModuleId(i,l,a,e);if(l!=lay) continue;}
647 for(a=0;a<27;a++){
648 d = GetGeomMatrix(i)->Distance2(g);
649 if(d<dn[a]){
650 for(e=26;e>a;e--){dn[e] = dn[e-1];in[e] = in[e-1];}
651 dn[a] = d; in[a] = i;
652 } // end if d<dn[i]
653 } // end for a
85f1e34a 654 } // end for i
655 for(i=0;i<27;i++) n[i] = in[i];
269f57ed 656}
00a7cc50 657//_______________________________________________________________________
012f0f4c 658void AliITSgeom::DetLToTrackingV2(Int_t md,Float_t xin,Float_t zin,
5262df17 659 Float_t &yout,Float_t &zout) const {
00a7cc50 660
012f0f4c 661 //Conversion from local coordinates on detectors to local
662 //coordinates used for tracking ("v2")
663 // Inputs:
664 // Int_t md Module number
665 // Float_t xin Standard local coordinate x
666 // Float_t zin Standard local coordinate z
667 // Output:
668 // Float_t yout Tracking local coordinate y
669 // Float_t zout Tracking local coordinate z
670 // Return:
671 // none.
672 Float_t x,y,z;
673 Double_t rt[9],al;
00a7cc50 674
012f0f4c 675 GetTrans(md,x,y,z);
676 GetRotMatrix(md,rt);
677 al = TMath::ATan2(rt[1],rt[0])+TMath::Pi();
678 yout = -(-xin+(x*((Float_t)TMath::Cos(al))+y*((Float_t)TMath::Sin(al))));
679 if(md<(GetModuleIndex(2,1,1))) yout *= -1;
680 zout = -zin+z;
681}
00a7cc50 682//_______________________________________________________________________
012f0f4c 683void AliITSgeom::TrackingV2ToDetL(Int_t md,Float_t yin,Float_t zin,
5262df17 684 Float_t &xout,Float_t &zout) const {
012f0f4c 685 //Conversion from local coordinates used for tracking ("v2") to
686 //local detector coordinates
687 // Inputs:
688 // Int_t md Module number
689 // Float_t yin Tracking local coordinate y
690 // Float_t zin Tracking local coordinate z
691 // Output:
692 // Float_t xout Standard local coordinate x
693 // Float_t zout Standard local coordinate z
694 // Return:
695 // none.
696 Float_t x,y,z;
697 Double_t rt[9],al;
698
699 GetTrans(md,x,y,z);
700 GetRotMatrix(md,rt);
701 al = TMath::ATan2(rt[1],rt[0])+TMath::Pi();
702 xout = yin;
703 if(md<(GetModuleIndex(2,1,1))) xout = -xout;
704 xout += (x*((Float_t)TMath::Cos(al))+y*((Float_t)TMath::Sin(al)));
705 zout = -zin+z;
00a7cc50 706}
012f0f4c 707//----------------------------------------------------------------------
012f0f4c 708