--- PamCut/TofCuts/TofDedxHeCut/TofDedxHeCut.h 2009/08/05 14:03:21 1.1 +++ PamCut/TofCuts/TofDedxHeCut/TofDedxHeCut.h 2009/08/14 10:30:49 1.2 @@ -28,9 +28,11 @@ /*! @brief Constructor. * * @param cutName The cut's name. + * @param standAlone If true, the cut will use the standalone measure of beta; otherwise it will use the + * physical track. */ - TofDedxHeCut(const char *cutName) : - PamCut(cutName) { + TofDedxHeCut(const char *cutName, bool standAlone = true) : + PamCut(cutName), _standAlone(standAlone) { } /*! @brief Destructor. */ ~TofDedxHeCut() { @@ -47,6 +49,7 @@ private: + bool _standAlone; }; #endif /* TOFDEDXHECUT_H_ */