From: mhorner Date: Fri, 24 Oct 2003 05:47:42 +0000 (+0000) Subject: Added explicit base class declaration X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=1ab1087425694fdff316e687372d20bf485132e5;p=u%2Fmrichter%2FAliRoot.git Added explicit base class declaration --- diff --git a/EMCAL/AliEMCALv1.h b/EMCAL/AliEMCALv1.h index 65e52c8fa8e..c7de2510da9 100644 --- a/EMCAL/AliEMCALv1.h +++ b/EMCAL/AliEMCALv1.h @@ -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 };