]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONGeometryBuilder.cxx
Main changes:
[u/mrichter/AliRoot.git] / MUON / AliMUONGeometryBuilder.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3  *      SigmaEffect_thetadegrees                                                                  *
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 purpeateose. It is      *
13  * provided "as is" without express or implied warranty.                  *
14  **************************************************************************/
15
16 // $Id$
17
18 //-----------------------------------------------------------------------------
19 // Class AliMUONGeometryBuilder
20 // ----------------------------
21 // Manager class for geometry construction via geometry builders.
22 // Author: Ivana Hrivnacova, IPN Orsay
23 //-----------------------------------------------------------------------------
24
25 #include "AliMUONGeometryBuilder.h"
26 #include "AliMUONVGeometryBuilder.h"    
27 #include "AliMUONGeometry.h"
28 #include "AliMUONGeometryTransformer.h"
29 #include "AliMUONGeometryModule.h"      
30 #include "AliMUONGeometryModuleTransformer.h"   
31 #include "AliMUONGeometryEnvelope.h"    
32 #include "AliMUONGeometryEnvelopeStore.h"
33 #include "AliMUONGeometryDetElement.h"
34 #include "AliMUONGeometryConstituent.h"
35
36 #include "AliMpDEManager.h"
37
38 #include "AliModule.h"
39 #include "AliLog.h"
40 #include "AliRun.h"
41
42 #include <TObjArray.h>
43 #include <TVirtualMC.h>
44 #include <TGeoManager.h>
45
46 // static data members
47  
48 const TString  AliMUONGeometryBuilder::fgkDefaultVolPathsFileName = "volpath.dat";   
49 const TString  AliMUONGeometryBuilder::fgkDefaultTransformFileName = "transform.dat";   
50 const TString  AliMUONGeometryBuilder::fgkDefaultSVMapFileName = "svmap.dat";    
51 const TString  AliMUONGeometryBuilder::fgkOutFileNameExtension = ".out";    
52
53 /// \cond CLASSIMP
54 ClassImp(AliMUONGeometryBuilder)
55 /// \endcond
56
57 // static functions
58
59 //______________________________________________________________________________
60 TGeoHMatrix AliMUONGeometryBuilder::Multiply(const TGeoMatrix& m1, 
61                                              const TGeoMatrix& m2)
62 {
63 /// Temporary fix for problem with matrix multiplication in Root 5.02/00
64
65   if (m1.IsIdentity() && m2.IsIdentity()) return TGeoHMatrix();
66   
67   if (m1.IsIdentity()) return m2;
68   
69   if (m2.IsIdentity()) return m1;
70   
71   return m1 * m2;
72 }
73
74 //______________________________________________________________________________
75 TGeoHMatrix AliMUONGeometryBuilder::Multiply(const TGeoMatrix& m1, 
76                                              const TGeoMatrix& m2,
77                                              const TGeoMatrix& m3)
78 {                                            
79 /// Temporary fix for problem with matrix multiplication in Root 5.02/00
80
81   if (m1.IsIdentity() && m2.IsIdentity() & m3.IsIdentity())  
82     return TGeoHMatrix();
83   
84   if (m1.IsIdentity()) return Multiply(m2, m3);
85   
86   if (m2.IsIdentity()) return Multiply(m1, m3);
87   
88   if (m3.IsIdentity()) return Multiply(m1, m2);
89   
90   return m1 * m2 * m3;
91 }
92
93 //______________________________________________________________________________
94 TGeoHMatrix AliMUONGeometryBuilder::Multiply(const TGeoMatrix& m1, 
95                                              const TGeoMatrix& m2,
96                                              const TGeoMatrix& m3,
97                                              const TGeoMatrix& m4)
98 {                                            
99 /// Temporary fix for problem with matrix multiplication in Root 5.02/00
100
101   if (m1.IsIdentity() && m2.IsIdentity() & m3.IsIdentity() & m4.IsIdentity())  
102     return TGeoHMatrix();
103   
104   if (m1.IsIdentity()) return Multiply(m2, m3, m4);
105   
106   if (m2.IsIdentity()) return Multiply(m1, m3, m4);
107   
108   if (m3.IsIdentity()) return Multiply(m1, m2, m4);
109   
110   if (m4.IsIdentity()) return Multiply(m1, m2, m3);
111   
112   return m1 * m2 * m3 * m4;
113 }
114
115 //______________________________________________________________________________
116 AliMUONGeometryBuilder::AliMUONGeometryBuilder(AliModule* module)
117   : TObject(),
118     fModule(module),
119     fAlign(false),
120     fTransformFileName(fgkDefaultTransformFileName),
121     fSVMapFileName(fgkDefaultSVMapFileName),
122     fGlobalTransformation(), 
123     fGeometryBuilders(0),
124     fGeometry(0)
125 {
126 /// Standard constructor
127
128   fGeometryBuilders = new TObjArray();
129   fGeometryBuilders->SetOwner(true);
130   
131   fGeometry = new AliMUONGeometry(true);
132
133   // Define the global transformation:
134   // Transformation from the old ALICE coordinate system to a new one:
135   // x->-x, z->-z 
136   TGeoRotation* rotGlobal 
137     = new TGeoRotation("rotGlobal", 90., 180., 90., 90., 180., 0.);
138   fGlobalTransformation = TGeoCombiTrans(0., 0., 0., rotGlobal);
139 }
140
141 //______________________________________________________________________________
142 AliMUONGeometryBuilder::AliMUONGeometryBuilder() 
143   : TObject(),
144     fModule(0),
145     fAlign(false),
146     fTransformFileName(),
147     fSVMapFileName(),
148     fGlobalTransformation(),
149     fGeometryBuilders(0),
150     fGeometry(0)
151 {
152 /// Default constructor
153
154
155 //______________________________________________________________________________
156 AliMUONGeometryBuilder::~AliMUONGeometryBuilder()
157 {
158 /// Destructor
159   
160   delete fGeometryBuilders;
161   delete fGeometry;
162 }
163
164 //
165 // private functions
166 //
167
168 //______________________________________________________________________________
169 void AliMUONGeometryBuilder::PlaceVolume(const TString& name, const TString& mName, 
170                             Int_t copyNo, const TGeoHMatrix& matrix, 
171                             Int_t npar, Double_t* param, const char* only,
172                             Bool_t makeAssembly) const
173 {
174 /// Place the volume specified by name with the given transformation matrix
175
176   if (makeAssembly)
177     gGeoManager->MakeVolumeAssembly(name.Data());
178
179   TGeoHMatrix transform(matrix);
180   // Do not apply global transformation 
181   // if mother volume was already placed in 
182   // the new system of coordinates (that is MUON in negative Z)
183   // (as it is applied on the mother volume)
184   if (mName == TString("DDIP"))
185     transform = fGlobalTransformation.Inverse() * transform;
186      
187   // Decompose transformation
188   const Double_t* xyz = transform.GetTranslation();
189   const Double_t* rm = transform.GetRotationMatrix();
190         
191   //cout << "Got translation: "
192   //     << xyz[0] << " " << xyz[1] << " " << xyz[2] << endl;
193         
194   //cout << "Got rotation: "
195   //     << rm[0] << " " << rm[1] << " " << rm[2] << endl
196   //     << rm[3] << " " << rm[4] << " " << rm[5] << endl
197   //     << rm[6] << " " << rm[7] << " " << rm[8] << endl;
198
199   // Check for presence of rotation
200   // (will be nice to be available in TGeo)
201   const Double_t kTolerance = 1e-04;
202   Bool_t isRotation = true; 
203   if (TMath::Abs(rm[0] - 1.) < kTolerance &&
204       TMath::Abs(rm[1] - 0.) < kTolerance &&
205       TMath::Abs(rm[2] - 0.) < kTolerance &&
206       TMath::Abs(rm[3] - 0.) < kTolerance &&
207       TMath::Abs(rm[4] - 1.) < kTolerance &&
208       TMath::Abs(rm[5] - 0.) < kTolerance &&
209       TMath::Abs(rm[6] - 0.) < kTolerance &&
210       TMath::Abs(rm[7] - 0.) < kTolerance &&
211       TMath::Abs(rm[8] - 1.) < kTolerance) isRotation = false; 
212
213   Int_t krot = 0;
214   if (isRotation) {
215     TGeoRotation rot;
216     rot.SetMatrix(const_cast<Double_t*>(transform.GetRotationMatrix()));
217     Double_t theta1, phi1, theta2, phi2, theta3, phi3;
218     rot.GetAngles(theta1, phi1, theta2, phi2, theta3, phi3);
219         
220     //cout << "angles: " 
221     //     << theta1 << " " << phi1 << " "
222     //     << theta2 << " " << phi2 << " "
223     //     << theta3 << " " << phi3 << endl;
224         
225     fModule->AliMatrix(krot, theta1, phi1, theta2, phi2, theta3, phi3);
226   }     
227         
228   // Place the volume
229   if (npar == 0)
230     gMC->Gspos(name, copyNo, mName, xyz[0], xyz[1], xyz[2] , krot, only);
231   else 
232     gMC->Gsposp(name, copyNo, mName, xyz[0], xyz[1], xyz[2] , krot, only,
233                 param, npar);
234
235
236 //______________________________________________________________________________
237 void AliMUONGeometryBuilder::CreateGeometryWithTGeo()
238 {
239 /// Construct geometry using geometry builders.
240 /// Virtual modules/envelopes are placed as TGeoVolume assembly
241
242   if (fAlign) {
243     // Read transformations from ASCII data file  
244     fGeometry->GetTransformer()
245       ->LoadGeometryData(fTransformFileName);
246   }    
247  
248   for (Int_t i=0; i<fGeometryBuilders->GetEntriesFast(); i++) {
249
250     // Get the builder
251     AliMUONVGeometryBuilder* builder
252       = (AliMUONVGeometryBuilder*)fGeometryBuilders->At(i);
253
254     // Create geometry + envelopes
255     //
256     builder->CreateGeometry();
257     if (!fAlign) builder->SetTransformations();
258     
259     // Place module volumes and envelopes
260     //
261     for (Int_t j=0; j<builder->NofGeometries(); j++) {
262
263       AliMUONGeometryModule* geometry = builder->Geometry(j);
264       AliMUONGeometryModuleTransformer* transformer= geometry->GetTransformer();
265       const TGeoHMatrix* kModuleTransform = transformer->GetTransformation();
266       TString volName       = transformer->GetVolumeName(); 
267       TString motherVolName = transformer->GetMotherVolumeName(); 
268       
269       // Place the module volume
270       PlaceVolume(volName, motherVolName, 
271                   1, *kModuleTransform, 0, 0, "ONLY", geometry->IsVirtual());
272   
273       TGeoCombiTrans appliedGlobalTransform;
274       if (builder->ApplyGlobalTransformation())
275         appliedGlobalTransform = fGlobalTransformation;
276
277       // Loop over envelopes
278       const TObjArray* kEnvelopes 
279         = geometry->GetEnvelopeStore()->GetEnvelopes();
280       for (Int_t k=0; k<kEnvelopes->GetEntriesFast(); k++) {
281
282         // Get envelope
283         AliMUONGeometryEnvelope* env 
284           = (AliMUONGeometryEnvelope*)kEnvelopes->At(k);
285           
286         // Check consistency of detElemId and module Id
287         if ( env->GetUniqueID() > 0 && 
288              AliMpDEManager::GetGeomModuleId(env->GetUniqueID()) 
289              != geometry->GetModuleId() ) {
290              
291           AliErrorStream() 
292             << "Detection element " << env->GetUniqueID() 
293             << " is being placed in geometry module " << geometry->GetModuleId()
294             << " but should go in " 
295             << AliMpDEManager::GetGeomModuleId(env->GetUniqueID())
296             <<  endl;
297           AliFatal("Inconsistent IDs");
298         }          
299           
300         const TGeoCombiTrans* kEnvTrans = env->GetTransformation();
301         const char* only = "ONLY";
302         if (env->IsMANY()) only = "MANY";
303
304         if (env->IsVirtual() && env->GetConstituents()->GetEntriesFast() == 0 ) {
305           // virtual envelope + nof constituents = 0 
306           //         => not allowed;
307           //            empty virtual envelope has no sense 
308           AliFatal("Virtual envelope must have constituents.");
309           return;
310         }
311
312         if (!env->IsVirtual() && env->GetConstituents()->GetEntriesFast() > 0 ) {
313           // non virtual envelope + nof constituents > 0 
314           //        => not allowed;
315           //           use VMC to place constituents
316           AliFatal("Non virtual envelope cannot have constituents.");
317           return;
318         }
319
320         // Place envelope in geometry module by composed transformation:
321         // [Tglobal] * Tenv
322         TGeoHMatrix total 
323           = Multiply( appliedGlobalTransform, 
324                      (*kEnvTrans) );
325         PlaceVolume(env->GetName(), volName,
326                     env->GetCopyNo(), total, 0, 0, only, env->IsVirtual());
327         
328         if ( env->IsVirtual() )  {
329           //  Place constituents in the envelope
330           for  (Int_t l=0; l<env->GetConstituents()->GetEntriesFast(); l++) {
331             AliMUONGeometryConstituent* constituent
332               = (AliMUONGeometryConstituent*)env->GetConstituents()->At(l);
333  
334             PlaceVolume(constituent->GetName(), env->GetName(),
335                         constituent->GetCopyNo(),
336                         *constituent->GetTransformation() ,
337                         constituent->GetNpar(), constituent->GetParam(), only);
338           }
339         }
340       } // end of loop over envelopes
341     } // end of loop over builder geometries
342   } // end of loop over builders
343 }
344
345 //______________________________________________________________________________
346 void AliMUONGeometryBuilder::CreateGeometryWithoutTGeo()
347 {
348 /// Construct geometry using geometry builders.
349 /// Virtual modules/envelopes are not placed
350
351   if (fAlign) {
352     // Read transformations from ASCII data file  
353     fGeometry->GetTransformer()->LoadGeometryData(fTransformFileName);
354   }     
355
356   for (Int_t i=0; i<fGeometryBuilders->GetEntriesFast(); i++) {
357
358     // Get the builder
359     AliMUONVGeometryBuilder* builder
360       = (AliMUONVGeometryBuilder*)fGeometryBuilders->At(i);
361
362     // Create geometry + envelopes
363     //
364     builder->CreateGeometry();
365     if (!fAlign) builder->SetTransformations();
366     
367     // Place module volumes and envelopes
368     //
369     for (Int_t j=0; j<builder->NofGeometries(); j++) {
370
371       AliMUONGeometryModule* geometry = builder->Geometry(j);
372       AliMUONGeometryModuleTransformer* transformer= geometry->GetTransformer();
373       const TGeoHMatrix* kModuleTransform = transformer->GetTransformation();
374       TString volName       = transformer->GetVolumeName(); 
375       TString motherVolName = transformer->GetMotherVolumeName(); 
376       
377       // Place the module volume
378       if ( !geometry->IsVirtual() ) {
379           PlaceVolume(volName, motherVolName, 
380                       1, *kModuleTransform, 0, 0, "ONLY");
381       }               
382   
383       TGeoCombiTrans appliedGlobalTransform;
384       if (builder->ApplyGlobalTransformation())
385         appliedGlobalTransform = fGlobalTransformation;
386
387       // Loop over envelopes
388       const TObjArray* kEnvelopes 
389         = geometry->GetEnvelopeStore()->GetEnvelopes();
390       for (Int_t k=0; k<kEnvelopes->GetEntriesFast(); k++) {
391
392         // Get envelope
393         AliMUONGeometryEnvelope* env 
394           = (AliMUONGeometryEnvelope*)kEnvelopes->At(k);
395           
396         // Check consistency of detElemId and module Id
397         if ( env->GetUniqueID() > 0 && 
398              AliMpDEManager::GetGeomModuleId(env->GetUniqueID()) 
399              != geometry->GetModuleId() ) {
400              
401           AliErrorStream() 
402             << "Detection element " << env->GetUniqueID() 
403             << " is being placed in geometry module " << geometry->GetModuleId()
404             << " but should go in " 
405             << AliMpDEManager::GetGeomModuleId(env->GetUniqueID())
406             <<  endl;
407           AliFatal("Inconsistent IDs");
408         }          
409           
410         const TGeoCombiTrans* kEnvTrans = env->GetTransformation();
411         const char* only = "ONLY";
412         if (env->IsMANY()) only = "MANY";
413
414         if (env->IsVirtual() && env->GetConstituents()->GetEntriesFast() == 0 ) {
415           // virtual envelope + nof constituents = 0 
416           //         => not allowed;
417           //            empty virtual envelope has no sense 
418           AliFatal("Virtual envelope must have constituents.");
419           return;
420         }
421
422         if (!env->IsVirtual() && env->GetConstituents()->GetEntriesFast() > 0 ) {
423           // non virtual envelope + nof constituents > 0 
424           //        => not allowed;
425           //           use VMC to place constituents
426           AliFatal("Non virtual envelope cannot have constituents.");
427           return;
428         }
429
430         if (!env->IsVirtual() && env->GetConstituents()->GetEntriesFast() == 0 ) {
431           // non virtual envelope + nof constituents = 0 
432           //        => place envelope by composed transformation:
433           //           Tch * [Tglobal] * Tenv
434
435           // Compound chamber transformation with the envelope one
436           if (geometry->IsVirtual()) {
437              TGeoHMatrix total 
438                = Multiply( (*kModuleTransform), 
439                             appliedGlobalTransform, 
440                            (*kEnvTrans) );
441              PlaceVolume(env->GetName(), motherVolName,
442                          env->GetCopyNo(), total, 0, 0, only);
443           }
444           else {
445              TGeoHMatrix total 
446                = Multiply( appliedGlobalTransform, 
447                            (*kEnvTrans) );
448              PlaceVolume(env->GetName(), volName,
449                          env->GetCopyNo(), total, 0, 0, only);
450           }                      
451         }
452
453         if (env->IsVirtual() && env->GetConstituents()->GetEntriesFast() > 0 ) {
454           // virtual envelope + nof constituents > 0 
455           //         => do not place envelope and place constituents
456           //            by composed transformation:
457           //            Tch * [Tglobal] * Tenv * Tconst   
458
459           for  (Int_t l=0; l<env->GetConstituents()->GetEntriesFast(); l++) {
460             AliMUONGeometryConstituent* constituent
461               = (AliMUONGeometryConstituent*)env->GetConstituents()->At(l);
462  
463             // Compound chamber transformation with the envelope one + the constituent one
464             if (geometry->IsVirtual()) {
465               TGeoHMatrix total 
466                 = Multiply ( (*kModuleTransform),
467                              appliedGlobalTransform, 
468                              (*kEnvTrans), 
469                              (*constituent->GetTransformation()) );
470
471               PlaceVolume(constituent->GetName(), motherVolName,
472                           constituent->GetCopyNo(), total,
473                           constituent->GetNpar(), constituent->GetParam(), only);
474             }
475             else {                        
476               TGeoHMatrix total 
477                 = Multiply ( appliedGlobalTransform, 
478                              (*kEnvTrans),
479                              (*constituent->GetTransformation()) );
480
481               PlaceVolume(constituent->GetName(), volName,
482                           constituent->GetCopyNo(), total,
483                           constituent->GetNpar(), constituent->GetParam(), only);
484             }                     
485           }
486         }
487       } // end of loop over envelopes
488     } // end of loop over builder geometries
489   } // end of loop over builders
490 }
491
492 //_____________________________________________________________________________
493 void AliMUONGeometryBuilder::SetAlign(AliMUONVGeometryBuilder* builder)
494 {
495 /// Set align option to all geometry modules associated with the builder
496
497   for (Int_t j=0; j<builder->NofGeometries(); j++) {
498
499     AliMUONGeometryModule* geometry = builder->Geometry(j);
500   
501     geometry->SetAlign(fAlign);
502   }       
503 }            
504
505 //
506 // public functions
507 //
508
509 //_____________________________________________________________________________
510 void AliMUONGeometryBuilder::AddBuilder(AliMUONVGeometryBuilder* geomBuilder)
511 {
512 /// Add the geometry builder to the list
513
514   fGeometryBuilders->Add(geomBuilder);
515   
516   // Pass geometry modules created in the to the geometry parametrisation
517   for (Int_t i=0; i<geomBuilder->NofGeometries(); i++) {
518     fGeometry->AddModule(geomBuilder->Geometry(i));
519   }  
520   
521   if (geomBuilder->ApplyGlobalTransformation())
522     geomBuilder->SetReferenceFrame(fGlobalTransformation);
523   
524   SetAlign(geomBuilder);
525 }
526
527 //______________________________________________________________________________
528 void AliMUONGeometryBuilder::CreateGeometry()
529 {
530 /// Construct geometry using geometry builders.
531
532   if ( gMC->IsRootGeometrySupported() ) {
533        
534    CreateGeometryWithTGeo();
535   } 
536   else
537    CreateGeometryWithoutTGeo();
538
539   for (Int_t i=0; i<fGeometryBuilders->GetEntriesFast(); i++) {
540
541     // Get the builder
542     AliMUONVGeometryBuilder* builder
543       = (AliMUONVGeometryBuilder*)fGeometryBuilders->At(i);
544
545     // Create detection elements from built geometry
546     builder->CreateDetElements();
547   }  
548 }
549
550 //_____________________________________________________________________________
551 void AliMUONGeometryBuilder::CreateMaterials()
552 {
553 /// Construct materials specific to modules via builders
554   
555   for (Int_t i=0; i<fGeometryBuilders->GetEntriesFast(); i++) {
556
557     // Get the builder
558     AliMUONVGeometryBuilder* builder
559       = (AliMUONVGeometryBuilder*)fGeometryBuilders->At(i);
560
561     // Create materials with each builder
562     if (builder) builder->CreateMaterials();
563   }
564 }
565
566 //______________________________________________________________________________
567 void AliMUONGeometryBuilder::InitGeometry(const TString& svmapFileName)
568 {
569 /// Initialize geometry
570
571   // Load alignement data from geometry if geometry is read from Root file
572   if ( gAlice->IsRootGeometry() ) {
573     fAlign = true;
574     fGeometry->GetTransformer()->LoadGeometryData();
575  }    
576
577   // Read sensitive volume map from a file
578   fGeometry->ReadSVMap(svmapFileName);
579
580   // Set the chamber (sensitive region) GEANT identifier
581   //
582   for (Int_t i=0; i<fGeometryBuilders->GetEntriesFast(); i++) {
583
584     // Get the builder
585     AliMUONVGeometryBuilder* builder
586       = (AliMUONVGeometryBuilder*)fGeometryBuilders->At(i);
587
588     // Set sensitive volumes with each builder
589     builder->SetSensitiveVolumes();
590   }  
591 }
592
593 //______________________________________________________________________________
594 void AliMUONGeometryBuilder::WriteSVMaps(const TString& fileName, 
595                                          Bool_t rebuild, Bool_t writeEnvelopes)
596 {
597 /// Write sensitive volume maps into files per builder
598
599   // Rebuild sv maps
600   //
601   if (rebuild) 
602     for (Int_t i=0; i<fGeometryBuilders->GetEntriesFast(); i++) {
603
604       AliMUONVGeometryBuilder* builder
605         = (AliMUONVGeometryBuilder*)fGeometryBuilders->At(i);
606
607       builder->RebuildSVMaps(writeEnvelopes);
608     }  
609     
610   // Write maps in file
611   fGeometry->WriteSVMap(fileName);
612 }
613
614 //_____________________________________________________________________________
615 void AliMUONGeometryBuilder::SetAlign(Bool_t align)
616
617 /// Set the option for alignement
618
619   fAlign = align; 
620
621   for (Int_t i=0; i<fGeometryBuilders->GetEntriesFast(); i++) {
622
623     AliMUONVGeometryBuilder* builder
624       = (AliMUONVGeometryBuilder*)fGeometryBuilders->At(i);
625     
626     SetAlign(builder); 
627   }   
628 }
629
630 //_____________________________________________________________________________
631 void AliMUONGeometryBuilder::SetAlign(const TString& fileName, Bool_t align)
632
633 /// Set the option for alignement and the transformations file name
634
635   fTransformFileName = fileName;
636   fAlign = align; 
637
638   for (Int_t i=0; i<fGeometryBuilders->GetEntriesFast(); i++) {
639
640     AliMUONVGeometryBuilder* builder
641       = (AliMUONVGeometryBuilder*)fGeometryBuilders->At(i);
642     
643     SetAlign(builder); 
644   }   
645 }