]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/AliEMCALv0.h
Corrected signature of Isxxx methods
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALv0.h
index e1297b3741a21ce5c31209aca32337cf782d0520..6aadcf7c4b3daa44b05587b35952b88d509f9a36 100644 (file)
@@ -30,7 +30,7 @@ class AliEMCALv0 : public AliEMCAL {
   AliEMCALv0(const AliEMCALv0 & emcal) {
     // cpy ctor: no implementation yet
     // requested by the Coding Convention
-    abort() ; 
+    Fatal("cpy ctor", "not implemented") ;  
   } 
   virtual ~AliEMCALv0(){} 
 
@@ -41,33 +41,25 @@ class AliEMCALv0 : public AliEMCAL {
 
   virtual void BuildGeometry();// creates the geometry for the ROOT display
   virtual void CreateGeometry() ;// creates the geometry for GEANT
-
-  virtual AliEMCALGeometry * GetGeometry() {
-    // gets the pointer to the AliEMCALGeometry unique instance
-    return fGeom ;
-  }
-
-
-
   virtual void   Init(void) ;                                       // does nothing
   virtual Int_t  IsVersion(void) const { 
     // Gives the version number 
     return 0 ; 
   }
-  virtual TString Version(void)
+  virtual const TString Version(void) const
     // As above
     return TString("v0") ; 
   }
   
   AliEMCALv0 & operator = (const AliEMCALv0 & rvalue)  {
     // assignement operator requested by coding convention but not needed
-    abort() ;
+    Fatal("operator =", "not implemented") ;  
     return *this ; 
   }
   
  protected:
 
-  ClassDef(AliEMCALv0,1)  // Implementation of EMCAL manager class for layout EMC+PPSD
+  ClassDef(AliEMCALv0,1)  // Implementation of EMCAL manager class for midrapidity barrel layout between 0 and 120 degrees 
     
     };