145 |
|
|
146 |
/*! Fills the ROOT and the vector histogram. |
/*! Fills the ROOT and the vector histogram. |
147 |
* |
* |
148 |
* @param value The value of the X coordinate associated to the event. |
* @param xValue The value of the X coordinate associated to the event. |
149 |
* @param value The value of the Y coordinate associated to the event. |
* @param yValue The value of the Y coordinate associated to the event. |
150 |
* @param weight The weight which will be applied to the event. |
* @param weight The weight which will be applied to the event. |
151 |
*/ |
*/ |
152 |
void Fill(double xValue, double yValue, double weight = 1.); |
void Fill(double xValue, double yValue, double weight = 1.); |
325 |
|
|
326 |
template<class HistoType> |
template<class HistoType> |
327 |
Histo2DAction<HistoType>::~Histo2DAction() { |
Histo2DAction<HistoType>::~Histo2DAction() { |
328 |
|
|
329 |
|
delete _rootHisto; |
330 |
|
_rootHisto = NULL; |
331 |
} |
} |
332 |
|
|
333 |
template<class HistoType> |
template<class HistoType> |