]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Added explicit base class declaration
authormhorner <mhorner@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 24 Oct 2003 05:47:42 +0000 (05:47 +0000)
committermhorner <mhorner@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 24 Oct 2003 05:47:42 +0000 (05:47 +0000)
EMCAL/AliEMCALv1.h

index 65e52c8fa8e8e59cb77de94f535d4b477678e391..c7de2510da92834cfe703e5f07558fa19eab7edd 100644 (file)
@@ -28,7 +28,7 @@ public:
   AliEMCALv1(const char *name, const char *title="") ;
   // cpy ctor: no implementation yet
   // requested by the Coding Convention
-  AliEMCALv1(const AliEMCALv0 & emcal) {
+  AliEMCALv1(const AliEMCALv0 & emcal):AliEMCALv0(emcal) {
     Fatal("cpy ctor", "not implemented") ;  }
   virtual ~AliEMCALv1(void) ;
   virtual void  AddHit( Int_t shunt, Int_t primary, Int_t track, Int_t iparent, Float_t ienergy,
@@ -45,7 +45,7 @@ public:
     
 private:
 
-  ClassDef(AliEMCALv1,5)//Implementation of EMCAL manager class to produce hits in a Central Calorimeter 
+  ClassDef(AliEMCALv1,6)//Implementation of EMCAL manager class to produce hits in a Central Calorimeter 
     
 };