]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RAW/AliRawHLTManager.cxx
Another histos for lumi
[u/mrichter/AliRoot.git] / RAW / AliRawHLTManager.cxx
index 92e344dabb0c808025f437f88f8cb6b53ff5592c..ec37f579ebe72ea36fbcfa4c34dd248a7993bf34 100644 (file)
@@ -23,7 +23,6 @@
 */
 
 #include "AliRawHLTManager.h"
-#include "AliRawReaderHLT.h"
 #include "AliLog.h"
 #include "TSystem.h"
 #include "TClass.h"
@@ -48,7 +47,7 @@ AliRawHLTManager::~AliRawHLTManager()
 }
 
 int AliRawHLTManager::fLibraryStatus=kUnloaded;
-void* AliRawHLTManager::fFctCreateRawReaderHLT=NULL;
+AliRawReaderHLTCreateInstance_t AliRawHLTManager::fFctCreateRawReaderHLT=NULL;
 void* AliRawHLTManager::fFctCreateRawStream=NULL;
 
 AliRawReader* AliRawHLTManager::CreateRawReaderHLT(AliRawReader* pParent, const char* detectors)
@@ -82,7 +81,7 @@ int AliRawHLTManager::LoadLibrary()
   // library has been loaded. If it was already loaded we get 0 
   int iTrials=0;
   do {
-    fFctCreateRawReaderHLT=gSystem->DynFindSymbol(ALIHLTREC_LIBRARY, ALIRAWREADERHLT_CREATE_INSTANCE);
+    fFctCreateRawReaderHLT=(AliRawReaderHLTCreateInstance_t)gSystem->DynFindSymbol(ALIHLTREC_LIBRARY, ALIRAWREADERHLT_CREATE_INSTANCE);
   } while (fFctCreateRawReaderHLT==NULL && gSystem->Load(ALIHLTREC_LIBRARY)==0 && iTrials++<1);
   if (fFctCreateRawReaderHLT) {
     iResult=kLoaded;