]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
AliMixInputHandlerInfo : BeginEvent function for each input handler after fChain...
authormvala <mvala@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 28 Feb 2011 18:36:58 +0000 (18:36 +0000)
committermvala <mvala@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 28 Feb 2011 18:36:58 +0000 (18:36 +0000)
ANALYSIS/EventMixing/AliMixInputHandlerInfo.cxx

index 40aa7d958c23498ec2659309584e49c18ecb8ffa..32d0346000534d42af3ed8842806a236a27b2379 100644 (file)
@@ -132,7 +132,6 @@ void AliMixInputHandlerInfo::PrepareEntry(TChainElement *te, Long64_t entry, Ali
          fChain->AddFile(te->GetTitle());
          fChain->GetEntry(0);
          eh->Init(fChain->GetTree(), opt);
-//       eh->Notify(te->GetTitle());
       }
       fNeedNotify = kTRUE;
       AliDebug(AliLog::kDebug + 5, "->");
@@ -151,16 +150,16 @@ void AliMixInputHandlerInfo::PrepareEntry(TChainElement *te, Long64_t entry, Ali
          fChain->GetEntry(0);
          eh->Init(fChain->GetTree(), opt);
          eh->Notify(te->GetTitle());
-         eh->BeginEvent(entry);
          fChain->GetEntry(entry);
+         eh->BeginEvent(entry);
          fNeedNotify = kFALSE;
       } else {
          AliDebug(AliLog::kDebug, Form("We are reusing file %s ...", te->GetTitle()));
          if (fNeedNotify) eh->Notify(te->GetTitle());
          fNeedNotify = kFALSE;
          AliDebug(AliLog::kDebug, Form("Entry is %lld  fChain->GetEntries %lld ...", entry, fChain->GetEntries()));
-         eh->BeginEvent(entry);
          fChain->GetEntry(entry);
+         eh->BeginEvent(entry);
          // file is in tree fChain already
       }
    }