//_____________________________________________________________________________
-Bool_t AliReconstruction::Run(const char* input,
- Int_t firstEvent, Int_t lastEvent)
+Bool_t AliReconstruction::Run(const char* input)
{
// run the reconstruction
for (Int_t iEvent = 0; iEvent < fRunLoader->GetNumberOfEvents(); iEvent++) {
if (fRawReader) fRawReader->NextEvent();
- if ((iEvent < firstEvent) || ((lastEvent >= 0) && (iEvent > lastEvent))) {
+ if ((iEvent < fFirstEvent) || ((fLastEvent >= 0) && (iEvent > fLastEvent))) {
// copy old ESD to the new one
if (treeOld) {
treeOld->SetBranchAddress("ESD", &esd);
fLoadAlignFromCDB = kFALSE;}
Bool_t ApplyAlignObjsToGeom(TObjArray* alObjArray);
- virtual Bool_t Run(const char* input,
- Int_t firstEvent, Int_t lastEvent = -1);
- Bool_t Run(const char* input = NULL)
- {return Run(input, fFirstEvent, fLastEvent);};
- Bool_t Run(Int_t firstEvent, Int_t lastEvent = -1)
- {return Run(NULL, firstEvent, lastEvent);};
+ virtual Bool_t Run(const char* input = NULL);
private: