]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MONITOR/client.C
fixed include in EveBase CMakeLists and path to online reco config file
[u/mrichter/AliRoot.git] / MONITOR / client.C
1 #if !defined(__CINT__) || defined(__MAKECINT__)
2 #include "MONITOR/AliMonitorClient.h"
3 #include "TSystem.h"
4 #endif
5
6 void client()
7 {
8   // load libraries
9   if (!gROOT->GetClass("AliLevel3")) {
10     gSystem->Load("libAliHLTSrc");
11     gSystem->Load("libAliHLTMisc");
12     gSystem->Load("libAliHLTHough");
13     gSystem->Load("libAliHLTComp");
14   }
15   if (!gROOT->GetClass("AliMonitorClient")) {
16     gSystem->Load("libMONITOR");
17   }
18   new AliMonitorClient;
19 }