]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONVGeometryBuilder.h
Added new method DisIntegrate(AliMUONHit&, TList& digits) to replace the one in
[u/mrichter/AliRoot.git] / MUON / AliMUONVGeometryBuilder.h
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2  * See cxx source for full Copyright notice                               */
3
4 // $Id$
5 // Revision of includes 07/05/2004
6
7 /// \ingroup geometry
8 /// \class AliMUONVGeometryBuilder
9 /// \brief Abstract base class for geometry construction per module(s)
10 ///
11 /// Author: Ivana Hrivnacova, IPN Orsay
12
13 #ifndef ALI_MUON_V_GEOMETRY_BUILDER_H
14 #define ALI_MUON_V_GEOMETRY_BUILDER_H
15
16 #include <fstream>
17
18 #include <TObject.h>
19 #include <TObjArray.h>
20 #include <TGeoMatrix.h>
21
22 class TGeoTranslation;
23 class TGeoRotation;
24 class TGeoCombiTrans;
25
26 class AliMUONGeometryModule;
27 class AliMUONGeometryEnvelopeStore;
28 class AliMUONGeometryStore;
29 class AliMUONGeometrySVMap;
30
31 class AliMUONVGeometryBuilder : public TObject
32 {
33   public:
34     AliMUONVGeometryBuilder(Int_t geometryModuleId1,
35                             Int_t geometryModuleId2 = -1,
36                             Int_t geometryModuleId3 = -1,
37                             Int_t geometryModuleId4 = -1,
38                             Int_t geometryModuleId5 = -1,
39                             Int_t geometryModuleId6 = -1);
40     AliMUONVGeometryBuilder();
41     virtual ~AliMUONVGeometryBuilder();
42   
43     // methods
44     void  SetReferenceFrame(const TGeoCombiTrans& referenceFrame);
45     void  RebuildSVMaps() const;
46     void  FillTransformations() const;
47
48     virtual void CreateMaterials() {}  // make = 0; ?
49                   // Function to be overriden in a concrete chamber/station
50                   // geometry builder class.
51                   // Only materials that are not defined in the common
52                   // functions should be defined here.
53
54     virtual void CreateGeometry() = 0;
55                   // Function to be overriden in a concrete chamber/station
56                   // geometry builder class.
57                   // The geometry built there should not be placed
58                   // in ALIC; but all volumes going to ALIC
59                   // have to be added as envelopes to the chamber
60                   // geometries
61                   // (They will be then placed automatically 
62                   // usind the provided transformation.
63
64     virtual void SetTransformations() = 0;
65                   // Function to be overriden in a concrete chamber/station
66                   // geometry class.
67                   // The transformation of each chamber(s) wrt ALICE
68                   // should be defined and set to its geometry class. 
69
70     virtual void SetSensitiveVolumes() = 0;
71                   // Function to be overriden in a concrete chamber/station
72                   // geometry class.
73                   // The sensitive volumes Ids for each chamber
74                   // should be defined and set to its geometry class. 
75
76     virtual bool ApplyGlobalTransformation() { return true; }
77                   // Function to be overriden (and return false) 
78                   // in the concrete geometry builder classes 
79                   // which are already defined in the new ALICE
80                   // coordinate frame
81
82     // access to module geometries
83     Int_t  NofGeometries() const;
84     AliMUONGeometryModule* Geometry(Int_t i) const;
85                   // In difference from protected GetGeometry()
86                   // this function access geometry via index and not
87                   // via moduleId
88
89   protected:
90     AliMUONVGeometryBuilder(const AliMUONVGeometryBuilder& rhs);
91
92     // operators  
93     AliMUONVGeometryBuilder& operator = (const AliMUONVGeometryBuilder& rhs);
94
95     // methods
96     AliMUONGeometryModule*         GetGeometry(Int_t moduleId) const;
97     AliMUONGeometryEnvelopeStore*  GetEnvelopes(Int_t moduleId) const;
98     AliMUONGeometrySVMap*          GetSVMap(Int_t moduleId) const;
99     
100     // set module transformation
101     void SetTranslation(Int_t moduleId, 
102                         const TGeoTranslation& translation);
103     void SetTransformation(Int_t moduleId, 
104                         const TGeoTranslation& translation,
105                         const TGeoRotation& rotation);
106     
107   private:
108     //methods
109     TGeoHMatrix ConvertTransform(const TGeoHMatrix& transform) const;
110     TGeoHMatrix ConvertDETransform(const TGeoHMatrix& transform) const;
111     TString     ComposePath(const TString& volName, Int_t copyNo) const; 
112     void        MapSV(const TString& path0, 
113                       const TString& volName, Int_t detElemId) const;
114
115     // data members
116     TObjArray*  fGeometryModules;   // the modules geometries that will be built
117                                     // by this builder                              
118     TGeoCombiTrans fReferenceFrame; // the transformation from the builder 
119                                     // reference frame to that of the transform 
120                                     // data files
121                                         
122   ClassDef(AliMUONVGeometryBuilder,4) // MUON chamber geometry base class
123 };
124
125 // inline functions
126
127 inline Int_t  AliMUONVGeometryBuilder::NofGeometries() const
128 { return fGeometryModules->GetEntriesFast(); }
129
130 inline AliMUONGeometryModule* AliMUONVGeometryBuilder::Geometry(Int_t i) const
131 { return (AliMUONGeometryModule*)fGeometryModules->At(i); }
132
133 #endif //ALI_MUON_V_GEOMETRY_BUILDER_H