107 |
return _nGood; |
return _nGood; |
108 |
} |
} |
109 |
|
|
110 |
|
/*! @brief Returns the index of currently processed event. |
111 |
|
* |
112 |
|
* This method returns the index of the currently processed event inside a #Process() |
113 |
|
* invocation. It has no meaning when read outside #Process(). |
114 |
|
* |
115 |
|
* @return The index of the currently processed event. |
116 |
|
*/ |
117 |
|
ULong_t GetCurrentEvent(){ |
118 |
|
return _currEv; |
119 |
|
} |
120 |
|
|
121 |
/*! @brief The pre-analysis task definition. |
/*! @brief The pre-analysis task definition. |
122 |
* |
* |
123 |
* This method is automatically called by Process() before the event selection; |
* This method is automatically called by Process() before the event selection; |
165 |
private: |
private: |
166 |
|
|
167 |
const char *_cutName; |
const char *_cutName; |
168 |
|
ULong_t _currEv; |
169 |
|
|
170 |
protected: |
protected: |
171 |
|
|