]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PMD/AliPMDv1.h
geometry for 2008 run
[u/mrichter/AliRoot.git] / PMD / AliPMDv1.h
index 6398e4d8218349e3b42996061a56b7f0971b45df..63ea832b3240d31c2b9b8780b006f4ecd0109efb 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef PMDV1_H
-#define PMDV1_H
+#ifndef ALIPMDV1_H
+#define ALIPMDV1_H
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
 ////////////////////////////////////////////////
  
 #include "AliPMD.h"
-
+#include "TGeoManager.h"
 //___________________________________________
  
 class AliPMDv1 : public AliPMD {
-
-private:
-  Int_t fMedSens;
-  Int_t fMedSens1;
-  Float_t dbox_mm1[3];
-  Float_t dbox_mm12[3];
-  Float_t dbox_mm2[3];
-  Float_t dbox_mm22[3];
   
 public:
   AliPMDv1();
@@ -36,11 +28,47 @@ public:
   virtual void  Init();
   virtual Int_t IsVersion() const {return 1;}
   virtual void  StepManager();
-  virtual void  DrawModule();
+  virtual void  DrawModule() const;
+  virtual void  AddAlignableVolumes() const;
+  void          SetSectorAlignable() const;
+
+private:
+
+  static const Int_t   fgkNcolUM1;  // Number of cols in UM, type 1
+  static const Int_t   fgkNcolUM2;  // Number of cols in UM, type 2
+  static const Int_t   fgkNrowUM1;  // Number of rows in UM, type 1
+  static const Int_t   fgkNrowUM2;  // Number of rows in UM, type 2
+  static const Float_t fgkCellRadius;    // Radius of a hexagonal cell
+  static const Float_t fgkCellWall;      // Thickness of cell Wall
+  static const Float_t fgkCellDepth;     // Gas thickness
+  static const Float_t fgkThBKP;      // Thickness of Back plane
+  static const Float_t fgkThBase;        // Thickness of Base plate
+  static const Float_t fgkThAir;         // Thickness of Air
+  static const Float_t fgkThPCB;         // Thickness of PCB
+  static const Float_t fgkThLead;        // Thickness of Pb
+  static const Float_t fgkThSteel;       // Thickness of Steel
+  static const Float_t fgkGap;           // Air Gap
+  static const Float_t fgkZdist;         // z-position of the detector
+  static const Float_t fgkSqroot3;       // Square Root of 3
+  static const Float_t fgkSqroot3by2;    // Square Root of 3 by 2
+  static const Float_t fgkSSBoundary;
+  static const Float_t fgkThSS ;
+  static const Float_t fgkThG10 ;
+
+
+  Float_t fSMthick;     // Thickness of the supermodule
+  Float_t fDthick;     // Thickness of the pre/veto module
+  Float_t fSMLengthax;  // Supermodule length along X, type A
+  Float_t fSMLengthay;  // Supermodule length along Y, type A
+  Float_t fSMLengthbx;  // Supermodule length along X, type B
+  Float_t fSMLengthby;  // Supermodule length along Y, type A
+  Int_t   fMedSens;     // Sensitive Medium Ar+CO2
+  Float_t fDboxmm1[3];  // Master MODULE EMPA of aluminum for PMD
+  Float_t fDboxmm12[3]; // Master MODULE EMCA of aluminum for CPV
+  Float_t fDboxmm2[3];  // Master MODULE EMPB of aluminum for PMD
+  Float_t fDboxmm22[3]; // Master MODULE EMCB of aluminum for CPV
  
-   ClassDef(AliPMDv1,1)  //Hits manager for set:PMD
+  ClassDef(AliPMDv1,3)     //Hits manager for set:PMD
 };
  
 #endif
-
-