| 22 |
/*! @brief Constructor. |
/*! @brief Constructor. |
| 23 |
* |
* |
| 24 |
* @param actionName The action's name. |
* @param actionName The action's name. |
| 25 |
* @param outFileBase The output file name. |
* @param outFileName The output file name. |
| 26 |
|
* @param mode The mode of file creation (see documentation of TFile constructor |
| 27 |
|
* in ROOT's reference guide) |
| 28 |
*/ |
*/ |
| 29 |
EvRateS11VsCutoffHistoAction(const char *actionName, TString outFileName); |
EvRateS11VsCutoffHistoAction(const char *actionName, TString outFileName, TString mode = "UPDATE"); |
| 30 |
|
|
| 31 |
/*! @brief Destructor */ |
/*! @brief Destructor */ |
| 32 |
~EvRateS11VsCutoffHistoAction() { |
~EvRateS11VsCutoffHistoAction() { |
| 45 |
|
|
| 46 |
TString _outFileName; |
TString _outFileName; |
| 47 |
TH2F _histo; |
TH2F _histo; |
| 48 |
|
TString _mode; |
| 49 |
|
|
| 50 |
}; |
}; |
| 51 |
|
|