1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{
gROOT->LoadMacro("macros.C"); // Load service macros
gSystem->Load("libtestDTCalibration.so");
// Get the style
TStyle * style = getStyle();
// Style options
style->SetOptStat(111111);
style->SetOptFit(1111);
style->cd();
// Retrieve histogram sets
TFile *f = gROOT->GetListOfFiles()->Last();
DTTimeBoxPlotter *TBplotter = new DTTimeBoxPlotter(f);
DTMeanTimerPlotter *MTplotter = new DTMeanTimerPlotter(f);
}
|