]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PMD/AliPMDv0.h
warning fixed
[u/mrichter/AliRoot.git] / PMD / AliPMDv0.h
index 968be5ca8d4eaa358d6ad755cd53c4b1cf8dae11..84479da43d74d7a7647db78eec9e2e6332784aaf 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef PMDV0_H
-#define PMDV0_H
+#ifndef ALIPMDV0_H
+#define ALIPMDV0_H
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice                               */
 
@@ -15,9 +15,6 @@
  
 class AliPMDv0 : public AliPMD {
 
-private:
-  Int_t fMedSens;
-  
 public:
   AliPMDv0();
   AliPMDv0(const char *name, const char *title);
@@ -30,9 +27,30 @@ public:
   virtual void  Init();
   virtual Int_t IsVersion() const {return 1;}
   virtual void  StepManager();
-  virtual void  DrawModule();
-   ClassDef(AliPMDv0,1)  //Hits manager for set:PMD
+  virtual void  DrawModule() const;
+  
+ private:
+  static const Int_t   fgkNcellHole;     // Hole Dimension
+  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 fgkBoundary;      // Thickness of Boundary wall
+  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 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 fgkPi;            // Value of pi
+  
+  Float_t fSMthick;     // Thickness of the supermodule
+  Float_t fSMLength;    // Supermodule length
+  Int_t   fMedSens;     // Sensitive Medium (Ar+C02)
+  Int_t   fNcellSM;     // Number of cells in SuperModule
+  
+  ClassDef(AliPMDv0,1)  //Hits manager for set:PMD
 };
  
 #endif