--- PamCut/MiscCuts/OBTPktNumCut/OBTPktNumCut.h 2010/06/29 07:47:17 1.1.2.1 +++ PamCut/MiscCuts/OBTPktNumCut/OBTPktNumCut.h 2011/11/30 17:02:41 1.1.2.2 @@ -25,8 +25,11 @@ * * @param cutName The cut's name. * @param list A list of (OBT, PktNum) pairs. + * @param verbose If true, a message will be print to std output when an event is found. This can be useful + * when searching for rare events in many files, to identify which file contains the event + * by parsing std output. See #OBTPktNumCut.cpp for the current implementation of this message. */ - OBTPktNumCut(const char *cutName, vector > &list); + OBTPktNumCut(const char *cutName, vector > &list, bool verbose = false); /*! @brief Constructor. * @@ -58,5 +61,6 @@ private: vector > _list; + bool _verbose; }; #endif /* OBTPKTNUMCUT_H_ */