From ef73307738195c46240d27adb6fa526703ac6919 Mon Sep 17 00:00:00 2001 From: schutz Date: Fri, 25 Jan 2002 15:43:08 +0000 Subject: [PATCH] Initialized data members to 0 in default ctor --- EMCAL/AliEMCALDigit.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/EMCAL/AliEMCALDigit.cxx b/EMCAL/AliEMCALDigit.cxx index 1e50ab7986c..d02c196909a 100644 --- a/EMCAL/AliEMCALDigit.cxx +++ b/EMCAL/AliEMCALDigit.cxx @@ -48,11 +48,11 @@ ClassImp(AliEMCALDigit) fIndexInList = -1 ; fNprimary = 0 ; - fNMaxPrimary = 20 ; + fNMaxPrimary = 0 ; fNiparent = 0 ; - fNMaxiparent = 40; //fNMaxPrimary*10; - fPrimary = new Int_t[fNMaxPrimary] ; - fIparent = new Int_t[fNMaxiparent] ; + fNMaxiparent = 0; + fPrimary = 0 ; + fIparent = 0 ; } //____________________________________________________________________________ -- 2.43.0