]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - T0/AliT0Loader.cxx
Removing the tasks from the digitization (Ruben)
[u/mrichter/AliRoot.git] / T0 / AliT0Loader.cxx
index 5852b091da43cd31a5cefe71143349588c843b8d..9ea71d4dff570825f313dc093908bf789c16627d 100644 (file)
@@ -24,8 +24,6 @@ void AliT0Loader::InitObjectLoaders()
     delete fDataLoaders->Remove(fDataLoaders->At(kDigits));
   }
   AliDataLoader* dl = new AliDataLoader(fDetectorName + ".Digits.root","T0_D", "Digits","O");//we want to have object data not tree
-  AliTaskLoader* tl = new AliTaskLoader(fDetectorName + AliConfig::Instance()->GetDigitizerTaskName(),dl,AliRunLoader::GetRunDigitizer(),kTRUE);
-  dl->SetBaseTaskLoader(tl);
   fDataLoaders->AddAt(dl,kDigits);
 
   // R E C O N S T R U C T E D   P O I N T S, here: V E R T E X
@@ -33,7 +31,5 @@ void AliT0Loader::InitObjectLoaders()
     delete fDataLoaders->Remove(fDataLoaders->At(kRecPoints));
   }
   dl = new AliDataLoader(fDetectorName + ".RecPoints.root","T0_V", "Reconstructed Points","O");//we want to have object data not tree
-  tl = new AliTaskLoader(fDetectorName + AliConfig::Instance()->GetReconstructionerTaskName(),dl,AliRunLoader::GetRunReconstructioner(),kTRUE);
-  dl->SetBaseTaskLoader(tl);
   fDataLoaders->AddAt(dl,kRecPoints);  
 }