]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSInitGeometry.h
Fix in ladder width assingment (Stefan)
[u/mrichter/AliRoot.git] / ITS / AliITSInitGeometry.h
index 8c4ea57ee02bee84a3558f6c97cfca718b882ac7..6b24e57a9908a2cd182cf3c5dc540e68c67fe2d6 100644 (file)
@@ -15,24 +15,32 @@ $Id$
 #include <TObject.h>
 #include <TString.h>
 
+class AliITSgeom;
+
 typedef enum {
-  kvPPRasymmFMD=10,kv11=11,kv11Hybrid=110,kvDefault=1
+  kvDefault=0,kv11=11
 } AliITSVersion_t;
 
-
-class AliITSgeom;
 class TArrayD;
 class TGeoHMatrix;
+class TDatime;
 
 class AliITSInitGeometry : public TObject{
  public:
-    AliITSInitGeometry(AliITSVersion_t 
-       version=kvPPRasymmFMD,Int_t minorversion=2);//Standard Constructor
+
+    AliITSInitGeometry();//Default Constructor
+    AliITSInitGeometry(AliITSVersion_t version,
+                      Int_t minorversion=2);//Standard Constructor
     //virtual ~AliITSInitGeometry(); // Destructor
     //
-    AliITSgeom* CreateAliITSgeom(); // Create and intilize geometry from TGeom
-    Bool_t InitAliITSgeom(AliITSgeom *geom);//Initilize goemetry from gGeoManager
+    // Create and initialize geometry from TGeo
+    AliITSgeom* CreateAliITSgeom();
+    AliITSgeom* CreateAliITSgeom(Int_t major,Int_t minor); 
+    Bool_t InitAliITSgeom(AliITSgeom *geom);//Initilize geometry from gGeoManager
+    // Getters and Setters
     // Getters and Setters
+    void    SetVersion(AliITSVersion_t maj,Int_t min) {// Set Major and Minor versions
+        fMajorVersion=maj;fMinorVersion=min;}
     TString GetGeometryName()const {return fName;}// Return geometry name
     void    SetGeometryName(const Char_t *name){fName = name;}// Set Geometry name
     Int_t   GetMajorVersion()const {return (Int_t)fMajorVersion;} // Return geometry major version
@@ -43,43 +51,62 @@ class AliITSInitGeometry : public TObject{
     void    SetSegGeom(Bool_t seg=kTRUE){fSegGeom = seg;}// Set the use of AliITSsegmentation class' instead of AliITSgeomS?D class in fShape
     Bool_t  GetDecoding()const{return fDecode;}// Return flag indecating wether to use new/old decoding
     void    SetDecoding(Bool_t newdec=kFALSE){fDecode = newdec;}// Set flag to use new/old decoding
-
-    static const Bool_t SPDIsTGeoNative() {return !fgkOldSPDbarrel;}
-    static const Bool_t SDDIsTGeoNative() {return !fgkOldSDDbarrel;}
-    static const Bool_t SSDIsTGeoNative() {return !fgkOldSSDbarrel;}
-
-    static const Bool_t SDDconeIsTGeoNative()   {return ! fgkOldSDDcone;} 
-    static const Bool_t SSDconeIsTGeoNative()   {return ! fgkOldSSDcone;}
-    static const Bool_t SPDshieldIsTGeoNative() {return ! fgkOldSPDshield;}
-    static const Bool_t SDDshieldIsTGeoNative() {return ! fgkOldSDDshield; }
-    static const Bool_t SSDshieldIsTGeoNative() {return ! fgkOldSSDshield;}
-    static const Bool_t ServicesAreTGeoNative() {return ! fgkOldServices;}
-    static const Bool_t SupportIsTGeoNative()   {return ! fgkOldSupports;}
-
- private:                 
-    // Virtual MC code reproduction
-    Bool_t InitAliITSgeomPPRasymmFMD(AliITSgeom *geom);
-    Bool_t InitAliITSgeomV11Hybrid(AliITSgeom *geom);
-    Bool_t InitAliITSgeomV11(AliITSgeom *geom);
-    Bool_t InitGeomShapePPRasymmFMD(AliITSDetector idet,Bool_t *initSeg,
-                                      TArrayD &shapePar,AliITSgeom *geom);
-    Bool_t InitSegmentationPPRasymmFMD(AliITSDetector idet,Bool_t *initSeg,
-                                      TArrayD &shapePar,AliITSgeom *geom);
-    Bool_t GetTransformation(const TString &volumePath,TGeoHMatrix &mat);
-    Bool_t GetShape(const TString &volumePath,TString &shapeType,TArrayD &par);
+     // Set debug level. debug=0 no debug info outputted.
+    void    SetDebug(Int_t debug=0){fDebug=debug;};
+    // Retrun debug value
+    Int_t   GetDebug()const{return fDebug;};
+    // Decode module number into old layer, ladder, and detector numbers
     void DecodeDetectorLayers(Int_t mod,Int_t &lay,Int_t &lad,Int_t &det);
+    // find module number by layer, and copy numbers
     void DecodeDetector(Int_t &mod,Int_t lay,Int_t cpn0,
                         Int_t cpn1,Int_t cpn2) const;
+    // Given module number, find copy numbers.
     void RecodeDetector(Int_t mod,Int_t &cpn0,Int_t &cpn1,Int_t &cpn2);
+   // fills the string str with the major and minor version number
+    Bool_t WriteVersionString(Char_t *str,Int_t length,
+                              AliITSVersion_t maj,Int_t min,
+                              const Char_t *cvsDate,const Char_t *cvsRev)const;
+    // decodes the string str with the major and minor version number
+    Bool_t ReadVersionString(const Char_t *str,Int_t length,
+                             AliITSVersion_t &maj,Int_t &min,TDatime &dt)const;
+
+    static Bool_t SPDIsTGeoNative() {return !fgkOldSPDbarrel;}
+    static Bool_t SDDIsTGeoNative() {return !fgkOldSDDbarrel;}
+    static Bool_t SSDIsTGeoNative() {return !fgkOldSSDbarrel;}
+
+    static Bool_t SDDconeIsTGeoNative()   {return ! fgkOldSDDcone;} 
+    static Bool_t SSDconeIsTGeoNative()   {return ! fgkOldSSDcone;}
+    static Bool_t SPDshieldIsTGeoNative() {return ! fgkOldSPDshield;}
+    static Bool_t SDDshieldIsTGeoNative() {return ! fgkOldSDDshield; }
+    static Bool_t SSDshieldIsTGeoNative() {return ! fgkOldSSDshield;}
+    static Bool_t ServicesAreTGeoNative() {return ! fgkOldServices;}
+    static Bool_t SupportIsTGeoNative()   {return ! fgkOldSupports;}
+
+ private:
+    // Decode module number into old layer, ladder, and detector numbers
+    void DecodeDetectorLayersv11(Int_t mod,Int_t &lay,
+                                Int_t &lad,Int_t &det);
+    // find module number by layer, and copy numbers
+    void DecodeDetectorv11(Int_t &mod,Int_t lay,Int_t cpn0,Int_t cpn1,
+                          Int_t cpn2)const;
+    // Given module number, find copy numbers.
+    void RecodeDetectorv11(Int_t mod,Int_t &cpn0,Int_t &cpn1,
+                          Int_t &cpn2);                   
+    // Virtual MC code 
+    Bool_t InitAliITSgeomV11(AliITSgeom *geom);
+    Bool_t GetTransformation(const TString &volumePath,TGeoHMatrix &mat);
+    Bool_t GetShape(const TString &volumePath,TString &shapeType,TArrayD &par);
+    void TransposeTGeoHMatrix(TGeoHMatrix *m) const;
 
-    TString   fName;          // Geometry name
-    Int_t           fMinorVersion;  // Geometry minor version
-    AliITSVersion_t fMajorVersion;  // Geometry swich value
-    Bool_t          fTiming;        // Flag to start inilization timing
-    Bool_t          fSegGeom;       // Flag to switch between the old use of
-                              // AliITSgeomS?D class, or AliITSsegmentation
-                              // class in fShape of AliITSgeom class.
-    Bool_t          fDecode;        // Flag for new/old decoding
+    TString         fName;         // Geometry name
+    Int_t           fMinorVersion; // Geometry minor version
+    AliITSVersion_t fMajorVersion; // Geometry swich value
+    Bool_t          fTiming;       // Flag to start inilization timing
+    Bool_t          fSegGeom;      // Flag to switch between the old use of
+                                   // AliITSgeomS?D class, or AliITSsegmentation
+                                   // class in fShape of AliITSgeom class.
+    Bool_t          fDecode;       // Flag for new/old decoding
+    Int_t           fDebug;        // Debug flag
 
     static const Bool_t fgkOldSPDbarrel;   // use old geo for SPD ?
     static const Bool_t fgkOldSDDbarrel;   // use old geo for SDD ?