]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/html/AliPHOSv0.h
Logics of high gain adding to digits has changed
[u/mrichter/AliRoot.git] / PHOS / html / AliPHOSv0.h
1 #ifndef ALIPHOSV0_H
2 #define ALIPHOSV0_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 //_________________________________________________________________________
7 // Implementation version v0 of PHOS Manager class 
8 // Layout EMC + PPSD has name GPS2  
9 // Layout EMC + CPV  has name IHEP
10 //*--                  
11 //*-- Author: Yves Schutz (SUBATECH)
12
13 // --- ROOT system ---
14
15 class TFile;
16
17 // --- AliRoot header files ---
18 #include "AliPHOS.h"
19
20 class AliPHOSv0 : public AliPHOS {
21
22  public:
23
24   AliPHOSv0() {
25     //ctor
26     fGeom=0;
27   }
28   AliPHOSv0(const char *name, const char *title="") ;
29   AliPHOSv0(const AliPHOSv0 & phos) {
30     // cpy ctor: no implementation yet
31     // requested by the Coding Convention
32     abort() ; 
33   } 
34   virtual ~AliPHOSv0(void){
35     // dtor
36   } 
37
38   virtual void   AddHit( Int_t shunt, Int_t primary, Int_t track, Int_t id, Float_t *hits ) {
39     // useless since there are no hits
40     abort() ; 
41   }
42   virtual void   BuildGeometry(void) ;             // creates the geometry for the ROOT display
43   void           BuildGeometryforPHOS(void) ;      // creates the PHOS geometry for the ROOT display
44   void           BuildGeometryforPPSD(void) ;      // creates the PPSD geometry for the ROOT display
45   void           BuildGeometryforCPV(void) ;       // creates the CPV  geometry for the ROOT display
46   virtual void   CreateGeometry(void) ;            // creates the geometry for GEANT
47   void           CreateGeometryforPHOS(void) ;     // creates the PHOS geometry for GEANT
48   void           CreateGeometryforPPSD(void) ;     // creates the PPSD geometry for GEANT
49   void           CreateGeometryforCPV(void) ;      // creates the CPV  geometry for GEANT
50   void           CreateGeometryforSupport(void) ;  // creates the Support geometry for GEANT
51   virtual Float_t ZMin() const;                    // overall dimension of the module (min)
52   virtual Float_t ZMax() const;                    // overall dimension of the module (max)
53
54   virtual AliPHOSGeometry * GetGeometry() {
55     // gets the pointer to the AliPHOSGeometry unique instance  
56     return fGeom ; 
57   }  
58   virtual void   Init(void) ;                                       // does nothing
59   virtual Int_t  IsVersion(void) const { 
60     // Gives the version number 
61     return 0 ; 
62   }
63   virtual TString Version(void){ 
64     // As above
65     return TString("v0") ; 
66   }
67   
68   AliPHOSv0 & operator = (const AliPHOSv0 & rvalue)  {
69     // assignement operator requested by coding convention but not needed
70     abort() ;
71     return *this ; 
72   }
73   
74  protected:
75   
76   AliPHOSGeometry * fGeom ;                       // Geometry definition
77   
78   ClassDef(AliPHOSv0,1)  // Implementation of PHOS manager class for layout EMC+PPSD
79     
80     };
81     
82 #endif // AliPHOSV0_H