From: hristov Date: Sun, 21 Oct 2001 18:35:19 +0000 (+0000) Subject: A pointer was set to zero in the default constructor to avoid memory management problems X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=f5a401826eedb6f9652a36a6b5088e59ff1f0234 A pointer was set to zero in the default constructor to avoid memory management problems --- diff --git a/LHC/AliLHC.cxx b/LHC/AliLHC.cxx index e67bb2634bd..84a1b7f8bc3 100644 --- a/LHC/AliLHC.cxx +++ b/LHC/AliLHC.cxx @@ -15,6 +15,9 @@ /* $Log$ +Revision 1.2 2001/08/30 09:48:12 hristov +The operator[] is replaced by At() or AddAt() in case of TObjArray. + Revision 1.1 2001/07/25 17:28:32 morsch LHC related code. First commit. @@ -40,6 +43,7 @@ AliLHC::AliLHC() fBeams->AddAt(0,1); fTime = 0; fTimeMax = 0; + fTimeA = 0; } AliLHC::AliLHC(const AliLHC& lhc)