28 |
/*! @brief Constructor. |
/*! @brief Constructor. |
29 |
* |
* |
30 |
* @param cutName The cut's name. |
* @param cutName The cut's name. |
31 |
|
* @param standAlone If true, the cut will use the standalone measure of beta; otherwise it will use the |
32 |
|
* physical track. |
33 |
*/ |
*/ |
34 |
TofDedxHeCut(const char *cutName) : |
TofDedxHeCut(const char *cutName, bool standAlone = true) : |
35 |
PamCut(cutName) { |
PamCut(cutName), _standAlone(standAlone) { |
36 |
} |
} |
37 |
/*! @brief Destructor. */ |
/*! @brief Destructor. */ |
38 |
~TofDedxHeCut() { |
~TofDedxHeCut() { |
49 |
|
|
50 |
private: |
private: |
51 |
|
|
52 |
|
bool _standAlone; |
53 |
}; |
}; |
54 |
|
|
55 |
#endif /* TOFDEDXHECUT_H_ */ |
#endif /* TOFDEDXHECUT_H_ */ |