]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliLoader.cxx
Only one Check method needs to be implemented by detectors that will be valid fo...
[u/mrichter/AliRoot.git] / STEER / AliLoader.cxx
index e719d63c21aafb6af368326e8bc86b59d0ed204c..0ced45aa25f888b88b0cf9d48d83ce37cbe3f753 100644 (file)
@@ -7,7 +7,7 @@
 //Author: Alice Offline Group http://alisoft.cern.ch
 //Responsible: Piotr.Skowronski@cern.ch
 //
-#include <AliLoader.h>
+#include "AliLoader.h"
 
 //Root includes
 #include <TROOT.h>
@@ -106,33 +106,6 @@ AliLoader::AliLoader(const Char_t * detname,TFolder* eventfolder):
    SetEventFolder(eventfolder);
    //fileoption's don't need to initialized because default TString ctor does it correctly
 }
-/*****************************************************************************/ 
-AliLoader::AliLoader(const AliLoader& source) : 
-  TNamed(source), 
-  fDataLoaders(source.fDataLoaders),
-  fDetectorName(source.fDetectorName),
-  fEventFolder(source.fEventFolder),
-  fDataFolder(source.fDataFolder),
-  fDetectorDataFolder(source.fDetectorDataFolder),
-  fModuleFolder(source.fModuleFolder),
-  fTasksFolder(source.fTasksFolder),
-  fQAFolder(source.fQAFolder)
-{
-  // dummy copy constructor
-  if(&source==this)return;
-  
-  AliFatal("Copy constructor not implemented. Aborting");
-  return;
-}
-
-/*****************************************************************************/ 
-AliLoader& AliLoader::operator=(const AliLoader& source) {
-  // dummy assignment operator
-  if(&source==this) return *this;
-  
-  AliFatal("Assignment operator not implemented. Aborting");
-  return *this;
-}
 
 /*****************************************************************************/ 
 AliLoader::~AliLoader()
@@ -831,7 +804,7 @@ Bool_t  AliLoader::TestFileOption(Option_t* opt)
 /*****************************************************************************/ 
 void  AliLoader::SetDirName(TString& dirname)
 {
-//adds "dirname/" to each file 
+//adds "dirname" to each file. Dirname should end with "#","/", or ":" 
   TIter next(fDataLoaders);
   AliDataLoader* dl;
   while((dl = (AliDataLoader*)next()))
@@ -899,13 +872,7 @@ Bool_t AliLoader::IsOptionWritable(const TString& opt)
   if (opt.CompareTo("update",TString::kIgnoreCase)) return kTRUE;
   return kFALSE;
 }
-/*****************************************************************************/ 
 
-Int_t AliLoader::GetDebug()
-{
-  AliFatalClass("Don't use this method any more, use AliDebug instead");
-  return AliDebugLevelClass();
-}
 /*****************************************************************************/ 
 
 void AliLoader::SetDebug(Int_t deb)