]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Minor bugfixes and extensions for the onlineDiplay Interface
authorjthaeder <jthaeder@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 1 Sep 2009 19:48:46 +0000 (19:48 +0000)
committerjthaeder <jthaeder@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 1 Sep 2009 19:48:46 +0000 (19:48 +0000)
EVE/EveHLT/AliEveHOMERManager.cxx
EVE/EveHLT/AliEveHOMERManager.h
HLT/BASE/AliHLTHOMERManager.cxx

index 5a714acdf65400c51e91fb9a540b51bd3fa80230..55c02e8ce3b44b9a455696187e626a9f981fc1e1 100644 (file)
@@ -99,10 +99,10 @@ Int_t AliEveHOMERManager::CreateEveSourcesListLoop() {
       break;
     
     else if (iResult == 1) {
-      HLTWarning( Form("Couldn't find active services, sleeping %d s\n", fRetryCount) ) ;
+      HLTWarning( Form("Couldn't find active services, sleeping %d s", fRetryCount) ) ;
     }   
     else if (iResult == 2) {
-      HLTWarning( Form("Services List empty, sleeping %d s\n", fRetryCount) ) ;
+      HLTWarning( Form("Services List empty, sleeping %d s", fRetryCount) ) ;
     }
     else {
       HLTError( Form("Other problem ... \n") ); 
@@ -113,7 +113,7 @@ Int_t AliEveHOMERManager::CreateEveSourcesListLoop() {
   }
 
   if ( iResult ) {
-    HLTError( Form("Couldn't find active services.\n") );
+    HLTWarning( Form("Couldn't find active services.") );
     return iResult;
   } 
   
@@ -121,10 +121,10 @@ Int_t AliEveHOMERManager::CreateEveSourcesListLoop() {
 }
 
 //##################################################################################
-Int_t AliEveHOMERManager::ConnectEVEtoHOMER() {
+Int_t AliEveHOMERManager::ConnectEVEtoHOMER( TString detector ) {
   // see header file for class documentation
 
   fStateHasChanged = fSrcList->GetSelectedSources();
   
-  return ConnectHOMER();
+  return ConnectHOMER(detector);
 }
index 330464e1c14b9f6cf034a94333d79106e6b9a945..ec900f749c521f5e55bb008401dc77dd70b86639 100644 (file)
@@ -56,7 +56,7 @@ public:
 
   Int_t CreateEveSourcesListLoop();
   
-  Int_t ConnectEVEtoHOMER();
+  Int_t ConnectEVEtoHOMER(TString detector="ALL");
 
   void SetRetryCount(Int_t count, Int_t sleeptime) { fRetryCount = count; fRetrySleeptime = sleeptime; }
 
index 2234e86c332ec95c41b0e88ea04018b64d9188ce..cd6e9a5cd274a8b1726624c2ba9541b9fdb53384 100644 (file)
@@ -32,7 +32,7 @@
    using namespace std;
 #endif
 
-#define EVE_DEBUG 0
+#define EVE_DEBUG 1
 
 #include "AliHLTHOMERManager.h"
 // -- -- -- -- -- -- -- 
@@ -313,7 +313,7 @@ Int_t AliHLTHOMERManager::NextEvent(){
       return -iResult;
     }
     else if ( iResult == 110 ) {
-      HLTError(Form("Timout occured, reading event from source %d: %s (%d)", 
+      HLTError(Form("Timeout occured, reading event from source %d: %s (%d)", 
                    fReader->GetErrorConnectionNdx(), strerror(iResult), iResult));
       return -iResult;
     }