Fix OrderChecker bug

This commit is contained in:
Gordon McCann 2022-06-22 13:46:57 -04:00
parent 60970e52bb
commit bcba081e7d

View File

@ -29,7 +29,7 @@ namespace EventBuilder {
for(Long64_t i=0; i<tree->GetEntries(); i++) for(Long64_t i=0; i<tree->GetEntries(); i++)
{ {
tree->GetEntry(); tree->GetEntry(i);
if(prevStamp >= ts) if(prevStamp >= ts)
{ {
EVB_WARN("Bad order at entry {0} out of {1}",i,tree->GetEntries()); EVB_WARN("Bad order at entry {0} out of {1}",i,tree->GetEntries());
@ -41,4 +41,4 @@ namespace EventBuilder {
return true; return true;
} }
} }