]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - MONITOR/client.C
Missing macros for PWGCF, PWGDQ and PWGLF
[u/mrichter/AliRoot.git] / MONITOR / client.C
... / ...
CommitLineData
1#if !defined(__CINT__) || defined(__MAKECINT__)
2#include "MONITOR/AliMonitorClient.h"
3#include "TSystem.h"
4#endif
5
6void 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}