Class Reference for E1039 Core & Analysis Software
UtilHist.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <TH1D.h>
3 #include <TH2D.h>
4 #include "UtilHist.h"
5 using namespace std;
6 
7 void UtilHist::FindFilledRange(TH1* h1, int& bin_lo, int& bin_hi)
8 {
9  if (h1->Integral() == 0) return;
10  int nn = h1->GetNbinsX();
11  bin_lo = 1;
12  while (h1->GetBinContent(bin_lo) == 0) bin_lo++;
13  bin_hi = nn;
14  while (h1->GetBinContent(bin_hi) == 0) bin_hi--;
15 }
16 
17 void UtilHist::AutoSetRange(TH1* h1, const int margin_lo, const int margin_hi)
18 {
19  int nn = h1->GetNbinsX();
20  int bin_lo, bin_hi;
21  FindFilledRange(h1, bin_lo, bin_hi);
22  bin_lo -= margin_lo;
23  bin_hi += margin_hi;
24  if (bin_lo < 1) bin_lo = 1;
25  if (bin_hi > nn) bin_hi = nn;
26  h1->GetXaxis()->SetRange(bin_lo, bin_hi);
27 }
28 
29 void UtilHist::AutoSetRangeX(TH2* h2, const int margin_lo, const int margin_hi)
30 {
31  TH1* h1 = h2->ProjectionX("h1_auto_set_range_x");
32  int nn = h1->GetNbinsX();
33  int bin_lo, bin_hi;
34  FindFilledRange(h1, bin_lo, bin_hi);
35  delete h1;
36  bin_lo -= margin_lo;
37  bin_hi += margin_hi;
38  if (bin_lo < 1) bin_lo = 1;
39  if (bin_hi > nn) bin_hi = nn;
40  h2->GetXaxis()->SetRange(bin_lo, bin_hi);
41 }
42 
43 void UtilHist::AutoSetRangeY(TH2* h2, const int margin_lo, const int margin_hi)
44 {
45  TH1* h1 = h2->ProjectionY("h1_auto_set_range_y");
46  int nn = h1->GetNbinsX();
47  int bin_lo, bin_hi;
48  FindFilledRange(h1, bin_lo, bin_hi);
49  delete h1;
50  bin_lo -= margin_lo;
51  bin_hi += margin_hi;
52  if (bin_lo < 1) bin_lo = 1;
53  if (bin_hi > nn) bin_hi = nn;
54  h2->GetYaxis()->SetRange(bin_lo, bin_hi);
55 }
void FindFilledRange(TH1 *h1, int &bin_lo, int &bin_hi)
Find the lowest and highest bins ("bin_lo" and "bin_hi") out of non-empty bins of "h1".
Definition: UtilHist.cc:7
void AutoSetRangeX(TH2 *h2, const int margin_lo=5, const int margin_hi=5)
Definition: UtilHist.cc:29
void AutoSetRange(TH1 *h1, const int margin_lo=5, const int margin_hi=5)
Adjust the axis range via "h1->GetXaxis()->SetRange(bin_lo, bin_hi)" to zoom up non-empty bins.
Definition: UtilHist.cc:17
void AutoSetRangeY(TH2 *h2, const int margin_lo=5, const int margin_hi=5)
Definition: UtilHist.cc:43