ROOT logo

void testQAGui(const char *filename) {
  
  // gROOT->ForceStyle();
  gROOT->SetStyle("Plain");
  gStyle->SetPalette(1);
  gStyle->SetOptStat(0);
  TGaxis::SetMaxDigits(3);
 
  gStyle->SetTitleX(0.5);
  gStyle->SetTitleY(0.95);
  gStyle->SetTitleW(0.45);
  gStyle->SetTitleH(0.05);

  gStyle->SetLabelFont(52, "XY");


  gSystem->Load("libGui.so");
  gSystem->Load("libTRDgui.so");
  
  AliTRDqaGuiMain *fMain = new AliTRDqaGuiMain(gClient->GetRoot());
  fMain->SetQAFile(filename);
}
 testQAGui.C:1
 testQAGui.C:2
 testQAGui.C:3
 testQAGui.C:4
 testQAGui.C:5
 testQAGui.C:6
 testQAGui.C:7
 testQAGui.C:8
 testQAGui.C:9
 testQAGui.C:10
 testQAGui.C:11
 testQAGui.C:12
 testQAGui.C:13
 testQAGui.C:14
 testQAGui.C:15
 testQAGui.C:16
 testQAGui.C:17
 testQAGui.C:18
 testQAGui.C:19
 testQAGui.C:20
 testQAGui.C:21
 testQAGui.C:22
 testQAGui.C:23
 testQAGui.C:24