]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MONITOR/client.C
Classed moved form libJETANMC to libJETAN.
[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.so");
11     gSystem->Load("libAliHLTMisc.so");
12     gSystem->Load("libAliHLTHough.so");
13     gSystem->Load("libAliHLTComp.so");
14   }
15   if (!gROOT->GetClass("AliMonitorClient")) {
16     gSystem->Load("libMONITOR.so");
17   }
18   new AliMonitorClient;
19 }