--- PamCut/TofCuts/TofPatternCut/TofPatternCut.h 2009/05/27 13:30:09 1.1 +++ PamCut/TofCuts/TofPatternCut/TofPatternCut.h 2009/12/08 17:40:01 1.2 @@ -25,9 +25,15 @@ class TofPatternCut: public PamCut { public: - /*! @brief Constructor. */ - TofPatternCut(const char *cutName) : - PamCut(cutName), _standalone(false), _notrk(0) { + /*! @brief Constructor. + * + * @param cutName The cut's name. + * @param standalone If true, the standalone track will be used; otherwise, track + * from tracker will be used. + * @param notrk The number of the physical track to use. + */ + TofPatternCut(const char *cutName, bool standalone = false, int notrk = 0) : + PamCut(cutName), _standalone(standalone), _notrk(notrk) { } /*! @brief Destructor. */ ~TofPatternCut() {