4 #include "KVHistoManipulator.h"
12 #include "TMethodCall.h"
15 #include "KVNumberList.h"
19 #include "TMultiGraph.h"
21 #include <TObjString.h>
37 gHistoManipulator =
this;
48 if (gHistoManipulator ==
this)
49 gHistoManipulator =
nullptr;
83 cout <<
"pointeur histogramme nul" << endl;
88 if (hh->InheritsFrom(
"TH2")) {
90 for (Int_t nx = 1; nx <= hh->GetNbinsX(); nx += 1) {
91 for (Int_t ny = 1; ny <= hh->GetNbinsY(); ny += 1) {
93 if (stat_min != -1 && hh->GetBinContent(nx, ny) < stat_min) raz = kTRUE;
94 if (stat_max != -1 && hh->GetBinContent(nx, ny) > stat_max) raz = kTRUE;
96 hh->SetBinContent(nx, ny, 0);
97 hh->SetBinError(nx, ny, 0);
103 else if (hh->InheritsFrom(
"TProfile")) {
104 TProfile* prof = (TProfile*)hh;
105 for (Int_t nx = 1; nx <= prof->GetNbinsX(); nx += 1) {
107 if (stat_min != -1 && prof->GetBinEntries(nx) < stat_min) raz = kTRUE;
108 if (stat_max != -1 && prof->GetBinEntries(nx) > stat_max) raz = kTRUE;
110 prof->SetBinContent(nx, 0);
111 prof->SetBinEntries(nx, 0);
112 prof->SetBinError(nx, 0);
117 else if (hh->InheritsFrom(
"TH1")) {
118 for (Int_t nx = 1; nx <= hh->GetNbinsX(); nx += 1) {
120 if (stat_min != -1 && hh->GetBinContent(nx) < stat_min) raz = kTRUE;
121 if (stat_max != -1 && hh->GetBinContent(nx) > stat_max) raz = kTRUE;
123 hh->SetBinContent(nx, 0);
124 hh->SetBinError(nx, 0);
159 cout <<
"pointeur histogramme nul" << endl;
165 for (Int_t nx = 1; nx <= hh->GetNbinsX(); nx += 1) {
166 for (Int_t ny = 1; ny <= hh->GetNbinsY(); ny += 1) {
168 Double_t valx = hh->GetXaxis()->GetBinCenter(nx);
169 Double_t valy = hh->GetYaxis()->GetBinCenter(ny);
170 if (mode ==
"in" && !cut->IsInside(valx, valy)) raz = kTRUE;
171 if (mode ==
"out" && cut->IsInside(valx, valy)) raz = kTRUE;
173 hh->SetBinContent(nx, ny, 0);
174 hh->SetBinError(nx, ny, 0);
240 Bool_t width = !strcmp(norm,
"width");
243 Bool_t fixed_bins = (nx != -1);
246 nx = hh->GetNbinsX();
247 abs = hh->GetXaxis()->GetBinLowEdge(1);
248 xmin = fx->Eval(abs);
249 abs = hh->GetXaxis()->GetBinUpEdge(hh->GetNbinsX());
250 xmax = fx->Eval(abs);
252 fx->SetRange(hh->GetXaxis()->GetBinLowEdge(1), hh->GetXaxis()->GetBinUpEdge(nx));
256 nx = hh->GetNbinsX();
257 xmin = hh->GetXaxis()->GetBinLowEdge(1);
258 xmax = hh->GetXaxis()->GetBinUpEdge(hh->GetNbinsX());
261 if (hh->InheritsFrom(
"TH2")) {
264 ny = hh->GetNbinsY();
265 abs = hh->GetYaxis()->GetBinLowEdge(1);
266 ymin = fy->Eval(abs);
267 abs = hh->GetYaxis()->GetBinUpEdge(hh->GetNbinsY());
268 ymax = fy->Eval(abs);
270 fy->SetRange(hh->GetYaxis()->GetBinLowEdge(1), hh->GetYaxis()->GetBinUpEdge(ny));
274 ny = hh->GetNbinsY();
275 ymin = hh->GetYaxis()->GetBinLowEdge(1);
276 ymax = hh->GetYaxis()->GetBinUpEdge(hh->GetNbinsY());
280 TClass* clas = TClass::GetClass(hh->ClassName());
281 gg = (TH1*) clas->New();
282 if (!gg)
return nullptr;
284 hname.Form(
"%s_scaled", hh->GetName());
285 gg->SetNameTitle(hname.Data(), hh->GetTitle());
287 if (hh->InheritsFrom(
"TH2")) gg->SetBins(nx, xmin, xmax, ny, ymin, ymax);
288 else gg->SetBins(nx, xmin, xmax);
291 Double_t Xbin_width_corr = 1.0, Ybin_width_corr = 1.0;
293 Double_t orig_Xbin_width = (hh->GetXaxis()->GetXmax() - hh->GetXaxis()->GetXmin()) / hh->GetNbinsX();
294 Double_t new_Xbin_width = (gg->GetXaxis()->GetXmax() - gg->GetXaxis()->GetXmin()) / gg->GetNbinsX();
295 Xbin_width_corr = orig_Xbin_width / new_Xbin_width;
296 if (hh->InheritsFrom(
"TH2")) {
298 Double_t orig_Ybin_width = (hh->GetYaxis()->GetXmax() - hh->GetYaxis()->GetXmin()) / hh->GetNbinsY();
299 Double_t new_Ybin_width = (gg->GetYaxis()->GetXmax() - gg->GetYaxis()->GetXmin()) / gg->GetNbinsY();
300 Ybin_width_corr = orig_Ybin_width / new_Ybin_width;
304 for (Int_t xx = 1; xx <= hh->GetNbinsX(); xx += 1) {
305 Double_t bmin = hh->GetXaxis()->GetBinLowEdge(xx);
306 Double_t bmax = hh->GetXaxis()->GetBinUpEdge(xx);
307 abs = gRandom->Uniform(bmin, bmax);
308 if (abs == bmax) abs = bmin;
310 if (fx) resx = fx->Eval(abs);
311 if (hh->InheritsFrom(
"TH2")) {
312 for (Int_t yy = 1; yy <= hh->GetNbinsY(); yy += 1) {
313 if (hh->GetBinContent(xx, yy) > 0) {
314 bmin = hh->GetYaxis()->GetBinLowEdge(yy);
315 bmax = hh->GetYaxis()->GetBinUpEdge(yy);
316 abs = gRandom->Uniform(bmin, bmax);
317 if (abs == bmax) abs = bmin;
319 if (fy) resy = fy->Eval(abs);
320 gg->SetBinContent(gg->GetXaxis()->FindBin(resx),
321 gg->GetYaxis()->FindBin(resy),
322 hh->GetBinContent(xx, yy)*Xbin_width_corr * Ybin_width_corr);
332 Int_t nmax = (Int_t)hh->GetBinContent(xx);
333 for (
int i = 0; i < nmax; i++) {
334 abs = gRandom->Uniform(bmin, bmax);
335 Double_t resx = fx->Eval(abs);
336 gg->Fill(resx, Xbin_width_corr);
342 Double_t resy = hh->GetBinContent(xx);
343 if (fy) resy = fy->Eval(resy);
344 gg->SetBinContent(gg->GetXaxis()->FindBin(resx), resy * Xbin_width_corr);
368 TGraph* gg =
nullptr;
369 TClass* clas = TClass::GetClass(hh->ClassName());
370 gg = (TGraph*) clas->New();
371 if (!gg)
return nullptr;
373 hname.Form(
"%s_scaled", hh->GetName());
374 gg->SetNameTitle(hname.Data(), hh->GetTitle());
376 bool scale_X = axis.Contains(
"X");
378 bool scale_Y = axis.Contains(
"Y");
380 if (axis ==
"Y") FY = &f1;
382 Int_t np = hh->GetN();
383 for (Int_t nn = 0; nn < np; nn += 1) {
385 hh->GetPoint(nn, xx1, yy1);
387 if (scale_X) xx2 = FX->Eval(xx1);
389 if (scale_Y) yy2 = FY->Eval(yy1);
390 gg->SetPoint(nn, xx2, yy2);
391 if (gg->InheritsFrom(
"TGraphErrors")) {
395 Double_t e_x = ((TGraphErrors*)hh)->GetErrorX(nn);
396 Double_t e_y = ((TGraphErrors*)hh)->GetErrorY(nn);
397 if (scale_X) e_x = TMath::Abs(FX->Derivative(xx1)) * e_x;
398 if (scale_Y) e_y = TMath::Abs(FY->Derivative(yy1)) * e_y;
399 ((TGraphErrors*)gg)->SetPointError(nn, e_x, e_y);
421 cout <<
"pointeur histogramme nul" << endl;
426 expression.Form(
"(x-%lf)/%lf", hh->GetMean(1), hh->GetRMS(1));
427 TF1 fx(
"fx", expression.Data());
429 if (hh->InheritsFrom(
"TH2")) {
430 expression.Form(
"(x-%lf)/%lf", hh->GetMean(2), hh->GetRMS(2));
431 fy.reset(
new TF1(
"fy", expression.Data()));
434 TH1* gg = ScaleHisto(hh, &fx, fy.get(), nx, ny, xmin, xmax, ymin, ymax);
436 hname.Form(
"%s_centred", hh->GetName());
437 gg->SetName(hname.Data());
457 cout <<
"pointeur histogramme nul" << endl;
462 expression.Form(
"(x-%lf)/%lf", hh->GetMean(1), hh->GetRMS(1));
463 TF1 fx(
"fx", expression.Data());
464 TH2* gg = (TH2*)ScaleHisto(hh, &fx,
nullptr, nx, -1, xmin, xmax, -1., -1.);
466 hname.Form(
"%s_centred_X", hh->GetName());
467 gg->SetName(hname.Data());
487 cout <<
"pointeur histogramme nul" << endl;
492 expression.Form(
"(x-%lf)/%lf", hh->GetMean(1), hh->GetRMS(1));
493 TF1 fy(
"fy", expression.Data());
494 TH2* gg = (TH2*)ScaleHisto(hh,
nullptr, &fy, -1, ny, -1., -1., ymin, ymax);
496 hname.Form(
"%s_centred_Y", hh->GetName());
497 gg->SetName(hname.Data());
538 cout <<
"pointeur histogramme nul" << endl;
542 if (bmin == -1) bmin = 1;
544 hname.Form(
"%s_normalised", hh->GetName());
546 if ((clone = (TH2*)gDirectory->Get(hname.Data())))
delete clone;
547 clone = (TH2*)hh->Clone(hname.Data());
552 bmax = hh->GetNbinsX();
554 for (Int_t nx = bmin; nx <= bmax; nx += 1) {
556 for (Int_t ny = 1; ny <= hh->GetNbinsY(); ny += 1) integ += hh->GetBinContent(nx, ny);
558 for (Int_t ny = 1; ny <= hh->GetNbinsY(); ny += 1) {
559 clone->SetBinContent(nx, ny, hh->GetBinContent(nx, ny)*valref / integ);
560 if (hh->GetBinContent(nx, ny) > 0) {
561 Double_t erreur = clone->GetBinContent(nx, ny) * TMath::Sqrt(1. / hh->GetBinContent(nx, ny) + 1. / integ);
562 clone->SetBinError(nx, ny, erreur);
568 else if (axis ==
"Y") {
570 bmax = hh->GetNbinsY();
572 for (Int_t ny = bmin; ny <= bmax; ny += 1) {
574 for (Int_t nx = 1; nx <= hh->GetNbinsX(); nx += 1) integ += hh->GetBinContent(nx, ny);
576 for (Int_t nx = 1; nx <= hh->GetNbinsX(); nx += 1) {
577 clone->SetBinContent(nx, ny, hh->GetBinContent(nx, ny)*valref / integ);
578 Double_t erreur = clone->GetBinContent(nx, ny) * TMath::Sqrt(1. / hh->GetBinContent(nx, ny) + 1. / integ);
579 clone->SetBinError(nx, ny, erreur);
585 cout <<
"l option TString axis doit etre X ou Y" << endl;
607 cout <<
"pointeur histogramme nul" << endl;
610 if (axis ==
"X")
return RenormaliseHisto(hh, hh->GetXaxis()->FindBin(valmin), hh->GetXaxis()->FindBin(valmax), axis, valref);
611 else if (axis ==
"Y")
return RenormaliseHisto(hh, hh->GetYaxis()->FindBin(valmin), hh->GetYaxis()->FindBin(valmax), axis, valref);
613 cout <<
"l option TString axis doit etre X ou Y" << endl;
661 cout <<
"pointeur histogramme nul" << endl;
665 if (direction !=
"C" && direction !=
"D") {
666 cout <<
"l option TString direction doit etre C ou D" << endl;
669 if (hh->GetDimension() == 1) {
670 if (bmin < 1) bmin = 1;
671 if (bmax < 1) bmax = hh->GetNbinsX();
673 hname.Form(
"%s_cumulated", hh->GetName());
674 TH1* clone = (TH1*)hh->Clone(hname.Data());
677 Double_t big_sum = 0;
678 if (direction ==
"C") {
680 for (Int_t nx = 1; nx <= hh->GetNbinsX(); ++nx) {
681 if (nx < bmin) clone->SetBinContent(nx, 0);
682 else if (nx > bmax) clone->SetBinContent(nx, sum);
684 sum += hh->GetBinContent(nx);
685 clone->SetBinContent(nx, sum);
692 for (Int_t nx = hh->GetNbinsX(); nx >= 1; --nx) {
693 if (nx > bmax) clone->SetBinContent(nx, 0);
694 else if (nx < bmin) clone->SetBinContent(nx, sum);
696 sum += hh->GetBinContent(nx);
697 clone->SetBinContent(nx, sum);
703 if (!strcmp(norm,
"surf")) {
704 clone->Scale(1. / big_sum);
706 else if (!strcmp(norm,
"max")) {
707 clone->Scale(1. / sum);
712 cout <<
"cette methode n est pas prevue pour les TH2, TH3" << endl;
750 cout <<
"pointeur histogramme nul" << endl;
753 if (!(0 <= order && order <= 2)) {
754 cout <<
"ordre " << order <<
"n est pas implemente" << endl;
757 if (hh->GetDimension() == 1) {
760 hname.Form(
"%s_derivated_%d", hh->GetName(), order);
763 if (hh->InheritsFrom(
"TProfile")) clone =
new TH1F(hname.Data(), hh->GetTitle(), hh->GetNbinsX(), hh->GetBinLowEdge(1), hh->GetBinLowEdge(hh->GetNbinsX() + 1));
764 else clone = (TH1*)hh->Clone(hname.Data());
768 for (Int_t nx = 3; nx <= hh->GetNbinsX() - 2; nx += 1) {
772 -3 * hh->GetBinContent(nx - 2)
773 + 12 * hh->GetBinContent(nx - 1)
774 + 17 * hh->GetBinContent(nx)
775 + 12 * hh->GetBinContent(nx + 1)
776 - 3 * hh->GetBinContent(nx + 2)
779 else if (order == 1) {
780 Double_t h = hh->GetBinWidth(1);
781 dev = 1 / 12. / h * (
782 1 * hh->GetBinContent(nx - 2)
783 - 8 * hh->GetBinContent(nx - 1)
784 + 0 * hh->GetBinContent(nx)
785 + 8 * hh->GetBinContent(nx + 1)
786 - 1 * hh->GetBinContent(nx + 2)
790 Double_t h2 = pow(hh->GetBinWidth(1), 2.);
791 dev = 1 / 7. / h2 * (
792 2 * hh->GetBinContent(nx - 2)
793 - 1 * hh->GetBinContent(nx - 1)
794 - 2 * hh->GetBinContent(nx)
795 - 1 * hh->GetBinContent(nx + 1)
796 + 2 * hh->GetBinContent(nx + 2)
799 clone->SetBinContent(nx, dev);
804 cout <<
"cette methode n est pas prevue pour les TH2, TH3" << endl;
849 if (axis !=
"X" && axis !=
"Y") {
850 cout <<
"GetMomentEvolution(TH2*,TString ,TString ,TString) Mauvaise syntaxe pour TString axis (X ou Y) " << endl;
854 cmx.InitWithPrototype(TClass::GetClass(
"TH1D"), Form(
"%s", momentx.Data()),
"int");
855 if (!cmx.IsValid()) {
856 cout <<
"GetMomentEvolution(TH2*,TString ,TString ,TString) TString momentx n'est pas une methode valide " << momentx.Data() << endl;
859 unique_ptr<TMethodCall> Ecmx(
new TMethodCall());
860 Ecmx->InitWithPrototype(TClass::GetClass(
"TH1D"), Form(
"%sError", momentx.Data()),
"int");
862 unique_ptr<TMethodCall> cmy, Ecmy;
864 cmy.reset(
new TMethodCall());
865 cmy->InitWithPrototype(TClass::GetClass(
"TH1D"), Form(
"%s", momenty.Data()),
"int");
866 if (!cmy->IsValid()) {
867 cout <<
"GetMomentEvolution(TH2*,TString ,TString ,TString) TString momenty n'est pas une methode valide " << momenty.Data() << endl;
870 Ecmy.reset(
new TMethodCall());
871 Ecmy->InitWithPrototype(TClass::GetClass(
"TH1D"), Form(
"%sError", momenty.Data()),
"int");
875 fmt_histo.Form(
"GetMomentEvolution_%s", hh->GetName());
878 if (axis ==
"Y") nmax = hh->GetNbinsX();
879 else nmax = hh->GetNbinsY();
882 for (Int_t nn = 1; nn <= nmax; nn += 1) {
884 if (axis ==
"Y") stat = ((TH1D*)hh->ProjectionY(fmt_histo.Data(), nn, nn))->Integral();
885 else stat = ((TH1D*)hh->ProjectionX(fmt_histo.Data(), nn, nn))->Integral();
886 if (stat > stat_min) {
890 gDirectory->Delete(fmt_histo.Data());
893 TGraphErrors* gr =
new TGraphErrors(npts);
896 Double_t valx, valy, Evaly = 0, Evalx = 0;
898 while (!lbins.
End()) {
899 Int_t bin = lbins.
Next();
900 if (axis ==
"Y") hp = (TH1D*)hh->ProjectionY(fmt_histo.Data(), bin, bin);
901 else hp = (TH1D*)hh->ProjectionX(fmt_histo.Data(), bin, bin);
902 cmx.Execute(hp,
"1", valx);
903 if (Ecmx->IsValid()) Ecmx->Execute(hp,
"1", Evalx);
905 cmy->Execute(hp,
"1", valy);
906 if (Ecmy->IsValid()) Ecmy->Execute(hp,
"1", Evaly);
907 gr->SetPoint(npts, valx, valy);
908 if (Evalx != 0 && Evaly != 0) gr->SetPointError(npts, Evalx, Evaly);
913 valy = hh->GetXaxis()->GetBinCenter(bin);
914 Evaly = hh->GetXaxis()->GetBinWidth(bin) / 2.;
917 valy = hh->GetYaxis()->GetBinCenter(bin);
918 Evaly = hh->GetYaxis()->GetBinWidth(bin) / 2.;
920 gr->SetPoint(npts, valy, valx);
921 if (Evalx != 0) gr->SetPointError(npts, Evaly, Evalx);
924 gDirectory->Delete(fmt_histo.Data());
929 cout <<
"GetMomentEvolution(TH2*,TString ,TString ,TString) Aucun point dans le TGraph" << endl;
954 Double_t* yy = gry->GetY();
955 Double_t* xx = grx->GetY();
959 if (grx->GetN() != gry->GetN()) {
960 printf(
"ERREUR : KVHistoManipulator::LinkGraphs : les deux graphs n ont pas le meme nbre de points\n");
963 Int_t npoints = grx->GetN();
966 if (grx->InheritsFrom(
"TGraphErrors") || gry->InheritsFrom(
"TGraphErrors")) {
967 if (grx->InheritsFrom(
"TGraphErrors")) ex = grx->GetEY();
968 if (gry->InheritsFrom(
"TGraphErrors")) ey = gry->GetEY();
969 corre =
new TGraphErrors(npoints, xx, yy, ex, ey);
971 else corre =
new TGraph(npoints, xx, yy);
974 name.Form(
"corre_%s_VS_%s", gry->GetName(), grx->GetName());
975 corre->SetNameTitle(name.Data(), grx->GetTitle());
997 Double_t sumx = 0, sumx2 = 0;
998 Double_t sumy = 0, sumy2 = 0;
1001 for (Int_t nx = 1; nx <= hh->GetNbinsX(); nx += 1) {
1002 for (Int_t ny = 1; ny <= hh->GetNbinsY(); ny += 1) {
1003 compt += hh->GetBinContent(nx, ny);
1004 sumxy += hh->GetBinContent(nx, ny) * hh->GetXaxis()->GetBinCenter(nx) * hh->GetYaxis()->GetBinCenter(ny);
1005 sumx += hh->GetBinContent(nx, ny) * hh->GetXaxis()->GetBinCenter(nx);
1006 sumy += hh->GetBinContent(nx, ny) * hh->GetYaxis()->GetBinCenter(ny);
1007 sumx2 += hh->GetBinContent(nx, ny) * pow(hh->GetXaxis()->GetBinCenter(nx), 2.);
1008 sumy2 += hh->GetBinContent(nx, ny) * pow(hh->GetYaxis()->GetBinCenter(ny), 2.);
1012 Double_t meanxy = sumxy / compt;
1013 Double_t meanx = sumx / compt;
1014 Double_t meany = sumy / compt;
1015 Double_t meanx2 = sumx2 / compt;
1016 Double_t sigmax = sqrt(meanx2 - pow(meanx, 2.));
1017 Double_t meany2 = sumy2 / compt;
1018 Double_t sigmay = sqrt(meany2 - pow(meany, 2.));
1020 Double_t rho = (meanxy - meanx * meany) / (sigmax * sigmay);
1042 cout <<
"pointeur histogramme nul" << endl;
1047 if (hh->InheritsFrom(
"TH2")) {
1049 cout <<
"TH2" << endl;
1051 for (Int_t nx = 1; nx <= hh->GetNbinsX(); nx += 1) {
1053 for (Int_t ny = 1; ny <= hh->GetNbinsY(); ny += 1)
1054 integ += hh->GetBinContent(nx, ny);
1056 if (integ > MinIntegral) {
1057 proj_name.Form(
"%s_bX_%d", hh->GetName(), nx);
1058 h1d = hh->ProjectionY(proj_name.Data(), nx, nx);
1059 h1d->SetTitle(Form(
"%lf", hh->GetXaxis()->GetBinCenter(nx)));
1065 else if (axis ==
"Y") {
1066 for (Int_t ny = 1; ny <= hh->GetNbinsY(); ny += 1) {
1068 for (Int_t nx = 1; nx <= hh->GetNbinsX(); nx += 1)
1069 integ += hh->GetBinContent(nx, ny);
1071 if (integ > MinIntegral) {
1072 proj_name.Form(
"%s_bY_%d", hh->GetName(), ny);
1073 h1d = hh->ProjectionX(proj_name.Data(), ny, ny);
1074 h1d->SetTitle(Form(
"%lf", hh->GetYaxis()->GetBinCenter(ny)));
1080 cout <<
"l option TString axis doit etre X ou Y" << endl;
1086 cout <<
"cette methode n est prevue que pour les TH2 and sons" << endl;
1115 cout <<
"pointeur histogramme nul" << endl;
1120 Double_t integral = 0;
1121 for (Int_t nx = 1; nx <= hh->GetXaxis()->GetNbins(); nx += 1) {
1122 integral += hh->GetBinContent(nx);
1127 Double_t tranche = 0;
1128 printf(
"integral du spectre %lf -> tranche de %lf\n", integral, integral / ntranches);
1131 for (Int_t nx = hh->GetXaxis()->GetNbins(); nx >= 1; nx -= 1) {
1132 tranche += hh->GetBinContent(nx);
1134 if (tranche >= integral / ntranches) {
1179 cout <<
"pointeur histogramme nul" << endl;
1182 if (!hh->InheritsFrom(
"TH2")) {
1183 Error(
"PermuteAxis",
"methode definie uniquement pour les classes TH2 et filles");
1185 Int_t nx = hh->GetNbinsX();
1186 Int_t ny = hh->GetNbinsY();
1188 TH2F* gg =
new TH2F(
1189 Form(
"%s_perm", hh->GetName()),
1192 hh->GetYaxis()->GetBinLowEdge(1),
1193 hh->GetYaxis()->GetBinLowEdge(ny + 1),
1195 hh->GetXaxis()->GetBinLowEdge(1),
1196 hh->GetXaxis()->GetBinLowEdge(nx + 1)
1199 for (Int_t xx = 1; xx <= nx; xx += 1) {
1200 for (Int_t yy = 1; yy <= ny; yy += 1) {
1202 gg->SetBinContent(yy, xx, hh->GetBinContent(xx, yy));
1228 cout <<
"pointeur graph nul" << endl;
1231 if (!gr->InheritsFrom(
"TGraph")) {
1232 Error(
"PermuteAxis",
"methode definie uniquement pour les classes TGraph et filles");
1235 TGraphErrors* gr2 =
new TGraphErrors();
1236 for (Int_t nn = 0; nn < gr->GetN(); nn += 1) {
1238 gr->GetPoint(nn, px, py);
1239 gr2->SetPoint(nn, py, px);
1240 if (gr->InheritsFrom(
"TGraphErrors")) {
1241 gr2->SetPointError(nn, ((TGraphErrors*)gr)->GetErrorY(nn), ((TGraphErrors*)gr)->GetErrorX(nn));
1267 cout <<
"pointeur histogramme nul" << endl;
1270 if (!pf->InheritsFrom(
"TProfile")) {
1274 Int_t nx = pf->GetNbinsX();
1276 TGraphErrors* gr =
new TGraphErrors();
1277 for (Int_t xx = 1; xx <= nx; xx += 1) {
1278 if (pf->GetBinEntries(xx) > 0) {
1279 gr->SetPoint(gr->GetN(), pf->GetBinCenter(xx), pf->GetBinContent(xx));
1281 gr->SetPointError(gr->GetN() - 1, pf->GetBinWidth(xx) / 2, pf->GetBinError(xx));
1315 Int_t nx = pf->GetNbinsX();
1317 TGraph* gr =
new TGraph;
1320 for (Int_t xx = 1; xx <= nx; xx += 1) {
1321 if (pf->GetBinEntries(xx) > 0) {
1322 gr->SetPoint(i, pf->GetBinCenter(xx), pf->GetBinContent(xx));
1323 sigma->SetPoint(i, pf->GetBinCenter(xx), pf->GetBinError(xx));
1375 DefinePattern(ob->GetXaxis(), titleX, labelX);
1376 DefinePattern(ob->GetYaxis(), titleY, labelY);
1389 DefinePattern(ob->GetXaxis(), titleX, labelX);
1390 DefinePattern(ob->GetYaxis(), titleY, labelY);
1403 DefinePattern(ob->GetXaxis(), titleX, labelX);
1404 DefinePattern(ob->GetYaxis(), titleY, labelY);
1418 TObjArray* tok = NULL;
1420 if (!title.IsNull()) {
1421 tok = title.Tokenize(
" ");
1422 if (tok->GetEntries() == 3) {
1423 ax->SetTitleFont(((TObjString*)tok->At(0))->GetString().Atoi());
1424 ax->SetTitleSize(((TObjString*)tok->At(1))->GetString().Atof());
1425 ax->SetTitleOffset(((TObjString*)tok->At(2))->GetString().Atof());
1429 if (!label.IsNull()) {
1430 tok = label.Tokenize(
" ");
1431 if (tok->GetEntries() == 3) {
1432 ax->SetLabelFont(((TObjString*)tok->At(0))->GetString().Atoi());
1433 ax->SetLabelSize(((TObjString*)tok->At(1))->GetString().Atof());
1434 ax->SetLabelOffset(((TObjString*)tok->At(2))->GetString().Atof());
1438 if (tok)
delete tok;
1453 TObjArray* tok = NULL;
1454 if (ob->IsA()->InheritsFrom(
"TAttLine")) {
1455 if (!line.IsNull()) {
1456 tok = line.Tokenize(
" ");
1457 if (tok->GetEntries() == 3) {
1458 ob->SetLineColor(((TObjString*)tok->At(0))->GetString().Atoi());
1459 ob->SetLineStyle(((TObjString*)tok->At(1))->GetString().Atoi());
1460 ob->SetLineWidth(((TObjString*)tok->At(2))->GetString().Atoi());
1464 if (tok)
delete tok;
1479 TObjArray* tok = NULL;
1480 if (ob->IsA()->InheritsFrom(
"TAttMarker")) {
1481 if (!marker.IsNull()) {
1482 tok = marker.Tokenize(
" ");
1483 if (tok->GetEntries() == 3) {
1484 ob->SetMarkerColor(((TObjString*)tok->At(0))->GetString().Atoi());
1485 ob->SetMarkerStyle(((TObjString*)tok->At(1))->GetString().Atoi());
1486 ob->SetMarkerSize(((TObjString*)tok->At(2))->GetString().Atof());
1490 if (tok)
delete tok;
1505 DefineLineStyle((TAttLine*)ob, line);
1506 DefineMarkerStyle((TAttMarker*)ob, marker);
1521 ob->GetXaxis()->SetTitle(xtit);
1522 ob->GetYaxis()->SetTitle(ytit);
1536 ob->GetXaxis()->SetTitle(xtit);
1537 ob->GetYaxis()->SetTitle(ytit);
1551 ob->GetXaxis()->SetTitle(xtit);
1552 ob->GetYaxis()->SetTitle(ytit);
1580 TSpline5* spline =
new TSpline5(ob);
1584 Xmax = ob->GetXaxis()->GetXmax();
1585 Xmin = ob->GetXaxis()->GetXmin();
1593 Double_t r = 0, fr, fs, s, ft, t;
1596 fs = spline->Eval(s) - val;
1597 ft = spline->Eval(t) - val;
1599 for (n = 1; n <= nmax; n++) {
1600 r = (fs * t - ft * s) / (fs - ft);
1601 if (fabs(t - s) < eps * fabs(t + s))
break;
1602 fr = spline->Eval(r) - val;
1607 if (side == -1) fs /= 2;
1610 else if (fs * fr > 0) {
1613 if (side == +1) ft /= 2;
1664 Int_t npoints,
const Char_t* direction, Double_t xmin, Double_t xmax, Double_t qmin, Double_t qmax, Double_t eps)
1705 npoints = TMath::Max(npoints, degree + 2);
1706 TString func_name = Form(
"pol%d", degree);
1707 TF1* fonc =
new TF1(
"f", func_name.Data());
1708 fonc->SetName(Form(
"RescaleX-%s", func_name.Data()));
1709 RescaleX(hist1, hist2, fonc, npoints, direction, xmin, xmax, qmin, qmax, eps);
1710 for (i = 0; i < degree + 1; i++) {
1711 params[i] = fonc->GetParameter(i);
1713 Double_t chisquare = fonc->GetChisquare();
1714 if (fonc->GetNDF() > 0.0) chisquare /= fonc->GetNDF();
1715 params[degree + 1] = chisquare;
1790 Option_t* opt, Int_t npoints,
const Char_t* direction, Double_t xmin, Double_t xmax, Double_t qmin, Double_t qmax,
1860 TF1* scalefunc = RescaleX(hist1, hist2, degree, params, npoints, direction, xmin, xmax, qmin, qmax, eps);
1861 TString options(opt);
1863 Bool_t norm = options.Contains(
"NORM");
1864 Bool_t bins = options.Contains(
"BINS");
1865 Int_t nx = (bins ? hist2->GetNbinsX() : -1);
1866 Double_t nxmin = (bins ? hist2->GetXaxis()->GetXmin() : -1);
1867 Double_t nxmax = (bins ? hist2->GetXaxis()->GetXmax() : -1);
1868 TH1* scalehisto = ScaleHisto(hist1, scalefunc, 0, nx, -1, nxmin, nxmax, -1.0, -1.0,
"width");
1869 if (norm) scalehisto->Scale(hist2->Integral(
"width") / scalehisto->Integral(
"width"));
1872 scalehisto->DrawCopy()->SetLineColor(kRed);
1873 hist2->DrawCopy(
"same")->SetLineColor(kBlack);
1874 gPad->SetLogy(kTRUE);
1911 const Char_t* direction, Double_t xmin, Double_t xmax, Double_t qmin, Double_t qmax, Double_t eps)
1938 if (!fVDCanvas) fVDCanvas =
new TCanvas(
"VDCanvas",
"KVHistoManipulator::RescaleX");
1939 gStyle->SetOptStat(
"");
1941 fVDCanvas->Divide(2, 2);
1943 hist1->DrawCopy()->SetLineColor(kBlue);
1944 hist2->DrawCopy(
"same")->SetLineColor(kBlack);
1945 gPad->SetLogy(kTRUE);
1950 npoints = TMath::Max(2, npoints);
1951 Info(
"RescaleX",
"Calculating transformation of histo %s using reference histo %s, %d points of comparison",
1952 hist1->GetName(), hist2->GetName(), npoints);
1955 if (xmin > -1 && xmax > -1) {
1956 cum1 = CumulatedHisto(hist1, xmin, xmax, direction,
"max");
1957 cum2 = CumulatedHisto(hist2, xmin, xmax, direction,
"max");
1960 cum1 = CumulatedHisto(hist1, direction, -1, -1,
"max");
1961 cum2 = CumulatedHisto(hist2, direction, -1, -1,
"max");
1965 cum1->DrawCopy()->SetLineColor(kBlue);
1966 cum2->DrawCopy(
"same")->SetLineColor(kBlack);
1971 Double_t* quantiles =
new Double_t[npoints];
1972 Double_t delta_q = (qmax - qmin) / (1.0 * (npoints - 1));
1973 for (i = 0; i < npoints; i++) quantiles[i] = qmin + i * delta_q;
1975 Double_t* X1 =
new Double_t[npoints];
1976 Double_t* X2 =
new Double_t[npoints];
1977 for (i = 0; i < npoints; i++) {
1978 X1[i] = GetX(cum1, quantiles[i], eps);
1979 X2[i] = GetX(cum2, quantiles[i], eps);
1981 for (i = 0; i < npoints; i++) {
1982 printf(
"COMPARISON: i=%d quantile=%f X1=%f X2=%f\n",
1983 i, quantiles[i], X1[i], X2[i]);
1986 TGraph* fitgraph =
new TGraph(npoints, X1, X2);
1987 TString fitoptions =
"0N";
1988 if (kVisDebug) fitoptions =
"";
1989 if (fitgraph->Fit(scale_func, fitoptions.Data()) != 0) {
1990 Error(
"RescaleX",
"Fitting with function %s failed to converge",
1991 scale_func->GetName());
1995 fitgraph->SetMarkerStyle(20);
1996 gStyle->SetOptStat(1011);
1997 fitgraph->DrawClone(
"ap");
2004 delete [] quantiles;
2037 Option_t* opt,
const Char_t* direction, Double_t xmin, Double_t xmax, Double_t qmin, Double_t qmax, Double_t eps)
2062 RescaleX(hist1, hist2, scale_func, npoints, direction, xmin, xmax, qmin, qmax, eps);
2063 TString options(opt);
2065 Bool_t norm = options.Contains(
"NORM");
2066 Bool_t bins = options.Contains(
"BINS");
2067 Int_t nx = (bins ? hist2->GetNbinsX() : -1);
2068 Double_t nxmin = (bins ? hist2->GetXaxis()->GetXmin() : -1);
2069 Double_t nxmax = (bins ? hist2->GetXaxis()->GetXmax() : -1);
2070 TH1* scalehisto = ScaleHisto(hist1, scale_func, 0, nx, -1, nxmin, nxmax, -1.0, -1.0,
"width");
2071 if (norm) scalehisto->Scale(hist2->Integral(
"width") / scalehisto->Integral(
"width"));
2074 scalehisto->DrawCopy()->SetLineColor(kRed);
2075 hist2->DrawCopy(
"same")->SetLineColor(kBlack);
2076 gPad->SetLogy(kTRUE);
2093 Int_t bmin = hh->FindBin(xmin);
2094 Int_t bmax = hh->FindBin(xmax);
2095 if (bmax > hh->GetNbinsX()) bmax = hh->GetNbinsX();
2096 return CumulatedHisto(hh, direction, bmin, bmax, norm);
2120 if (h1->InheritsFrom(
"TH2")) {
2122 for (Int_t nx = 1; nx < h1->GetNbinsX(); nx += 1)
2123 for (Int_t ny = 1; ny <= h1->GetNbinsY(); ny += 1) {
2124 Double_t hval = h1->GetBinContent(nx, ny);
2127 Double_t herr = h1->GetBinError(nx, ny);
2130 xx[0] = h1->GetXaxis()->GetBinCenter(nx);
2131 xx[1] = h1->GetYaxis()->GetBinCenter(ny);
2132 Double_t fval = f1->EvalPar(xx, para);
2133 chi2 += TMath::Power((hval - fval) / herr, 2.);
2138 xx[0] = h1->GetXaxis()->GetBinCenter(nx);
2139 xx[1] = h1->GetYaxis()->GetBinCenter(ny);
2140 Double_t fval = f1->EvalPar(xx, para);
2141 chi2 += TMath::Power((hval - fval), 2.);
2148 for (Int_t nx = 1; nx < h1->GetNbinsX(); nx += 1) {
2149 Double_t hval = h1->GetBinContent(nx);
2152 Double_t herr = h1->GetBinError(nx);
2155 xx[0] = h1->GetXaxis()->GetBinCenter(nx);
2156 Double_t fval = f1->EvalPar(xx, para);
2157 chi2 += TMath::Power((hval - fval) / herr, 2.);
2162 xx[0] = h1->GetXaxis()->GetBinCenter(nx);
2163 Double_t fval = f1->EvalPar(xx, para);
2164 chi2 += TMath::Power((hval - fval), 2.);
2171 printf(
"Warning, KVHistoManipulator::GetChisquare :\n\taucune cellule price en compte dans le calcul du Chi2 ...\n");
2174 return (norm ? chi2 / nbre : chi2);
2199 if (h1->InheritsFrom(
"TH2")) {
2201 for (Int_t nx = 1; nx < h1->GetNbinsX(); nx += 1)
2202 for (Int_t ny = 1; ny <= h1->GetNbinsY(); ny += 1) {
2203 Double_t hval = h1->GetBinContent(nx, ny);
2206 xx[0] = h1->GetXaxis()->GetBinCenter(nx);
2207 xx[1] = h1->GetYaxis()->GetBinCenter(ny);
2208 Double_t fval = f1->EvalPar(xx, para);
2209 Double_t logfval = TMath::Log(fval);
2210 chi2 += fval - 1 * hval * logfval;
2216 for (Int_t nx = 1; nx < h1->GetNbinsX(); nx += 1) {
2217 Double_t hval = h1->GetBinContent(nx);
2220 xx[0] = h1->GetXaxis()->GetBinCenter(nx);
2221 Double_t fval = f1->EvalPar(xx, para);
2222 Double_t logfval = TMath::Log(fval);
2223 chi2 += fval - 1 * hval * logfval;
2229 printf(
"Warning, KVHistoManipulator::GetChisquare :\n\taucune cellule price en compte dans le calcul du Chi2 ...\n");
2232 return (norm ? chi2 / nbre : chi2);
2253 Int_t npoints = G1->GetN();
2254 if (G2->GetN() != npoints) {
2255 Error(
"DivideGraphs",
"Graphs must have same number of points");
2259 AUTO_NEW_CTOR(TGraph, Gdiv)(*G1);
2260 Gdiv->SetName(Form(
"%s_divided_by_%s", G1->GetName(), G2->GetName()));
2261 Gdiv->SetTitle(Form(
"%s divided by %s", G1->GetTitle(), G2->GetTitle()));
2262 Double_t* X = G1->GetX();
2263 Double_t* Y1 = G1->GetY();
2264 Double_t* Y2 = G2->GetY();
2265 for (
int i = 0; i < npoints; i++) {
2266 if (Y2[i] != 0) Gdiv->SetPoint(i, X[i], Y1[i] / Y2[i]);
2267 else Gdiv->SetPoint(i, X[i], 0.);
2278 Int_t npoints = g0->GetN();
2279 if (g1->GetN() != npoints) {
2280 Error(
"ComputeNewGraphFrom",
"Graphs must have same number of points %d != %d", npoints, g1->GetN());
2284 TF1 f1(
"func_ComputeNewGraphFrom", formula, 0, 1);
2285 if (f1.IsZombie() || f1.GetNpar() != 2) {
2286 Error(
"ComputeNewGraphFrom",
"formula %s for the operation is not valid or has not 2 parameters", formula.Data());
2290 auto gfinal =
new TGraph;
2291 gfinal->SetName(Form(
"from_%s_%s", g0->GetName(), g1->GetName()));
2292 Double_t* x0 = g0->GetX();
2293 Double_t* y0 = g0->GetY();
2295 Double_t* x1 = g1->GetX();
2296 Double_t* y1 = g1->GetY();
2298 for (Int_t ii = 0; ii < npoints; ii++) {
2299 f1.SetParameters(y0[ii], y1[ii]);
2300 if (x1[ii] != x0[ii])
2301 Warning(
"ComputeNewGraphFrom",
"X values are different for the same point %d : %lf %lf", ii, x0[ii], x1[ii]);
2302 Double_t result = f1.Eval(x0[ii]);
2303 gfinal->SetPoint(ii, x0[ii], result);
2336 Int_t ngr = lgr->GetEntries();
2337 TF1 f1(
"func_ComputeNewGraphFrom", formula, 0, 1);
2338 if (f1.IsZombie()) {
2339 Error(
"ComputeNewGraphFrom",
"wrong formula %s, check the expression", formula.Data());
2342 if (f1.GetNpar() != ngr) {
2343 Error(
"ComputeNewGraphFrom",
"number of parameters (%d) of formula %s is not the same as the number of graphics (%d) in the list", f1.GetNpar(), formula.Data(), ngr);
2347 auto gfinal =
new TGraph;
2348 gfinal->SetName(
"new_graph");
2351 Int_t npoints = ((TGraph*)lgr->At(0))->GetN();
2353 std::vector<Double_t> par(ngr);
2355 for (Int_t ii = 0; ii < npoints; ii++) {
2356 for (Int_t jj = 0; jj < ngr; jj += 1) {
2357 gr = (TGraph*)lgr->At(jj);
2358 gr->GetPoint(ii, xx, par[jj]);
2360 f1.SetParameters(par.data());
2362 Double_t result = f1.Eval(xx);
2363 gfinal->SetPoint(ii, xx, result);
2384 std::vector<Double_t> limits(4);
2386 for (Int_t ii = 0; ii < G1->GetN(); ii += 1) {
2387 G1->GetPoint(ii, xx, yy);
2389 limits[0] = limits[2] = xx;
2390 limits[1] = limits[3] = yy;
2393 if (xx < limits[0]) limits[0] = xx;
2394 if (yy < limits[1]) limits[1] = yy;
2395 if (xx > limits[2]) limits[2] = xx;
2396 if (yy > limits[3]) limits[3] = yy;
2419 std::vector<Double_t> limits(4);
2422 for (Int_t ii = 0; ii < G1->GetN(); ii += 1) {
2423 G1->GetPoint(ii, xx, yy);
2424 ex = G1->GetErrorX(ii);
2425 ey = G1->GetErrorY(ii);
2428 limits[0] = limits[2] = xx;
2429 limits[1] = limits[3] = yy;
2432 if (xx - ex < limits[0]) limits[0] = xx - ex;
2433 if (yy - ey < limits[1]) limits[1] = yy - ey;
2434 if (xx + ex > limits[2]) limits[2] = xx + ex;
2435 if (yy + ey > limits[3]) limits[3] = yy + ey;
2460 std::vector<Double_t> limits, temp;
2462 TList* lg = mgr->GetListOfGraphs();
2463 TGraph* gr =
nullptr;
2464 for (Int_t ii = 0; ii < lg->GetEntries(); ii += 1) {
2465 gr =
dynamic_cast<TGraph*
>(lg->At(ii));
2467 limits = GetLimits(gr);
2470 temp = GetLimits(gr);
2471 if (temp[0] < limits[0]) limits[0] = temp[0];
2472 if (temp[1] < limits[1]) limits[1] = temp[1];
2473 if (temp[2] > limits[2]) limits[2] = temp[2];
2474 if (temp[3] > limits[3]) limits[3] = temp[3];
2498 std::vector<Double_t> limits(4);
2500 Bool_t first = kTRUE;
2501 for (Int_t ii = 1; ii <= G1->GetNbinsX(); ii += 1) {
2502 Double_t stat = G1->GetBinEntries(ii);
2504 xx = G1->GetBinCenter(ii);
2505 yy = G1->GetBinContent(ii);
2508 limits[0] = limits[2] = xx;
2509 limits[1] = limits[3] = yy;
2512 if (xx < limits[0]) limits[0] = xx;
2513 if (yy < limits[1]) limits[1] = yy;
2514 if (xx > limits[2]) limits[2] = xx;
2515 if (yy > limits[3]) limits[3] = yy;
2541 std::vector<Double_t> temp, limits;
2543 TProfile* gr =
nullptr;
2544 for (Int_t ii = 0; ii < mgr->GetEntries(); ii += 1) {
2545 gr =
dynamic_cast<TProfile*
>(mgr->At(ii));
2547 limits = GetLimits(gr);
2550 temp = GetLimits(gr);
2551 if (temp[0] < limits[0]) limits[0] = temp[0];
2552 if (temp[1] < limits[1]) limits[1] = temp[1];
2553 if (temp[2] > limits[2]) limits[2] = temp[2];
2554 if (temp[3] > limits[3]) limits[3] = temp[3];
2575 TObject* obj =
nullptr;
2576 TVirtualPad* tmp = gPad;
2577 TIter nextp(gPad->GetListOfPrimitives());
2579 while ((obj = nextp())) {
2580 if (obj->InheritsFrom(
"TH1")) {
2581 h1 =
dynamic_cast<TH1*
>(obj);
2585 Int_t x1 = h1->GetXaxis()->GetFirst();
2586 Int_t x2 = h1->GetXaxis()->GetLast();
2590 if (h1->GetDimension() == 1) {
2591 y1 = h1->GetMinimum();
2592 y2 = h1->GetMaximum();
2595 y1 = h1->GetYaxis()->GetFirst();
2596 y2 = h1->GetYaxis()->GetLast();
2599 if (h1->GetDimension() == 2) {
2600 z1 = h1->GetMinimum();
2601 z2 = h1->GetMaximum();
2604 z1 = h1->GetZaxis()->GetFirst();
2605 z2 = h1->GetZaxis()->GetLast();
2608 std::cout << x1 <<
" " << x2 <<
" - " << y1 <<
" " << y2 <<
" - " << z1 <<
" " << z2 << std::endl;
2611 TCanvas* cc = gPad->GetCanvas();
2612 TVirtualPad* pad =
nullptr;
2613 while ((pad = cc->GetPad(nc))) {
2617 gPad->SetLogx(tmp->GetLogx());
2618 gPad->SetLogy(tmp->GetLogy());
2619 gPad->SetLogz(tmp->GetLogz());
2621 TIter nextq(gPad->GetListOfPrimitives());
2623 while ((obj = nextq())) {
2624 if (obj->InheritsFrom(
"TH1")) {
2625 h1 =
dynamic_cast<TH1*
>(obj);
2627 h1->GetXaxis()->SetRange(x1, x2);
2628 if (h1->GetDimension() == 1) {
2633 h1->GetYaxis()->SetRange(y1, y2);
2635 if (h1->GetDimension() == 2) {
2640 h1->GetZaxis()->SetRange(y1, y2);
Toolkit for various operations on histograms & graphs not provided by ROOT.
TF1 * RescaleX(TH1 *hist1, TH1 *hist2, Int_t degree, Double_t *params, Int_t npoints=-1, const Char_t *direction="C", Double_t xmin=-1, Double_t xmax=-1, Double_t qmin=0.05, Double_t qmax=0.95, Double_t eps=1.e-07)
KVHistoManipulator()
Default constructor.
void DefineMarkerStyle(TAttMarker *ob, TString marker)
TH1 * MakeHistoRescaleX(TH1 *hist1, TH1 *hist2, Int_t degree, Double_t *params, Option_t *opt="", Int_t npoints=-1, const Char_t *direction="C", Double_t xmin=-1, Double_t xmax=-1, Double_t qmin=0.05, Double_t qmax=0.95, Double_t eps=1.e-07)
TH2 * CentreeReduiteX(TH2 *hh, Int_t nx=-1, Double_t xmin=-1., Double_t xmax=-1.)
std::vector< Double_t > GetLimits(TGraph *G1)
TGraph * ComputeNewGraphFrom(TGraph *g0, TGraph *g1, const TString &formula)
TH2 * CentreeReduiteY(TH2 *hh, Int_t ny=-1, Double_t ymin=-1., Double_t ymax=-1.)
TH2 * PermuteAxis(TH2 *hh)
void DefineStyle(TObject *ob, TString line, TString marker)
Double_t GetX(TH1 *ob, Double_t val, Double_t eps=1.e-07, Int_t nmax=50, Double_t xmin=-1.0, Double_t xmax=-1.0)
Double_t GetChisquare(TH1 *h1, TF1 *f1, Bool_t norm=kTRUE, Bool_t err=kTRUE, Double_t *para=nullptr)
KVNumberList * Saucisson(TH1 *hh, Int_t ntranches=10)
TGraph * ScaleGraph(const TGraph *hh, TF1 *fx=nullptr, TF1 *fy=nullptr) const
TGraph * LinkGraphs(TGraph *grx, TGraph *gry)
void DefinePattern(TH1 *ob, TString titleX="42 0.08 0.8", TString titleY="42 0.07 1.2", TString labelX="42 0.05 0.005", TString labelY="42 0.05 0.006")
virtual ~KVHistoManipulator(void)
TH2 * RenormaliseHisto(TH2 *hh, Int_t bmin=-1, Int_t bmax=-1, TString axis="X", Double_t valref=1)
Int_t CutStatBin(TH1 *hh, Int_t stat_min=-1, Int_t stat_max=-1)
TGraphErrors * GetMomentEvolution(TH2 *hh, TString momentx, TString momenty, TString axis="Y", Double_t stat_min=0)
void DefineTitle(TH1 *ob, TString xtit, TString ytit)
TGraph * ExtractMeanAndSigmaFromProfile(TProfile *pf, TGraph *&sigma)
void ApplyCurrentLimitsToAllCanvas(Bool_t AlsoLog=kFALSE)
TH1 * CentreeReduite(TH1 *hh, Int_t nx=-1, Int_t ny=-1, Double_t xmin=-1., Double_t xmax=-1., Double_t ymin=-1., Double_t ymax=-1.)
TH1 * ScaleHisto(TH1 *hh, TF1 *fx, TF1 *fy=NULL, Int_t nx=-1, Int_t ny=-1, Double_t xmin=-1., Double_t xmax=-1., Double_t ymin=-1., Double_t ymax=-1., Option_t *norm="")
TGraph * DivideGraphs(TGraph *G1, TGraph *G2)
Double_t GetLikelihood(TH1 *h1, TF1 *f1, Bool_t norm=kTRUE, Double_t *para=nullptr)
KVList * Give_ProjectionList(TH2 *hh, Double_t MinIntegral=-1, TString axis="X")
TGraphErrors * MakeGraphFrom(TProfile *pf, Bool_t Error=kTRUE)
TH1 * CumulatedHisto(TH1 *hh, TString direction="C", Int_t bmin=-1, Int_t bmax=-1, Option_t *norm="surf")
TH1 * GetDerivative(TH1 *hh, Int_t order)
void DefineLineStyle(TAttLine *ob, TString line)
Double_t GetCorrelationFactor(TH2 *hh)
Int_t Apply_TCutG(TH2 *hh, TCutG *cut, TString mode="in")
Extended TList class which owns its objects by default.
Strings used to represent a set of ranges of values.
void Add(Int_t)
Add value 'n' to the list.
virtual void Add(TObject *obj)