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. |
|
* @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. |
|
28 |
*/ |
*/ |
29 |
OBTPktNumCut(const char *cutName, vector<pair<unsigned int, unsigned int> > &list, bool verbose = false); |
OBTPktNumCut(const char *cutName, vector<pair<unsigned int, unsigned int> > &list); |
30 |
|
|
31 |
/*! @brief Constructor. |
/*! @brief Constructor. |
32 |
* |
* |
58 |
private: |
private: |
59 |
|
|
60 |
vector<pair<unsigned int, unsigned int> > _list; |
vector<pair<unsigned int, unsigned int> > _list; |
|
bool _verbose; |
|
61 |
}; |
}; |
62 |
#endif /* OBTPKTNUMCUT_H_ */ |
#endif /* OBTPKTNUMCUT_H_ */ |