25 |
* |
* |
26 |
* @param cutName The cut's name. |
* @param cutName The cut's name. |
27 |
* @param list A list of (OBT, PktNum) pairs. |
* @param list A list of (OBT, PktNum) pairs. |
28 |
|
* @param verbose If true, a message will be print to std output when an event is found. This can be useful |
29 |
|
* when searching for rare events in many files, to identify which file contains the event |
30 |
|
* by parsing std output. See #OBTPktNumCut.cpp for the current implementation of this message. |
31 |
*/ |
*/ |
32 |
OBTPktNumCut(const char *cutName, vector<pair<unsigned int, unsigned int> > &list); |
OBTPktNumCut(const char *cutName, vector<pair<unsigned int, unsigned int> > &list, bool verbose = false); |
33 |
|
|
34 |
/*! @brief Constructor. |
/*! @brief Constructor. |
35 |
* |
* |
61 |
private: |
private: |
62 |
|
|
63 |
vector<pair<unsigned int, unsigned int> > _list; |
vector<pair<unsigned int, unsigned int> > _list; |
64 |
|
bool _verbose; |
65 |
}; |
}; |
66 |
#endif /* OBTPKTNUMCUT_H_ */ |
#endif /* OBTPKTNUMCUT_H_ */ |