From: morsch Date: Fri, 8 Mar 2002 14:13:49 +0000 (+0000) Subject: DrawPlots() instead of Draw(). X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=cfe4cfccaef12dcbcd59a1af73e7ddfb974b4100 DrawPlots() instead of Draw(). --- diff --git a/LHC/AliLHC.cxx b/LHC/AliLHC.cxx index 84a1b7f8bc3..d9c31af6e4e 100644 --- a/LHC/AliLHC.cxx +++ b/LHC/AliLHC.cxx @@ -15,6 +15,9 @@ /* $Log$ +Revision 1.3 2001/10/21 18:35:19 hristov +A pointer was set to zero in the default constructor to avoid memory management problems + Revision 1.2 2001/08/30 09:48:12 hristov The operator[] is replaced by At() or AddAt() in case of TObjArray. @@ -162,7 +165,7 @@ void AliLHC::Evaluate() // // Loop over generators and initialize while((region = (AliLhcIRegion*)nextregion())) { - region->Draw(); + region->DrawPlots(); } TIter next(fProcesses); @@ -170,10 +173,10 @@ void AliLHC::Evaluate() // // Evolve for each process while((process = (AliLhcProcess*)next())) { - process->Draw(); + process->DrawPlots(); } - Beam(0)->Draw(); + Beam(0)->DrawPlots(); } AliLHC& AliLHC::operator=(const AliLHC & rhs)