260 |
/*! @brief The ROOT histogram. */ |
/*! @brief The ROOT histogram. */ |
261 |
TH2 *_rootHisto; |
TH2 *_rootHisto; |
262 |
|
|
263 |
|
/*! @brief Base name of the output file. */ |
264 |
TString _outFileBase; |
TString _outFileBase; |
265 |
|
/*! @brief Output file open mode (UPDATE or RECREATE, see documentation of TFile). */ |
266 |
TString _mode; |
TString _mode; |
267 |
TString _title, _xLabel, _yLabel; |
/*! @brief Title for the ROOT histogram. */ |
268 |
|
TString _title; |
269 |
|
/*! @brief X axis label for the ROOT histogram. */ |
270 |
|
TString _xLabel; |
271 |
|
/*! @brief Y axis label for the ROOT histogram. */ |
272 |
|
TString _yLabel; |
273 |
|
|
274 |
private: |
private: |
275 |
|
|