#include <TObjArray.h>
#include <TFolder.h>
#include <TCutG.h>
Go to the source code of this file.
|
| #define | H1_BOOK(n, t, b, min, max) (h1_book<TH1F>(n,t,b,min,max)) |
| |
| #define | H2_BOOK(n, t, xb, xmin, xmax, yb, ymin, ymax) (h2_book<TH2F>(n,t,xb,xmin,xmax,yb,ymin,ymax)) |
| |
|
| template<typename TH2X > |
| TH2X EXPRT * | h2_book (const char *name, const char *title, int xbins, double xmin, double xmax, int ybins, double ymin, double ymax) |
| |
| template<typename TH2X > |
| TH2X EXPRT * | h2_book (const char *name, const char *title, int xbins, double xmin, double xmax, int ybins, double yedges[]) |
| |
| template<typename TH2X > |
| TH2X EXPRT * | h2_book (const char *name, const char *title, int xbins, double xedges[], int ybins, double ymin, double ymax) |
| |
| template<typename TH2X > |
| TH2X EXPRT * | h2_book (const char *name, const char *title, int xbins, double xedges[], int ybins, double yedges[]) |
| |
| TCutG * | cut_book (const char *name) |
| |
◆ H1_BOOK
| #define H1_BOOK |
( |
|
n, |
|
|
|
t, |
|
|
|
b, |
|
|
|
min, |
|
|
|
max |
|
) |
| (h1_book<TH1F>(n,t,b,min,max)) |
◆ H2_BOOK
| #define H2_BOOK |
( |
|
n, |
|
|
|
t, |
|
|
|
xb, |
|
|
|
xmin, |
|
|
|
xmax, |
|
|
|
yb, |
|
|
|
ymin, |
|
|
|
ymax |
|
) |
| (h2_book<TH2F>(n,t,xb,xmin,xmax,yb,ymin,ymax)) |
◆ cut_book()
| TCutG * cut_book |
( |
const char * |
name | ) |
|
◆ h2_book() [1/4]
template<typename TH2X >
| TH2X EXPRT * h2_book |
( |
const char * |
name, |
|
|
const char * |
title, |
|
|
int |
xbins, |
|
|
double |
xedges[], |
|
|
int |
ybins, |
|
|
double |
yedges[] |
|
) |
| |
Definition at line 139 of file rmidas.h.
141{
142 TH2X *hist;
143
144
147 else
149
150 if (hist == NULL) {
151 hist =
new TH2X(
name, title, xbins, xedges, ybins, yedges);
154 else
156 }
157
158 return hist;
159}
TObjArray * gHistoFolderStack
TFolder * gManaHistosFolder
◆ h2_book() [2/4]
template<typename TH2X >
| TH2X EXPRT * h2_book |
( |
const char * |
name, |
|
|
const char * |
title, |
|
|
int |
xbins, |
|
|
double |
xedges[], |
|
|
int |
ybins, |
|
|
double |
ymin, |
|
|
double |
ymax |
|
) |
| |
Definition at line 116 of file rmidas.h.
118{
119 TH2X *hist;
120
121
124 else
126
127 if (hist == NULL) {
128 hist =
new TH2X(
name, title, xbins, xedges, ybins, ymin, ymax);
131 else
133 }
134
135 return hist;
136}
◆ h2_book() [3/4]
template<typename TH2X >
| TH2X EXPRT * h2_book |
( |
const char * |
name, |
|
|
const char * |
title, |
|
|
int |
xbins, |
|
|
double |
xmin, |
|
|
double |
xmax, |
|
|
int |
ybins, |
|
|
double |
yedges[] |
|
) |
| |
Definition at line 93 of file rmidas.h.
95{
96 TH2X *hist;
97
98
101 else
103
104 if (hist == NULL) {
105 hist =
new TH2X(
name, title, xbins, xmin, xmax, ybins, yedges);
108 else
110 }
111
112 return hist;
113}
◆ h2_book() [4/4]
template<typename TH2X >
| TH2X EXPRT * h2_book |
( |
const char * |
name, |
|
|
const char * |
title, |
|
|
int |
xbins, |
|
|
double |
xmin, |
|
|
double |
xmax, |
|
|
int |
ybins, |
|
|
double |
ymin, |
|
|
double |
ymax |
|
) |
| |
Definition at line 69 of file rmidas.h.
72{
73 TH2X *hist;
74
75
78 else
80
81 if (hist == NULL) {
82 hist =
new TH2X(
name, title, xbins, xmin, xmax, ybins, ymin, ymax);
85 else
87 }
88
89 return hist;
90}
◆ gHistoFolderStack
| TObjArray* gHistoFolderStack |
|
extern |
◆ gManaHistosFolder
| TFolder* gManaHistosFolder |
|
extern |