]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliBaseLoader.cxx
AliTPCclustererMI.cxx - printf statement
[u/mrichter/AliRoot.git] / STEER / AliBaseLoader.cxx
index 4e4746d9889c3086635b25601c69bb0799feb16c..2abd145fbaacf430b66bdb8ad51306b1e4f671a3 100644 (file)
@@ -29,6 +29,7 @@
 /* $Id$ */
 
 #include <TString.h>
+#include <TFile.h>
 
 #include "AliBaseLoader.h"
 #include "AliLog.h"
@@ -62,30 +63,6 @@ AliBaseLoader::AliBaseLoader(const TString& name,  AliDataLoader* dl, Bool_t sto
   //
 }
 
-//______________________________________________________________________________
-AliBaseLoader::AliBaseLoader(const AliBaseLoader& source) : 
-  TNamed(source),
-  fIsLoaded(source.fIsLoaded),
-  fStoreInTopOfFile(source.fStoreInTopOfFile),
-  fDoNotReload(source.fDoNotReload),
-  fDataLoader(source.fDataLoader)
-{
-  //
-  // copy constructor
-  //
-  AliFatal("Copy constructor not implemented");
-}
-
-//______________________________________________________________________________
-AliBaseLoader& AliBaseLoader::operator=(const AliBaseLoader& /*source*/) 
-{
-  //
-  // Assignment operator
-  //
-  AliFatal("Assignment operator not implemented");
-  return *this;
-}
-
 //______________________________________________________________________________
 Int_t AliBaseLoader::Load(Option_t* opt)
 {
@@ -96,7 +73,7 @@ Int_t AliBaseLoader::Load(Option_t* opt)
   
   if (Get())
     {
-      AliWarning(Form("Data <<%s>> are already loaded. Use ReloadData to force reload. Nothing done",GetName()));
+      AliDebug(1,Form("Data <<%s>> are already loaded. Use ReloadData to force reload. Nothing done",GetName()));
       return 0;
     }