]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliRun.cxx
Mainly coding conventions + some small bug fixes
[u/mrichter/AliRoot.git] / STEER / AliRun.cxx
index 0e14eb7bc39a20b7185c6e3a64904890a4419999..e38ab486c4896c8d59c18d14a5e2504090271e78 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.40  2000/07/12 08:56:25  fca
+Coding convention correction and warning removal
+
 Revision 1.39  2000/07/11 18:24:59  fca
 Coding convention corrections + few minor bug fixes
 
@@ -227,15 +230,6 @@ AliRun::AliRun(const char *name, const char *title)
   fHitLists  = new TList();
 }
 
-//_____________________________________________________________________________
-AliRun::AliRun(const AliRun &run)
-{
-  // 
-  // Copy constructor
-  //
-  run.Copy(*this);
-}
-
 
 //_____________________________________________________________________________
 AliRun::~AliRun()
@@ -1573,26 +1567,6 @@ void AliRun::StepManager(Int_t id)
   }
 }
 
-//_____________________________________________________________________________
-AliRun& AliRun::operator = (const AliRun &run)
-{
-  //
-  // Assignment operator
-  //
-  if(this != &run) run.Copy(*this);
-  return (*this);
-}
-
-
-//_____________________________________________________________________________
-void AliRun::Copy(AliRun &/* run */) const
-{
-  //
-  // Copy *this onto run, not implemented for AliRun
-  //
-  Fatal("operator =","Assignment operator not implemented!\n");
-}
-
 //_____________________________________________________________________________
 void AliRun::Streamer(TBuffer &R__b)
 {