ULong64_t AliEveEventBufferHomer::GetEventIdFromSource() {
- ///
+ ///see header file for documentation
return fHomer->GetEventID();
}
fHomer->SetRetryCount(1,15);
fHomer->SetBlockOwner(kFALSE);
- fHomer->StartEveSourceListLoop();
+ //fHomer->StartEveSourceListLoop();
}
if(fAsyncList) {
TFile * afile = TFile::Open(Form("%d_0x%016X_Async.root", runnumber, GetEventId()), "RECREATE");
fAsyncList->Write("blockList", TObject::kSingleKey);
+ //aFile-
afile->Close();
}
}
}
+///________________________________________________________________________________
+void AliEveHLTEventManagerHomer::ProcessList(TList * blockList) {
+
+ ProcessEvent(blockList);
+ UpdateDisplay();
+
+}
+
+
///________________________________________________________________________________
void AliEveHLTEventManagerHomer::NextEvent() {
UpdateDisplay();
} else {
- cout << "could't get the sync event"<<endl;
+ cout << "couldn't get the sync event"<<endl;
}
// cout << "doint async block"<<endl;
//See header file for documentation
TList * fEvent = dynamic_cast<TList*>(fEventBuffer->Fwd());
if(fEvent) {
+ ResetDisplay();
ProcessEvent(fEvent);
+ UpdateDisplay();
} else {
cout << "couldn't get the fwd event"<<endl;
}
//See header file for documentation
TList * fEvent = dynamic_cast<TList*>(fEventBuffer->Back());
if(fEvent) {
+ ResetDisplay();
ProcessEvent(fEvent);
+ UpdateDisplay();
} else {
cout << "couldn't get the back event"<<endl;
}