]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - LHC/AliLHC.cxx
Fixed a bug related to the usage of the runloader in the HLT tracking.
[u/mrichter/AliRoot.git] / LHC / AliLHC.cxx
index 84a1b7f8bc315b91bf5fcca05251e36ba8572d7f..747d1a0044bcccef2906b468decd3401aebc7871 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-/*
-$Log$
-Revision 1.2  2001/08/30 09:48:12  hristov
-The operator[] is replaced by At() or AddAt() in case of TObjArray.
+/* $Id$ */
 
-Revision 1.1  2001/07/25 17:28:32  morsch
-LHC related code. First commit.
-
-*/
 #include "AliLHC.h"
 #include "AliLhcIRegion.h"
 #include "AliLhcProcess.h"
@@ -47,6 +40,7 @@ AliLHC::AliLHC()
 }
 
 AliLHC::AliLHC(const AliLHC& lhc)
+    : TObject(lhc)
 {
 // copy constructor
 }
@@ -162,7 +156,7 @@ void AliLHC::Evaluate()
   //
   // Loop over generators and initialize
   while((region = (AliLhcIRegion*)nextregion())) {
-    region->Draw();
+    region->DrawPlots();
   }
   
   TIter next(fProcesses);
@@ -170,13 +164,13 @@ 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)
+AliLHC& AliLHC::operator=(const  AliLHC & /*rhs*/)
 {
 // Assignment operator
     return *this;