]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSgeom.cxx
New versions of GDC and CDH raw data headers. Some CDH getters are added
[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. //
58005f18 26// Added function PrintComparison. //
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//
023ae34b 114// TObjArray fShape containting objects of type AliITSgeom
593e9459 115// A pointer to an array of TObjects containing the detailed shape
116// information for each type of detector used in the ITS. For example
023ae34b 117// I have created AliITSgeomSPD, AliITSgeomSDD, and
118// AliITSsegmenttionSSD as example structures, derived from TObjects,
119// to hold the detector information. I would recommend that one element
120// in each of these structures, that which describes the shape of the
121// active volume, be one of the ROOT classes derived from TShape. In this
122// way it would be easy to have the display program display the correct
123// active ITS volumes. See the example classes AliITSgeomSPD,
124// AliITSgeomSDD, and AliITSgeomSSD for a more detailed
125// example.
593e9459 126////////////////////////////////////////////////////////////////////////
4ae5bbc4 127#include <Riostream.h>
5cf690c1 128#include <ctype.h>
8253cd9a 129
269f57ed 130#include <TRandom.h>
f77f13c8 131#include <TSystem.h>
023ae34b 132#include <TArrayI.h>
e8189707 133
f77f13c8 134#include "AliITSgeomSPD.h"
023ae34b 135#include "AliITSgeomSDD.h"
269f57ed 136#include "AliITSgeomSSD.h"
023ae34b 137#include "AliITSgeom.h"
f77f13c8 138#include "AliLog.h"
58005f18 139
140ClassImp(AliITSgeom)
141
85f1e34a 142//______________________________________________________________________
023ae34b 143AliITSgeom::AliITSgeom():
144TObject(),
145fVersion("GEANT"),// Transformation version.
146fTrans(0), // Flag to keep track of which transformation
147fNmodules(0), // The total number of modules
148fNlayers(0), // The number of layers.
149fNlad(), //[] Array of the number of ladders/layer(layer)
150fNdet(), //[] Array of the number of detector/ladder(layer)
151fGm(0,0), // Structure of translation. and rotation.
152fShape(0,0) // Array of shapes and detector information.
153{
85f1e34a 154 // The default constructor for the AliITSgeom class. It, by default,
155 // sets fNlayers to zero and zeros all pointers.
156 // Do not allocate anything zero everything.
023ae34b 157 // Inputs:
158 // none.
159 // Outputs:
160 // none.
161 // Return:
162 // a zeroed AliITSgeom object.
85f1e34a 163
023ae34b 164 fGm.SetOwner(kTRUE);
165 fShape.SetOwner(kTRUE);
8253cd9a 166 return;
167}
85f1e34a 168//______________________________________________________________________
023ae34b 169AliITSgeom::AliITSgeom(Int_t itype,Int_t nlayers,const Int_t *nlads,
170 const Int_t *ndets,Int_t mods):
171TObject(),
172fVersion("GEANT"), // Transformation version.
173fTrans(itype), // Flag to keep track of which transformation
174fNmodules(mods), // The total number of modules
175fNlayers(nlayers), // The number of layers.
176fNlad(nlayers,nlads),//[] Array of the number of ladders/layer(layer)
177fNdet(nlayers,ndets),//[] Array of the number of detector/ladder(layer)
178fGm(mods,0), // Structure of translation. and rotation.
179fShape(5,0) // Array of shapes and detector information.
180{
85f1e34a 181 // A simple constructor to set basic geometry class variables
182 // Inputs:
023ae34b 183 // Int_t itype the type of transformation kept.
184 // bit 0 => Standard GEANT
185 // bit 1 => ITS tracking
186 // bit 2 => A change in the coordinate system has been made.
187 // others are still to be defined as needed.
188 // Int_t nlayers The number of ITS layers also set the size of the arrays
189 // Int_t *nlads an array of the number of ladders for each layer. This
190 // array must be nlayers long.
191 // Int_t *ndets an array of the number of detectors per ladder for each
192 // layer. This array must be nlayers long.
193 // Int_t mods The number of modules. Typically the sum of all the
194 // detectors on every layer and ladder.
85f1e34a 195 // Outputs:
023ae34b 196 // none
197 // Return:
198 // A properly inilized AliITSgeom object.
199
200 fGm.SetOwner(kTRUE);
201 fShape.SetOwner(kTRUE);
202 return;
203}
204//______________________________________________________________________
205void AliITSgeom::Init(Int_t itype,Int_t nlayers,const Int_t *nlads,
206 const Int_t *ndets,Int_t mods){
207 // A simple Inilizer to set basic geometry class variables
208 // Inputs:
209 // Int_t itype the type of transformation kept.
210 // bit 0 => Standard GEANT
211 // bit 1 => ITS tracking
212 // bit 2 => A change in the coordinate system has been made.
213 // others are still to be defined as needed.
214 // Int_t nlayers The number of ITS layers also set the size of the arrays
215 // Int_t *nlads an array of the number of ladders for each layer. This
216 // array must be nlayers long.
217 // Int_t *ndets an array of the number of detectors per ladder for each
218 // layer. This array must be nlayers long.
219 // Int_t mods The number of modules. Typically the sum of all the
220 // detectors on every layer and ladder.
221 // Outputs:
222 // none
223 // Return:
224 // A properly inilized AliITSgeom object.
8253cd9a 225
023ae34b 226 fVersion = "GEANT"; // Transformation version.
227 fTrans = itype; // Flag to keep track of which transformation
228 fNmodules = mods; // The total number of modules
229 fNlayers = nlayers; // The number of layers.
230 fNlad.Set(nlayers,nlads);//[] Array of the number of ladders/layer(layer)
231 fNdet.Set(nlayers,ndets);//[] Array of the number of detector/ladder(layer)
232 fGm.Clear();
233 fGm.Expand(mods); // Structure of translation. and rotation.
234 fGm.SetOwner(kTRUE);
235 fShape.Clear();
236 fShape.Expand(5); // Array of shapes and detector information.
237 fShape.SetOwner(kTRUE);
8253cd9a 238 return;
58005f18 239}
8253cd9a 240//______________________________________________________________________
023ae34b 241void AliITSgeom::CreateMatrix(Int_t mod,Int_t lay,Int_t lad,Int_t det,
242 AliITSDetector idet,const Double_t tran[3],
243 const Double_t rot[10]){
85f1e34a 244 // Given the translation vector tran[3] and the rotation matrix rot[1],
245 // this function creates and adds to the TObject Array fGm the
246 // AliITSgeomMatrix object.
85f1e34a 247 // The rot[10] matrix is set up like:
248 /* / rot[0] rot[1] rot[2] \
249 // | rot[3] rot[4] rot[5] |
250 // \ rot[6] rot[7] rot[8] / if(rot[9]!=0) then the Identity matrix
251 // is used regardless of the values in rot[0]-rot[8].
252 */
023ae34b 253 // Inputs:
254 // Int_t mod The module number. The location in TObjArray
255 // Int_t lay The layer where this module is
256 // Int_t lad On which ladder this module is
257 // Int_t det Which detector on this ladder this module is
258 // AliITSDetector idet The type of detector see AliITSgeom.h
259 // Double_t tran[3] The translation vector
260 // Double_t rot[10] The rotation matrix.
261 // Outputs:
262 // none
263 // Return:
264 // none.
8253cd9a 265 Int_t id[3];
266 Double_t r[3][3] = {{1.0,0.0,0.0},{0.0,1.0,0.0},{0.0,0.0,1.0}};
58005f18 267
023ae34b 268 if(mod<0||mod>=fGm.GetSize()){
269 Error("CreateMatrix","mod=%d is out of bounds max value=%d",mod,
270 fGm.GetSize());
271 return;
272 } // end if
273 delete fGm.At(mod);
8253cd9a 274 id[0] = lay; id[1] = lad; id[2] = det;
275 if(rot[9]!=0.0) { // null rotation
023ae34b 276 r[0][0] = rot[0]; r[0][1] = rot[1]; r[0][2] = rot[2];
277 r[1][0] = rot[3]; r[1][1] = rot[4]; r[1][2] = rot[5];
278 r[2][0] = rot[6]; r[2][1] = rot[7]; r[2][2] = rot[8];
8253cd9a 279 } // end if
023ae34b 280 fGm.AddAt(new AliITSgeomMatrix(idet,id,r,tran),mod);
8253cd9a 281}
85f1e34a 282//______________________________________________________________________
58005f18 283AliITSgeom::~AliITSgeom(){
85f1e34a 284 // The destructor for the AliITSgeom class. If the arrays fNlad,
285 // fNdet, or fGm have had memory allocated to them, there pointer values
286 // are non zero, then this memory space is freed and they are set
287 // to zero. In addition, fNlayers is set to zero. The destruction of
288 // TObjArray fShape is, by default, handled by the TObjArray destructor.
023ae34b 289 // Inputs:
290 // none.
291 // Outputs:
292 // none.
293 // Return:
294 // none.
85f1e34a 295
023ae34b 296 return;
58005f18 297}
269f57ed 298//______________________________________________________________________
299void AliITSgeom::ReadNewFile(const char *filename){
023ae34b 300 // It is generally preferred to define the geometry in AliITSgeom
85f1e34a 301 // directly from the GEANT geometry, see AliITSvPPRasymm.cxx for
302 // and example. Under some circumstances this may not be possible.
303 // This function will read in a formatted file for all of the
304 // information needed to define the geometry in AliITSgeom.
305 // Unlike the older file format, this file may contain comments
306 // and the order of the data does not need to be completely
307 // respected. A file can be created using the function WriteNewFile
308 // defined below.
023ae34b 309 // Inputs:
310 // const char *filename The file name of the file to be read in.
311 // Outputs:
312 // none
313 // Return:
314 // none.
8253cd9a 315 Int_t ncmd=9;
5c9c741e 316 const char *cmda[]={"Version" ,"fTrans" ,"fNmodules",
317 "fNlayers" ,"fNladers","fNdetectors",
318 "fNDetectorTypes","fShape" ,"Matrix"};
8253cd9a 319 Int_t i,j,lNdetTypes,ldet;
320 char cmd[20],c;
164da35c 321 AliITSgeomMatrix *m=0;
322 ifstream *fp=0;
323 char *filtmp=0;
023ae34b 324 Bool_t arrayGm = kFALSE, arrayShape = kFALSE;
8253cd9a 325
326 filtmp = gSystem->ExpandPathName(filename);
f77f13c8 327 AliInfo(Form("Reading New .det file %s",filtmp));
8253cd9a 328 fp = new ifstream(filtmp,ios::in); // open file to write
329 while(fp->get(c)!=NULL){ // for ever loop
023ae34b 330 if(c==' ') continue; // remove blanks
331 if(c=='\n') continue;
332 if(c=='#' || c=='!') {while(fp->get(c)) if(c=='\n') break; continue;}
333 if(c=='/'){
334 fp->get(c);{
335 if(c=='/') {while(fp->get(c)) if(c=='\n') break; continue;}
336 if(c=='*'){
337 NotYet:
338 while(fp->get(c)) if(c=='*') break;
339 fp->get(c);{
340 if(c=='/') continue;
341 goto NotYet;
342 } //
343 } // end if c=='*'
344 } // end if second /
345 } // end if first /
346 fp->putback(c);
347 *fp >> cmd;
348 for(i=0;i<ncmd;i++) if(strcmp(cmd,cmda[i])==0) break;
349 switch (i){
350 case 0: // Version
5cf690c1 351 while(isspace(fp->peek())) fp->get(); // skip spaces
352 if(isdigit(fp->peek())){ // new TString
353 *fp >> j;
354 fVersion.Resize(j);
355 for(j=0;j<fVersion.Length();j++) *fp >> fVersion[j];
356 }else{
357 fVersion.Resize(20);
358 for(j=0;isprint(fp->peek())&&j<20;j++) *fp >> fVersion[j];
359 } // end if isdigit
023ae34b 360 break;
361 case 1: // fTrans
362 *fp >> fTrans;
363 break;
364 case 2: // fNModules
365 *fp >> fNmodules;
366 fGm.Clear();
367 fGm.Expand(fNmodules);
368 fGm.SetOwner(kTRUE);
369 arrayGm = kTRUE;
370 break;
371 case 3: // fNlayers
372 *fp >> fNlayers;
373 fNlad.Set(fNlayers);
374 fNdet.Set(fNlayers);
375 break;
376 case 4: // fNladers
377 for(j=0;j<fNlayers;j++) *fp >> fNlad[j];
378 break;
379 case 5: // fNdetectors
380 for(j=0;j<fNlayers;j++) *fp >> fNdet[j];
381 break;
382 case 6: // fNDetectorTypes
383 *fp >> lNdetTypes;
384 fShape.Clear();
385 fShape.Expand(lNdetTypes);
386 fShape.SetOwner(kTRUE);
387 arrayShape = kTRUE;
388 break;
389 case 7: // fShape
390 *fp >> ldet;
391 if(!arrayShape) fShape.Expand(5);
392 fShape.SetOwner(kTRUE);
393 switch (ldet){
394 case kSPD :{
395 AliITSgeomSPD *spd = new AliITSgeomSPD();
396 *fp >> *spd;
397 ReSetShape(ldet,spd);
398 } break;
399 case kSDD : case kSDDp:{
400 AliITSgeomSDD *sdd = new AliITSgeomSDD();
401 *fp >> *sdd;
402 ReSetShape(ldet,sdd);
403 }break;
404 case kSSD : case kSSDp :{
405 AliITSgeomSSD *ssd = new AliITSgeomSSD();
406 *fp >> *ssd;
407 ReSetShape(ldet,ssd);
408 }break;
409 default:{
410 AliError(Form("Unknown fShape type number=%d c=%c",ldet,c));
411 while(fp->get(c)) if(c=='\n') break; // skip to end of line.
412 }break;
413 } // end switch
414 break;
415 case 8: // Matrix
416 *fp >> ldet;
417 if(!arrayGm){
418 fGm.Clear();
419 fGm.Expand(2270);
420 arrayGm = kTRUE;
421 } // end if
422 if(ldet<0||ldet>=fGm.GetSize()){
423 Error("ReadNewFile","ldet<0||ldet>=fGm.GetSize()=%d",
424 ldet,fGm.GetSize());
425 return;
8253cd9a 426 } // end if
023ae34b 427 delete fGm.At(ldet);
428 fGm.AddAt((TObject*)new AliITSgeomMatrix(),ldet);
429 m = (AliITSgeomMatrix*) fGm.At(ldet);
430 *fp >> *m;
431 m = 0;
432 break;
433 default:
434 AliError(Form("ReadNewFile","Data line i=%d c=%c",i,c));
435 while(fp->get(c)) if(c=='\n') break; // skip this line
436 break;
437 } // end switch i
8253cd9a 438 } // end while
439 delete fp;
440
441 return;
442}
443//______________________________________________________________________
5cf690c1 444void AliITSgeom::WriteNewFile(const char *filename)const{
023ae34b 445 // Writes AliITSgeom, AliITSgeomMatrix, and the defined
446 // AliITSgeomS*D classes to a file in a format that
447 // is more readable and commendable.
448 // Inputs:
449 // const char *filename The file name of the file to be write to.
450 // Outputs:
451 // none
452 // Return:
453 // none
8253cd9a 454 ofstream *fp;
455 Int_t i;
456 char *filtmp;
457
458 filtmp = gSystem->ExpandPathName(filename);
459 fp = new ofstream(filtmp,ios::out); // open file to write
460 *fp << "//Comment lines begin with two //, one #, or one !" << endl;
461 *fp << "#Blank lines are skipped including /* and */ sections." << endl;
462 *fp << "!and, in principle the order of the lines is not important" <<endl;
463 *fp << "/* In AliITSgeom.h are defined an enumerated type called" << endl;
464 *fp << " AliITSDetectors These are kSPD=" << (Int_t) kSPD ;
465 *fp << ", kSDD=" << (Int_t) kSDD << ", kSSD=" << (Int_t) kSSD;
5c9c741e 466 *fp << ", kSSDp=" << (Int_t) kSSDp << ", and kSDDp=" << (Int_t) kSDDp;
467 *fp << "*/" << endl;
023ae34b 468 *fp << "Version "<< fVersion.Length()<<" " << fVersion.Data() << endl;//This should be consistent
469 // with the geometry version.
8253cd9a 470 *fp << "fTrans " << fTrans << endl;
471 *fp << "fNmodules " << fNmodules << endl;
472 *fp << "fNlayers " << fNlayers << endl;
473 *fp << "fNladers ";
474 for(i=0;i<fNlayers;i++) *fp << fNlad[i] << " ";
475 *fp << endl;
476 *fp << "fNdetectors ";
477 for(i=0;i<fNlayers;i++) *fp << fNdet[i] << " ";
478 *fp << endl;
023ae34b 479 *fp << "fNDetectorTypes " << fShape.GetEntriesFast() << endl;
480 for(i=0;i<fShape.GetEntriesFast();i++){
8253cd9a 481 if(!IsShapeDefined(i)) continue; // only print out used shapes.
482 switch (i){
483 case kSPD :
484 *fp << "fShape " << (Int_t) kSPD << " ";
023ae34b 485 *fp << *((AliITSgeomSPD*)(fShape.At(i)));
8253cd9a 486 break;
487 case kSDD :
488 *fp << "fShape " << (Int_t) kSDD << " ";
023ae34b 489 *fp << *((AliITSgeomSDD*)(fShape.At(i)));
8253cd9a 490 break;
491 case kSSD : case kSSDp :
492 *fp << "fShape " << i << " ";
023ae34b 493 *fp << *((AliITSgeomSSD*)(fShape.At(i)));
8253cd9a 494 break;
495 default:
496 Error("AliITSgeom::WriteNewFile","Unknown Shape value");
497 } // end switch (i)
498 } // end for i
499 for(i=0;i<fNmodules;i++){
500 *fp << "Matrix " << i << " ";
501 *fp << *GetGeomMatrix(i);
502 } // end for i
503 *fp << "//End of File" << endl;;
504
505 delete fp;
269f57ed 506 return;
507}
85f1e34a 508//______________________________________________________________________
023ae34b 509AliITSgeom::AliITSgeom(const char *filename):
510TObject(),
511fVersion("test"),// Transformation version.
512fTrans(0), // Flag to keep track of which transformation
513fNmodules(0), // The total number of modules
514fNlayers(0), // The number of layers.
515fNlad(), // TArrayI of the number of ladders/layer(layer)
516fNdet(), // TArrayI of the number of detector/ladder(layer)
517fGm(0,0), // TObjArray Structure of translation. and rotation.
518fShape(0,0) // TObjArray of detector geom.
519{
85f1e34a 520 // The constructor for the AliITSgeom class. All of the data to fill
521 // this structure is read in from the file given my the input filename.
023ae34b 522 // Inputs:
523 // const char *filename The file name of the file to be read in.
524 // Outputs:
525 // none
526 // Return:
527 // An AliITSgeom class initialized from a file.
85f1e34a 528 FILE *pf=0;
529 Int_t i,lm=0,id[3];
530 Int_t l,a,d;
531 Float_t x,y,z,o,p,q,r,s,t;
532 Double_t rot6[6],tran[3];
533 char buf[200],*buff=0; // input character buffer;
023ae34b 534 char *filtmp;
58005f18 535
85f1e34a 536 filtmp = gSystem->ExpandPathName(filename);
023ae34b 537 Info("AliITSgeom","reading old .det file %s",filtmp);
538 fVersion="GEANT5";
85f1e34a 539 pf = fopen(filtmp,"r");
540
541 fNlayers = 6; // set default number of ladders
023ae34b 542 TryAgain:
543 fNlad.Set(fNlayers);
544 fNdet.Set(fNlayers);
85f1e34a 545 fNmodules = 0;
546 // find the number of ladders and detectors in this geometry.
547 for(i=0;i<fNlayers;i++){fNlad[i]=fNdet[i]=0;} // zero out arrays
548 while(fgets(buf,200,pf)!=NULL){ // for ever loop
023ae34b 549 for(i=0;i<200;i++)if(buf[i]!=' '){ // remove blank spaces.
550 buff = &(buf[i]);
551 break;
552 } // end for i
553 // remove blank lines and comments.
554 if(buff[0]=='\n'||buff[0]=='#'||buff[0]=='!'||
555 (buff[0]=='/'&&buff[1]=='/')) continue;
556 if(isalpha(buff[0])) { // must be the new file formated file.
269f57ed 557 fclose(pf);
269f57ed 558 ReadNewFile(filename);
559 return;
023ae34b 560 } // end if isalpha(buff[0])
561 sscanf(buff,"%d %d %d %f %f %f %f %f %f %f %f %f",
562 &l,&a,&d,&x,&y,&z,&o,&p,&q,&r,&s,&t);
563 if(l>lm) lm = l;
564 if(l<1 || l>fNlayers) {
5cf690c1 565 printf("error in file %s layer=%d min. is 1 max is %d Trying new format\n",
023ae34b 566 filename,l,fNlayers);
5cf690c1 567 fclose(pf);
568 ReadNewFile(filename);
569 return;
570 //continue;
023ae34b 571 }// end if l
572 fNmodules++;
573 if(l<=fNlayers&&fNlad[l-1]<a) fNlad[l-1] = a;
574 if(l<=fNlayers&&fNdet[l-1]<d) fNdet[l-1] = d;
85f1e34a 575 } // end while ever loop
576 if(lm>fNlayers){
023ae34b 577 fNlayers = lm;
578 goto TryAgain;
85f1e34a 579 } // end if lm>fNlayers
580 // counted the number of ladders and detectors now allocate space.
023ae34b 581 fGm.Expand(fNmodules);
582 fGm.SetOwner(kTRUE);
583 fShape.SetOwner(kTRUE);
58005f18 584
85f1e34a 585 // Set up Shapes for a default configuration of 6 layers.
586 fTrans = 0; // standard GEANT global/local coordinate system.
587 // prepare to read in transforms
588 lm = 0; // reuse lm as counter of modules.
589 rewind(pf); // start over reading file
590 while(fgets(buf,200,pf)!=NULL){ // for ever loop
023ae34b 591 for(i=0;i<200;i++)if(buf[i]!=' '){ // remove blank spaces.
592 buff = &(buf[i]);
593 break;
594 } // end for i
595 // remove blank lines and comments.
596 if(buff[0]=='\n'||buff[0]=='#'||buff[0]=='!'||
597 (buff[0]=='/'&&buff[1]=='/')) continue;
598 x = y = z = o = p = q = r = s = t = 0.0;
599 sscanf(buff,"%d %d %d %f %f %f %f %f %f %f %f %f",
600 &l,&a,&d,&x,&y,&z,&o,&p,&q,&r,&s,&t);
601 if(l<1 || l>fNlayers) {
602 Warning("AliITSgeom","error in file %s layer=%d min. is 1 max is %d",
603 filename,l,fNlayers);
604 continue;
605 }// end if l
606 id[0] = l;id[1] = a;id[2] = d;
607 tran[0] = tran[1] = tran[2] = 0.0;
608 tran[0] = (Double_t)x;tran[1] = (Double_t)y;tran[2] = (Double_t)z;
609 rot6[0] = rot6[1] = rot6[2] = rot6[3] = rot6[4] = rot6[5] =0.0;
610 rot6[0] = (Double_t)o;rot6[1] = (Double_t)p;rot6[2] = (Double_t)q;
611 rot6[3] = (Double_t)r;rot6[4] = (Double_t)s;rot6[5] = (Double_t)t;
612 if(lm<0||lm>=fGm.GetSize()){
613 Error("AliITSgeom(filename)","lm<0||lm>=fGm.GetSize()=%d",
614 lm,fGm.GetSize());
615 return;
616 } // end if
617 switch (l){
618 case 1: case 2: // layer 1 or2 SPD
619 fGm.AddAt(new AliITSgeomMatrix(rot6,kSPD,id,tran),lm++);
620 break;
621 case 3: case 4: // layer 3 or 4 SDD
622 fGm.AddAt(new AliITSgeomMatrix(rot6,kSDD,id,tran),lm++);
623 break;
624 case 5: case 6: // layer 5 or 6 SSD
625 fGm.AddAt(new AliITSgeomMatrix(rot6,kSSD,id,tran),lm++);
626 break;
627 } // end switch
85f1e34a 628 } // end while ever loop
629 fclose(pf);
58005f18 630}
4bfbde86 631/*
85f1e34a 632//______________________________________________________________________
7f6ab649 633AliITSgeom::AliITSgeom(const AliITSgeom &source) : TObject(source){
85f1e34a 634 // The copy constructor for the AliITSgeom class. It calls the
635 // = operator function. See the = operator function for more details.
023ae34b 636 // Inputs:
637 // AliITSgeom &source The AliITSgeom class with which to make this
638 // a copy of.
639 // Outputs:
640 // none.
641 // Return:
642 // none.
593e9459 643
644 *this = source; // Just use the = operator for now.
593e9459 645 return;
58005f18 646}
85f1e34a 647//______________________________________________________________________
7f6ab649 648AliITSgeom& AliITSgeom::operator=(const AliITSgeom &source){
85f1e34a 649 // The = operator function for the AliITSgeom class. It makes an
650 // independent copy of the class in such a way that any changes made
651 // to the copied class will not affect the source class in any way.
652 // This is required for many ITS alignment studies where the copied
653 // class is then modified by introducing some misalignment.
023ae34b 654 // Inputs:
655 // AliITSgeom &source The AliITSgeom class with which to make this
656 // a copy of.
657 // Outputs:
658 // none.
659 // Return:
660 // *this The a new copy of source.
661 Int_t i;
58005f18 662
023ae34b 663 if(this == &source) return *this; // don't assign to ones self.
58005f18 664
023ae34b 665 // if there is an old structure allocated delete it first.
666 this->fGm.Clear();
667 this->fShape.Clear();
085bb6ed 668
023ae34b 669 this->fVersion = source.fVersion;
670 this->fTrans = source.fTrans;
671 this->fNmodules = source.fNmodules;
672 this->fNlayers = source.fNlayers;
673 this->fNlad.Set(fNlayers,source.fNlad.GetArray());
674 this->fNdet.Set(fNlayers,source.fNdet.GetArray());
675 this->fShape.Expand(source.fShape.GetEntriesFast());
676 for(i=0;i<source.fShape.GetEntriesFast();i++)
677 this->fShape.AddAt(new TObject(*(source.fShape.At(i))),i);
678 this->fShape.SetOwner(kTRUE);
679 this->fGm.Expand(this->fNmodules);
680 this->fGm.SetOwner(kTRUE);
681 for(i=0;i<this->fNmodules;i++)
682 if(i<0||i>=fGm.GetSize()){
683 Error("ReadNewFile","i<0||i>=fGm.GetSize()=%d",
684 i,fGm.GetSize());
685 return *this;
686 } // end if
687 this->fGm.AddAt(new TObject(*(source.fGm.At(i))),i);
688 return *this;
85f1e34a 689}
4bfbde86 690*/
85f1e34a 691//______________________________________________________________________
5cf690c1 692Int_t AliITSgeom::GetModuleIndex(Int_t lay,Int_t lad,Int_t det)const{
85f1e34a 693 // This routine computes the module index number from the layer,
694 // ladder, and detector numbers. The number of ladders and detectors
695 // per layer is determined when this geometry package is constructed,
696 // see AliITSgeom(const char *filename) for specifics.
023ae34b 697 // Inputs:
698 // Int_t lay The layer number. Starting from 1.
699 // Int_t lad The ladder number. Starting from 1.
700 // Int_t det The detector number. Starting from 1.
701 // Outputs:
702 // none.
703 // Return:
704 // the module index number, starting from zero.
269f57ed 705 Int_t i,j,k,id[3];
593e9459 706
707 i = fNdet[lay-1] * (lad-1) + det - 1;
708 j = 0;
709 for(k=0;k<lay-1;k++) j += fNdet[k]*fNlad[k];
269f57ed 710 i = i+j;
7e932df0 711 if(i>=fNmodules) return -1;
8253cd9a 712 GetGeomMatrix(i)->GetIndex(id);
269f57ed 713 if(id[0]==lay&&id[1]==lad&&id[2]==det) return i;
714 // Array of modules fGm is not in expected order. Search for this index
715 for(i=0;i<fNmodules;i++){
023ae34b 716 GetGeomMatrix(i)->GetIndex(id);
717 if(id[0]==lay&&id[1]==lad&&id[2]==det) return i;
269f57ed 718 } // end for i
719 // This layer ladder and detector combination does not exist return -1.
720 return -1;
593e9459 721}
269f57ed 722//______________________________________________________________________
5cf690c1 723void AliITSgeom::GetModuleId(Int_t index,Int_t &lay,Int_t &lad,Int_t &det)const{
85f1e34a 724 // This routine computes the layer, ladder and detector number
725 // given the module index number. The number of ladders and detectors
726 // per layer is determined when this geometry package is constructed,
727 // see AliITSgeom(const char *filename) for specifics.
023ae34b 728 // Inputs:
729 // Int_t index The module index number, starting from zero.
730 // Outputs:
731 // Int_t lay The layer number. Starting from 1.
732 // Int_t lad The ladder number. Starting from 1.
733 // Int_t det The detector number. Starting from 1.
734 // Return:
735 // none.
269f57ed 736 Int_t id[3];
88cb7938 737 AliITSgeomMatrix *g = GetGeomMatrix(index);
269f57ed 738
023ae34b 739 if (g == 0x0){
740 Error("GetModuleId","Can not get GeoMatrix for index = %d",index);
741 lay = -1; lad = -1; det = -1;
742 }else{
743 g->GetIndex(id);
744 lay = id[0]; lad = id[1]; det = id[2];
745 }// End if
746 return;
269f57ed 747 // The old way kept for posterity.
748/*
749 Int_t i,j,k;
593e9459 750 j = 0;
751 for(k=0;k<fNlayers;k++){
58005f18 752 j += fNdet[k]*fNlad[k];
aa6248e2 753 if(j>index)break;
58005f18 754 } // end for k
755 lay = k+1;
756 i = index -j + fNdet[k]*fNlad[k];
757 j = 0;
758 for(k=0;k<fNlad[lay-1];k++){
aa6248e2 759 j += fNdet[lay-1];
760 if(j>i)break;
58005f18 761 } // end for k
762 lad = k+1;
763 det = 1+i-fNdet[lay-1]*k;
764 return;
269f57ed 765*/
58005f18 766}
85f1e34a 767//______________________________________________________________________
5cf690c1 768Int_t AliITSgeom::GetNDetTypes(Int_t &max)const{
023ae34b 769 // Finds and returns the number of detector types used and the
770 // maximum detector type value. Only counts id >=0 (no undefined
771 // values. See AliITSgeom.h for list of AliITSDetecor enumerated types.
772 // Inputs:
773 // none.
774 // Outputs:
775 // The maximum detector type used
776 // Return:
777 // The number of detector types used
778 Int_t i,*n,id;
779
780 max = -1;
781 for(i=0;i<GetIndexMax();i++){
782 id = GetModuleType(i);
783 if(id>max) max=id;
784 } // end for i
785 n = new Int_t[max+1];
786 for(i=0;i<max;i++) n[i] = 0;
787 for(i=0;i<GetIndexMax();i++){
788 id = GetModuleType(i);
789 if(id>-1)n[id]++; // note id=-1 => undefined.
790 } // end for i
791 id = 0;
792 for(i=0;i<max;i++) if(n[i]!=0) id++;
793 delete[] n;
794 return id+1;
795}
796//______________________________________________________________________
5cf690c1 797Int_t AliITSgeom::GetNDetTypes(TArrayI &maxs,AliITSDetector *types)const{
023ae34b 798 // Finds and returns the number of detector types used and the
799 // number of each detector type. Only counts id >=0 (no undefined
800 // values. See AliITSgeom.h for list of AliITSDetecor enumerated types.
801 // Inputs:
802 // none.
803 // Outputs:
804 // The maximum detector type used
805 // Return:
806 // The number of detector types used
807 Int_t i,j,*n,id,max;
808
809 max = -1;
810 for(i=0;i<GetIndexMax();i++){
811 id = GetModuleType(i);
812 if(id>max) max=id;
813 } // end for i
814 n = new Int_t[max+1];
815 for(i=0;i<max;i++) n[i] = 0;
816 for(i=0;i<GetIndexMax();i++){
817 id = GetModuleType(i);
818 if(id>-1)n[id]++; // note id=-1 => undefined.
819 } // end for i
820 id = 0;
821 for(i=0;i<=max;i++) if(n[i]!=0) id++;
822 maxs.Set(id);
823 j = 0;
824 for(i=0;i<=max;i++) if(n[i]!=0){
825 maxs[j] = n[i];
826 types[j++] = (AliITSDetector) i;
827 } // end for i/end if
828 delete[] n;
829 return id;
830}
831//______________________________________________________________________
5cf690c1 832Int_t AliITSgeom::GetStartDet(Int_t dtype)const{
85f1e34a 833 // returns the starting module index value for a give type of detector id.
834 // This assumes that the detector types are different on different layers
835 // and that they are not mixed up.
023ae34b 836 // Inputs:
837 // Int_t dtype A detector type number. 0 for SPD, 1 for SDD, and 2 for SSD.
838 // Outputs:
839 // none.
840 // Return:
841 // the module index for the first occurrence of that detector type.
85f1e34a 842
843 switch(dtype){
844 case 0:
023ae34b 845 return GetModuleIndex(1,1,1);
846 break;
85f1e34a 847 case 1:
023ae34b 848 return GetModuleIndex(3,1,1);
849 break;
85f1e34a 850 case 2:
023ae34b 851 return GetModuleIndex(5,1,1);
852 break;
85f1e34a 853 default:
023ae34b 854 Warning("GetStartDet","undefined detector type %d",dtype);
855 return 0;
85f1e34a 856 } // end switch
857
858 Warning("GetStartDet","undefined detector type %d",dtype);
859 return 0;
085bb6ed 860}
85f1e34a 861//______________________________________________________________________
5cf690c1 862Int_t AliITSgeom::GetLastDet(Int_t dtype)const{
85f1e34a 863 // returns the last module index value for a give type of detector id.
864 // This assumes that the detector types are different on different layers
865 // and that they are not mixed up.
023ae34b 866 // Inputs:
867 // Int_t dtype A detector type number. 0 for SPD, 1 for SDD, and 2 for SSD.
868 // Outputs:
869 // Return:
870 // the module index for the last occurrence of that detector type.
85f1e34a 871
a1e4be5b 872 switch((AliITSDetector)dtype){
873 case kSPD:
874 return GetModuleIndex(3,1,1)-1;
023ae34b 875 break;
a1e4be5b 876 case kSDD:
877 return GetModuleIndex(5,1,1)-1;
023ae34b 878 break;
a1e4be5b 879 case kSSD:
e8d3012e 880 return GetIndexMax()-1;
023ae34b 881 break;
a1e4be5b 882 case kSSDp: case kSDDp: case kND:
85f1e34a 883 default:
023ae34b 884 Warning("GetLastDet","undefined detector type %d",dtype);
885 return 0;
85f1e34a 886 } // end switch
887
888 Warning("GetLastDet","undefined detector type %d",dtype);
889 return 0;
085bb6ed 890}
85f1e34a 891//______________________________________________________________________
5cf690c1 892void AliITSgeom::PrintComparison(FILE *fp,AliITSgeom *other)const{
85f1e34a 893 // This function was primarily created for diagnostic reasons. It
894 // print to a file pointed to by the file pointer fp the difference
023ae34b 895 // between two AliITSgeom classes. The format of the file is basically,
85f1e34a 896 // define d? to be the difference between the same element of the two
897 // classes. For example dfrx = this->GetGeomMatrix(i)->frx
898 // - other->GetGeomMatrix(i)->frx.
899 // if(at least one of dfx0, dfy0, dfz0,dfrx,dfry,dfrz are non zero) then
900 // print layer ladder detector dfx0 dfy0 dfz0 dfrx dfry dfrz
901 // if(at least one of the 9 elements of dfr[] are non zero) then print
902 // layer ladder detector dfr[0] dfr[1] dfr[2]
903 // dfr[3] dfr[4] dfr[5]
904 // dfr[6] dfr[7] dfr[8]
905 // Only non zero values are printed to save space. The differences are
906 // typical written to a file because there are usually a lot of numbers
907 // printed out and it is usually easier to read them in some nice editor
908 // rather than zooming quickly past you on a screen. fprintf is used to
909 // do the printing. The fShapeIndex difference is not printed at this time.
023ae34b 910 // Inputs:
911 // FILE *fp A file pointer to an opened file for writing in which
912 // the results of the comparison will be written.
913 // AliITSgeom *other The other AliITSgeom class to which this one is
914 // being compared.
915 // Outputs:
916 // none.
917 // Return:
918 // none.
85f1e34a 919 Int_t i,j,idt[3],ido[3];
920 Double_t tt[3],to[3]; // translation
921 Double_t rt[3],ro[3]; // phi in radians
023ae34b 922 Double_t mt[3][3],mo[3][3]; // matrices
85f1e34a 923 AliITSgeomMatrix *gt,*go;
924 Bool_t t;
925
926 for(i=0;i<this->fNmodules;i++){
023ae34b 927 gt = this->GetGeomMatrix(i);
928 go = other->GetGeomMatrix(i);
929 gt->GetIndex(idt);
930 go->GetIndex(ido);
931 t = kFALSE;
932 for(i=0;i<3;i++) t = t&&idt[i]!=ido[i];
933 if(t) fprintf(fp,"%4.4d %1.1d %2.2d %2.2d %1.1d %2.2d %2.2d\n",i,
934 idt[0],idt[1],idt[2],ido[0],ido[1],ido[2]);
935 gt->GetTranslation(tt);
936 go->GetTranslation(to);
937 gt->GetAngles(rt);
938 go->GetAngles(ro);
939 t = kFALSE;
940 for(i=0;i<3;i++) t = t&&tt[i]!=to[i];
941 if(t) fprintf(fp,"%1.1d %2.2d %2.2d dTrans=%f %f %f drot=%f %f %f\n",
942 idt[0],idt[1],idt[2],
943 tt[0]-to[0],tt[1]-to[1],tt[2]-to[2],
944 rt[0]-ro[0],rt[1]-ro[1],rt[2]-ro[2]);
945 t = kFALSE;
946 gt->GetMatrix(mt);
947 go->GetMatrix(mo);
948 for(i=0;i<3;i++)for(j=0;j<3;j++) t = mt[i][j] != mo[i][j];
949 if(t){
950 fprintf(fp,"%1.1d %2.2d %2.2d dfr= %e %e %e\n",
951 idt[0],idt[1],idt[2],
952 mt[0][0]-mo[0][0],mt[0][1]-mo[0][1],mt[0][2]-mo[0][2]);
953 fprintf(fp," dfr= %e %e %e\n",
954 mt[1][0]-mo[1][0],mt[1][1]-mo[1][1],mt[1][2]-mo[1][2]);
955 fprintf(fp," dfr= %e %e %e\n",
956 mt[2][0]-mo[2][0],mt[2][1]-mo[2][1],mt[2][2]-mo[2][2]);
957 } // end if t
85f1e34a 958 } // end for i
959 return;
58005f18 960}
85f1e34a 961//______________________________________________________________________
5cf690c1 962void AliITSgeom::PrintData(FILE *fp,Int_t lay,Int_t lad,Int_t det)const{
85f1e34a 963 // This function prints out the coordinate transformations for
964 // the particular detector defined by layer, ladder, and detector
965 // to the file pointed to by the File pointer fp. fprintf statements
966 // are used to print out the numbers. The format is
967 // layer ladder detector Trans= fx0 fy0 fz0 rot= frx fry frz
968 // Shape=fShapeIndex
969 // dfr= fr[0] fr[1] fr[2]
970 // dfr= fr[3] fr[4] fr[5]
971 // dfr= fr[6] fr[7] fr[8]
972 // By indicating which detector, some control over the information
973 // is given to the user. The output it written to the file pointed
974 // to by the file pointer fp. This can be set to stdout if you want.
023ae34b 975 // Inputs:
976 // FILE *fp A file pointer to an opened file for writing in which
977 // the results of the comparison will be written.
978 // Int_t lay The layer number. Starting from 1.
979 // Int_t lad The ladder number. Starting from 1.
980 // Int_t det The detector number. Starting from 1.
981 // Outputs:
982 // none
983 // Return:
984 // none.
85f1e34a 985 AliITSgeomMatrix *gt;
986 Double_t t[3],r[3],m[3][3];
987
988 gt = this->GetGeomMatrix(GetModuleIndex(lay,lad,det));
989 gt->GetTranslation(t);
990 gt->GetAngles(r);
991 fprintf(fp,"%1.1d %2.2d %2.2d Trans=%f %f %f rot=%f %f %f Shape=%d\n",
023ae34b 992 lay,lad,det,t[0],t[1],t[2],r[0],r[1],r[2],
993 gt->GetDetectorIndex());
85f1e34a 994 gt->GetMatrix(m);
995 fprintf(fp," dfr= %e %e %e\n",m[0][0],m[0][1],m[0][2]);
996 fprintf(fp," dfr= %e %e %e\n",m[1][0],m[1][1],m[1][2]);
997 fprintf(fp," dfr= %e %e %e\n",m[2][0],m[2][1],m[2][2]);
998 return;
58005f18 999}
85f1e34a 1000//______________________________________________________________________
5cf690c1 1001ofstream & AliITSgeom::PrintGeom(ofstream &rb)const{
85f1e34a 1002 // Stream out an object of class AliITSgeom to standard output.
023ae34b 1003 // Intputs:
1004 // ofstream &rb The output streaming buffer.
1005 // Outputs:
1006 // none.
1007 // Return:
1008 // ofstream &rb The output streaming buffer.
1009 Int_t i,nshapes;
593e9459 1010
85f1e34a 1011 rb.setf(ios::scientific);
1012 rb << fTrans << " ";
1013 rb << fNmodules << " ";
1014 rb << fNlayers << " ";
1015 for(i=0;i<fNlayers;i++) rb << fNlad[i] << " ";
1016 for(i=0;i<fNlayers;i++) rb << fNdet[i] << "\n";
269f57ed 1017 for(i=0;i<fNmodules;i++) {
023ae34b 1018 rb <<setprecision(16) << *(GetGeomMatrix(i)) << "\n";
269f57ed 1019 } // end for i
023ae34b 1020 nshapes = fShape.GetEntries();
1021 rb << nshapes <<endl;
1022 for(i=0;i<nshapes;i++) if(fShape.At(i)!=0) switch (i){
164da35c 1023 case kSPD:
023ae34b 1024 rb << kSPD <<","<< (AliITSgeomSPD*)(fShape.At(kSPD));
1025 break;
164da35c 1026 case kSDD:
023ae34b 1027 rb << kSDD <<","<< (AliITSgeomSDD*)(fShape.At(kSDD));
1028 break;
164da35c 1029 case kSSD:
023ae34b 1030 rb << kSSD <<","<< (AliITSgeomSSD*)(fShape.At(kSSD));
1031 break;
164da35c 1032 case kSSDp:
023ae34b 1033 rb << kSSDp <<","<< (AliITSgeomSSD*)(fShape.At(kSSDp));
1034 break;
164da35c 1035 case kSDDp:
023ae34b 1036 rb << kSDDp <<","<< (AliITSgeomSDD*)(fShape.At(kSDDp));
1037 break;
164da35c 1038 } // end for i / switch
85f1e34a 1039 return rb;
593e9459 1040}
85f1e34a 1041//______________________________________________________________________
1042ifstream & AliITSgeom::ReadGeom(ifstream &rb){
1043 // Stream in an object of class AliITSgeom from standard input.
023ae34b 1044 // Intputs:
1045 // ifstream &rb The input streaming buffer.
1046 // Outputs:
1047 // none.
1048 // Return:
1049 // ifstream &rb The input streaming buffer.
164da35c 1050 Int_t i,j;
269f57ed 1051
023ae34b 1052 fGm.Clear();
85f1e34a 1053
1054 rb >> fTrans >> fNmodules >> fNlayers;
023ae34b 1055 fNlad.Set(fNlayers);
1056 fNdet.Set(fNlayers);
85f1e34a 1057 for(i=0;i<fNlayers;i++) rb >> fNlad[i];
1058 for(i=0;i<fNlayers;i++) rb >> fNdet[i];
023ae34b 1059 fGm.Expand(fNmodules);
1060 fGm.SetOwner(kTRUE);
85f1e34a 1061 for(i=0;i<fNmodules;i++){
023ae34b 1062 if(i<0||i>=fGm.GetSize()){
1063 Error("ReadGeom","i<0||i>=fGm.GetSize()=%d",
1064 i,fGm.GetSize());
1065 return rb;
1066 } // end if
1067 fGm.AddAt(new AliITSgeomMatrix,i);
1068 rb >> *(GetGeomMatrix(i));
85f1e34a 1069 } // end for i
164da35c 1070 rb >> i;
023ae34b 1071 fShape.Expand(i);
1072 fShape.SetOwner(kTRUE);
1073 for(i=0;i<fShape.GetEntries();i++) {
1074 rb >> j;
1075 switch (j){
1076 case kSPD:{
1077 AliITSgeomSPD *s = new AliITSgeomSPD();
1078 rb >> *s;
1079 fShape.AddAt(s,kSPD);}
1080 break;
1081 case kSDD:{
1082 AliITSgeomSDD *s = new AliITSgeomSDD();
1083 rb >> *s;
1084 fShape.AddAt(s,kSDD);}
1085 break;
1086 case kSSD:{
1087 AliITSgeomSSD *s = new AliITSgeomSSD();
1088 rb >> *s;
1089 fShape.AddAt(s,kSSD);}
1090 break;
1091 case kSSDp:{
1092 AliITSgeomSSD *s = new AliITSgeomSSD();
1093 rb >> *s;
1094 fShape.AddAt(s,kSSDp);}
1095 break;
1096 case kSDDp:{
1097 AliITSgeomSDD *s = new AliITSgeomSDD();
1098 rb >> *s;
1099 fShape.AddAt(s,kSDDp);}
1100 break;
1101 } // end switch
164da35c 1102 } // end for i
85f1e34a 1103 return rb;
593e9459 1104}
593e9459 1105//______________________________________________________________________
269f57ed 1106// The following routines modify the transformation of "this"
1107// geometry transformations in a number of different ways.
593e9459 1108//______________________________________________________________________
269f57ed 1109void AliITSgeom::GlobalChange(const Float_t *tran,const Float_t *rot){
85f1e34a 1110 // This function performs a Cartesian translation and rotation of
1111 // the full ITS from its default position by an amount determined by
1112 // the three element arrays tran and rot. If every element
1113 // of tran and rot are zero then there is no change made
1114 // the geometry. The change is global in that the exact same translation
1115 // and rotation is done to every detector element in the exact same way.
1116 // The units of the translation are those of the Monte Carlo, usually cm,
1117 // and those of the rotation are in radians. The elements of tran
1118 // are tran[0] = x, tran[1] = y, and tran[2] = z.
1119 // The elements of rot are rot[0] = rx, rot[1] = ry, and
1120 // rot[2] = rz. A change in x will move the hole ITS in the ALICE
1121 // global x direction, the same for a change in y. A change in z will
1122 // result in a translation of the ITS as a hole up or down the beam line.
1123 // A change in the angles will result in the inclination of the ITS with
1124 // respect to the beam line, except for an effective rotation about the
1125 // beam axis which will just rotate the ITS as a hole about the beam axis.
023ae34b 1126 // Intputs:
1127 // Float_t *tran A 3 element array representing the global translations.
1128 // the elements are x,y,z in cm.
1129 // Float_t *rot A 3 element array representing the global rotation
1130 // angles about the three axis x,y,z in radians
1131 // Outputs:
1132 // none.
1133 // Return:
1134 // none.
85f1e34a 1135 Int_t i,j;
1136 Double_t t[3],r[3];
1137 AliITSgeomMatrix *g;
1138
1139 fTrans = (fTrans && 0xfffd) + 2; // set bit 1 true.
1140 for(i=0;i<fNmodules;i++){
023ae34b 1141 g = this->GetGeomMatrix(i);
1142 g->GetTranslation(t);
1143 g->GetAngles(r);
1144 for(j=0;j<3;j++){
1145 t[j] += tran[j];
1146 r[j] += rot[j];
1147 } // end for j
1148 g->SetTranslation(t);
1149 g->SetAngles(r);
85f1e34a 1150 } // end for i
1151 return;
593e9459 1152}
85f1e34a 1153//______________________________________________________________________
1154void AliITSgeom::GlobalCylindericalChange(const Float_t *tran,
1155 const Float_t *rot){
1156 // This function performs a cylindrical translation and rotation of
1157 // each ITS element by a fixed about in radius, rphi, and z from its
1158 // default position by an amount determined by the three element arrays
1159 // tran and rot. If every element of tran and
1160 // rot are zero then there is no change made the geometry. The
1161 // change is global in that the exact same distance change in translation
1162 // and rotation is done to every detector element in the exact same way.
1163 // The units of the translation are those of the Monte Carlo, usually cm,
1164 // and those of the rotation are in radians. The elements of tran
1165 // are tran[0] = r, tran[1] = rphi, and tran[2] = z.
1166 // The elements of rot are rot[0] = rx, rot[1] = ry, and
1167 // rot[2] = rz. A change in r will results in the increase of the
1168 // radius of each layer by the same about. A change in rphi will results in
1169 // the rotation of each layer by a different angle but by the same
1170 // circumferential distance. A change in z will result in a translation
1171 // of the ITS as a hole up or down the beam line. A change in the angles
1172 // will result in the inclination of the ITS with respect to the beam
1173 // line, except for an effective rotation about the beam axis which will
1174 // just rotate the ITS as a hole about the beam axis.
023ae34b 1175 // Intputs:
1176 // Float_t *tran A 3 element array representing the global translations.
1177 // the elements are r,theta,z in cm/radians.
1178 // Float_t *rot A 3 element array representing the global rotation
1179 // angles about the three axis x,y,z in radians
1180 // Outputs:
1181 // none.
1182 // Return:
1183 // none.
85f1e34a 1184 Int_t i,j;
1185 Double_t t[3],ro[3],r,r0,phi,rphi;
1186 AliITSgeomMatrix *g;
1187
1188 fTrans = (fTrans && 0xfffd) + 2; // set bit 1 true.
1189 for(i=0;i<fNmodules;i++){
023ae34b 1190 g = this->GetGeomMatrix(i);
1191 g->GetTranslation(t);
1192 g->GetAngles(ro);
1193 r = r0= TMath::Hypot(t[1],t[0]);
1194 phi = TMath::ATan2(t[1],t[0]);
1195 rphi = r0*phi;
1196 r += tran[0];
1197 rphi += tran[1];
1198 phi = rphi/r0;
1199 t[0] = r*TMath::Cos(phi);
1200 t[1] = r*TMath::Sin(phi);
1201 t[2] += tran[2];
1202 for(j=0;j<3;j++){
1203 ro[j] += rot[j];
1204 } // end for j
1205 g->SetTranslation(t);
1206 g->SetAngles(ro);
85f1e34a 1207 } // end for i
1208 return;
593e9459 1209}
85f1e34a 1210//______________________________________________________________________
269f57ed 1211void AliITSgeom::RandomChange(const Float_t *stran,const Float_t *srot){
85f1e34a 1212 // This function performs a Gaussian random displacement and/or
1213 // rotation about the present global position of each active
1214 // volume/detector of the ITS. The sigma of the random displacement
1215 // is determined by the three element array stran, for the
1216 // x y and z translations, and the three element array srot,
1217 // for the three rotation about the axis x y and z.
023ae34b 1218 // Intputs:
1219 // Float_t *stran A 3 element array representing the global translations
1220 // variances. The elements are x,y,z in cm.
1221 // Float_t *srot A 3 element array representing the global rotation
1222 // angles variances about the three axis x,y,z in radians.
1223 // Outputs:
1224 // none.
1225 // Return:
1226 // none.
85f1e34a 1227 Int_t i,j;
1228 Double_t t[3],r[3];
1229 AliITSgeomMatrix *g;
1230
1231 fTrans = (fTrans && 0xfffd) + 2; // set bit 1 true.
1232 for(i=0;i<fNmodules;i++){
023ae34b 1233 g = this->GetGeomMatrix(i);
1234 g->GetTranslation(t);
1235 g->GetAngles(r);
1236 for(j=0;j<3;j++){
1237 t[j] += gRandom->Gaus(0.0,stran[j]);
1238 r[j] += gRandom->Gaus(0.0, srot[j]);
1239 } // end for j
1240 g->SetTranslation(t);
1241 g->SetAngles(r);
85f1e34a 1242 } // end for i
1243 return;
593e9459 1244}
85f1e34a 1245//______________________________________________________________________
269f57ed 1246void AliITSgeom::RandomCylindericalChange(const Float_t *stran,
1247 const Float_t *srot){
85f1e34a 1248 // This function performs a Gaussian random displacement and/or
1249 // rotation about the present global position of each active
1250 // volume/detector of the ITS. The sigma of the random displacement
1251 // is determined by the three element array stran, for the
1252 // r rphi and z translations, and the three element array srot,
1253 // for the three rotation about the axis x y and z. This random change
1254 // in detector position allow for the simulation of a random uncertainty
1255 // in the detector positions of the ITS.
023ae34b 1256 // Intputs:
1257 // Float_t *stran A 3 element array representing the global translations
1258 // variances. The elements are r,theta,z in cm/radians.
1259 // Float_t *srot A 3 element array representing the global rotation
1260 // angles variances about the three axis x,y,z in radians.
1261 // Outputs:
1262 // none.
1263 // Return:
1264 // none.
85f1e34a 1265 Int_t i,j;
1266 Double_t t[3],ro[3],r,r0,phi,rphi;
1267 TRandom ran;
1268 AliITSgeomMatrix *g;
1269
1270 fTrans = (fTrans && 0xfffd) + 2; // set bit 1 true.
1271 for(i=0;i<fNmodules;i++){
023ae34b 1272 g = this->GetGeomMatrix(i);
1273 g->GetTranslation(t);
1274 g->GetAngles(ro);
1275 r = r0= TMath::Hypot(t[1],t[0]);
1276 phi = TMath::ATan2(t[1],t[0]);
1277 rphi = r0*phi;
1278 r += ran.Gaus(0.0,stran[0]);
1279 rphi += ran.Gaus(0.0,stran[1]);
1280 phi = rphi/r0;
1281 t[0] = r*TMath::Cos(phi);
1282 t[1] = r*TMath::Sin(phi);
1283 t[2] += ran.Gaus(0.0,stran[2]);
1284 for(j=0;j<3;j++){
1285 ro[j] += ran.Gaus(0.0, srot[j]);
1286 } // end for j
1287 g->SetTranslation(t);
1288 g->SetAngles(ro);
85f1e34a 1289 } // end for i
1290 return;
593e9459 1291}
1292//______________________________________________________________________
5cf690c1 1293void AliITSgeom::GeantToTracking(const AliITSgeom &source){
85f1e34a 1294 // Copy the geometry data but change it to go between the ALICE
1295 // Global coordinate system to that used by the ITS tracking. A slightly
1296 // different coordinate system is used when tracking. This coordinate
1297 // system is only relevant when the geometry represents the cylindrical
1298 // ALICE ITS geometry. For tracking the Z axis is left alone but X-> -Y
1299 // and Y-> X such that X always points out of the ITS cylinder for every
1300 // layer including layer 1 (where the detectors are mounted upside down).
85f1e34a 1301 //Begin_Html
1302 /*
1303 <img src="picts/ITS/AliITSgeomMatrix_T1.gif">
1304 */
1305 //End_Html
023ae34b 1306 // Input:
1307 // AliITSgeom &source The AliITSgeom class with which to make this
1308 // a copy of.
1309 // Output:
1310 // none.
1311 // Return:
1312 // none.
85f1e34a 1313 Int_t i,j,k,l,id[3];
1314 Double_t r0[3][3],r1[3][3];
1315 Double_t a0[3][3] = {{0.,+1.,0.},{-1.,0.,0.},{0.,0.,+1.}};
1316 Double_t a1[3][3] = {{0.,-1.,0.},{+1.,0.,0.},{0.,0.,+1.}};
1317
1318 *this = source; // copy everything
1319 for(i=0;i<GetIndexMax();i++){
023ae34b 1320 GetGeomMatrix(i)->GetIndex(id);
1321 GetGeomMatrix(i)->GetMatrix(r0);
1322 if(id[0]==1){ // Layer 1 is treated different from the others.
1323 for(j=0;j<3;j++) for(k=0;k<3;k++){
1324 r1[j][k] = 0.;
1325 for(l=0;l<3;l++) r1[j][k] += a0[j][l]*r0[l][k];
1326 } // end for j,k
1327 }else{
1328 for(j=0;j<3;j++) for(k=0;k<3;k++){
1329 r1[j][k] = 0.;
1330 for(l=0;l<3;l++) r1[j][k] += a1[j][l]*r0[l][k];
1331 } // end for j,k
1332 } // end if
1333 GetGeomMatrix(i)->SetMatrix(r1);
85f1e34a 1334 } // end for i
1335 this->fTrans = (this->fTrans && 0xfffe) + 1; // set bit 0 true.
1336 return;
58005f18 1337}
269f57ed 1338//______________________________________________________________________
5cf690c1 1339Int_t AliITSgeom::GetNearest(const Double_t g[3],Int_t lay)const{
85f1e34a 1340 // Finds the Detector (Module) that is nearest the point g [cm] in
1341 // ALICE Global coordinates. If layer !=0 then the search is restricted
1342 // to Detectors (Modules) in that particular layer.
023ae34b 1343 // Inputs:
1344 // Double_t g[3] The ALICE Cartesian global coordinate from which the
1345 // distance is to be calculated with.
1346 // Int_t lay The layer to restrict the search to. If layer=0 then
1347 // all layers are searched. Default is lay=0.
1348 // Output:
1349 // none.
1350 // Return:
1351 // The module number representing the nearest module.
85f1e34a 1352 Int_t i,l,a,e,in=0;
1353 Double_t d,dn=1.0e10;
1354 Bool_t t=lay!=0; // skip if lay = 0 default value check all layers.
085bb6ed 1355
85f1e34a 1356 for(i=0;i<fNmodules;i++){
023ae34b 1357 if(t){GetModuleId(i,l,a,e);if(l!=lay) continue;}
1358 if((d=GetGeomMatrix(i)->Distance2(g))<dn){
1359 dn = d;
1360 in = i;
1361 } // end if
85f1e34a 1362 } // end for i
1363 return in;
085bb6ed 1364}
269f57ed 1365//______________________________________________________________________
5cf690c1 1366void AliITSgeom::GetNearest27(const Double_t g[3],Int_t n[27],Int_t lay)const{
85f1e34a 1367 // Finds 27 Detectors (Modules) that are nearest the point g [cm] in
1368 // ALICE Global coordinates. If layer !=0 then the search is restricted
1369 // to Detectors (Modules) in that particular layer. The number 27 comes
1370 // from including the nearest detector and all those around it (up, down,
1371 // left, right, forwards, backwards, and the corners).
023ae34b 1372 // Input:
1373 // Double_t g[3] The ALICE Cartesian global coordinate from which the
1374 // distance is to be calculated with.
1375 // Int_t lay The layer to restrict the search to. If layer=0 then
1376 // all layers are searched. Default is lay=0.
1377 // Output:
1378 // Int_t n[27] The module number representing the nearest 27 modules
1379 // in order.
1380 // Return:
1381 // none.
85f1e34a 1382 Int_t i,l,a,e,in[27]={0,0,0,0,0,0,0,0,0,
023ae34b 1383 0,0,0,0,0,0,0,0,0,
1384 0,0,0,0,0,0,0,0,0,};
85f1e34a 1385 Double_t d,dn[27]={1.0e10,1.0e10,1.0e10,1.0e10,1.0e10,1.0e10,
023ae34b 1386 1.0e10,1.0e10,1.0e10,1.0e10,1.0e10,1.0e10,
1387 1.0e10,1.0e10,1.0e10,1.0e10,1.0e10,1.0e10,
1388 1.0e10,1.0e10,1.0e10,1.0e10,1.0e10,1.0e10,
1389 1.0e10,1.0e10,1.0e10};
85f1e34a 1390 Bool_t t=(lay!=0); // skip if lay = 0 default value check all layers.
269f57ed 1391
85f1e34a 1392 for(i=0;i<fNmodules;i++){
023ae34b 1393 if(t){GetModuleId(i,l,a,e);if(l!=lay) continue;}
1394 for(a=0;a<27;a++){
1395 d = GetGeomMatrix(i)->Distance2(g);
1396 if(d<dn[a]){
1397 for(e=26;e>a;e--){dn[e] = dn[e-1];in[e] = in[e-1];}
1398 dn[a] = d; in[a] = i;
1399 } // end if d<dn[i]
1400 } // end for a
85f1e34a 1401 } // end for i
1402 for(i=0;i<27;i++) n[i] = in[i];
269f57ed 1403}
023ae34b 1404//----------------------------------------------------------------------
5cf690c1 1405Double_t AliITSgeom::GetAverageRadiusOfLayer(Int_t layer,Double_t &range)const{
023ae34b 1406 // Loops over all modules for a given layer and computes the
1407 // average cylindrical radius (about the z axis) and the range of
1408 // radii covered by this layer. Units, [cm] the Alice default unit.
1409 // Input:
1410 // Int_t layer The layer for which the average radii is to be found
1411 // Output:
1412 // Double_t &range The range of radii covered by this layer
1413 // Return:
1414 // The average radii for this layer.
1415 Double_t r=0.0,rmin=1.0e6,rmax=-1.0,rp,t[3],l[3],dl[3];
1416 Int_t n=0,i,j,lay,lad,det;
5cf690c1 1417 AliITSDetector idet;
023ae34b 1418
1419 for(i=0;i<GetIndexMax();i++) {
1420 GetModuleId(i,lay,lad,det);
5cf690c1 1421 idet = GetModuleType(i);
023ae34b 1422 if(lay!=layer) continue;
1423 dl[0] = dl[1] = dl[2] = 0.0;
5cf690c1 1424 if(IsShapeDefined((Int_t)idet)) {
1425 switch(idet){
1426 case kSPD:{
1427 dl[0] = ((AliITSgeomSPD*)GetShape(idet))->GetDx();
1428 dl[1] = ((AliITSgeomSPD*)GetShape(idet))->GetDy();
1429 dl[2] = ((AliITSgeomSPD*)GetShape(idet))->GetDz();
023ae34b 1430 } break;
5cf690c1 1431 case kSDD: case kSDDp:{
1432 dl[0] = ((AliITSgeomSDD*)GetShape(idet))->GetDx();
1433 dl[1] = ((AliITSgeomSDD*)GetShape(idet))->GetDy();
1434 dl[2] = ((AliITSgeomSDD*)GetShape(idet))->GetDz();
023ae34b 1435 } break;
5cf690c1 1436 case kSSD: case kSSDp:{
1437 dl[0] = ((AliITSgeomSSD*)GetShape(idet))->GetDx();
1438 dl[1] = ((AliITSgeomSSD*)GetShape(idet))->GetDy();
1439 dl[2] = ((AliITSgeomSSD*)GetShape(idet))->GetDz();
023ae34b 1440 } break;
22e9f252 1441 case kND:{
1442 Warning("GetAverageRadiusOfLayer",
1443 "idet=kND undefined detector type");
1444 continue;
1445 }break;
1446 default:{
1447 Warning("GetAverageRadiusOfLayer",
1448 "idet=%d not a defined value",(Int_t)idet);
1449 continue;
1450 }break;
023ae34b 1451 }// end switch.
1452 } // end of
1453 n++;
1454 GetTransCyln(i,t);
1455 rp = t[0];
1456 r += rp;
1457 if(rmin>rp) rmin = rp;
1458 if(rmax<rp) rmax = rp;
1459 for(j=0;j<8;j++){ // loop over the corners
1460 l[0] = dl[0];if(j%2==0) l[0] = -dl[0];
1461 l[1] = dl[1];if(j==2||j==3||j==6||j==7) l[1] = -dl[1];
1462 l[2] = dl[2];if(j>3) l[2] = -dl[2];
1463 LtoG(i,l,t);
1464 rp = TMath::Sqrt(t[0]*t[0]+t[1]*t[1]);
1465 if(rmin>rp) rmin = rp;
1466 if(rmax<rp) rmax = rp;
1467 } // end for j
1468 } // end for i
1469 r /= (Double_t)n;
1470 range = TMath::Max(rmax-r,r-rmin);
1471 return r;
1472}
00a7cc50 1473//_______________________________________________________________________
1474void AliITSgeom::DetLToTrackingV2(Int_t md, Float_t xin, Float_t zin, Float_t &yout, Float_t &zout) {
1475
1476 //Conversion from local coordinates on detectors to local
1477 //coordinates used for tracking ("v2")
1478 Float_t x,y,z; Double_t rt[9];GetTrans(md,x,y,z);GetRotMatrix(md,rt);
1479 Double_t al=TMath::ATan2(rt[1],rt[0])+TMath::Pi();
1480 yout=-(-xin+(x*TMath::Cos(al)+y*TMath::Sin(al)));
1481 if(md<(GetModuleIndex(2,1,1)-1))yout*=-1; zout=-zin+(Double_t)z;
1482}
1483
1484//_______________________________________________________________________
1485void AliITSgeom::TrackingV2ToDetL(Int_t md,Float_t yin,Float_t zin,Float_t &xout,Float_t &zout) {
1486 //Conversion from local coordinates used for tracking ("v2") to
1487 //local detector coordinates
1488
1489 Float_t x,y,z; Double_t rt[9];GetTrans(md,x,y,z);GetRotMatrix(md,rt);
1490 Double_t al=TMath::ATan2(rt[1],rt[0])+TMath::Pi();
1491 xout=yin;if(md<(GetModuleIndex(2,1,1)-1))xout=-xout;
1492 xout+=(x*TMath::Cos(al)+y*TMath::Sin(al));
1493 zout=-zin+(Double_t)z;
1494}