16 Float_t progressRatio;
23 if (slider) slider->SetRange(0, ::progressRatio);
28 void hsumTimer(Int_t nfill=100000)
30 c1 =
new TCanvas(
"c1",
"The HSUM example",200,10,600,400);
35 auto total =
new TH1F(
"total",
"This is the total distribution",100,-4,4);
36 auto main =
new TH1F(
"main",
"Main contributor",100,-4,4);
37 auto s1 =
new TH1F(
"s1",
"This is the first signal",100,-4,4);
38 auto s2 =
new TH1F(
"s2",
"This is the second signal",100,-4,4);
40 total->SetMarkerStyle(21);
41 total->SetMarkerSize(0.7);
42 main->SetFillColor(16);
45 total->SetMaximum(nfill/20.);
50 c1->Update();slider =
new TSlider(
"slider",
51 "test",4.2,0,4.6,0.8*total->GetMaximum(),38);
52 slider->SetFillColor(46);
55 TTimer timer(
"hsumUpdate()",300);
59 Float_t xs1, xs2, xmain;
61 for (Int_t i=0; i<nfill; i++) {
62 ::progressRatio = Float_t(i)/Float_t(nfill);
63 if (gSystem->ProcessEvents())
break;
64 xmain = gRandom->Gaus(-1,1.5);
65 xs1 = gRandom->Gaus(-0.5,0.5);
66 xs2 = gRandom->Landau(1,0.15);