ROOT logo
#if !defined(__CINT__) || defined(__MAKECINT__)
#include "MONITOR/AliMonitorClient.h"
#include "TSystem.h"
#endif

void client()
{
  // load libraries
  if (!gROOT->GetClass("AliLevel3")) {
    gSystem->Load("libAliHLTSrc.so");
    gSystem->Load("libAliHLTMisc.so");
    gSystem->Load("libAliHLTHough.so");
    gSystem->Load("libAliHLTComp.so");
  }
  if (!gROOT->GetClass("AliMonitorClient")) {
    gSystem->Load("libMONITOR.so");
  }
  new AliMonitorClient;
}
 client.C:1
 client.C:2
 client.C:3
 client.C:4
 client.C:5
 client.C:6
 client.C:7
 client.C:8
 client.C:9
 client.C:10
 client.C:11
 client.C:12
 client.C:13
 client.C:14
 client.C:15
 client.C:16
 client.C:17
 client.C:18
 client.C:19
 client.C:20