1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef DataFormats_Common_HLTenums_h
#define DataFormats_Common_HLTenums_h
/** \brief HLT enums
*
* Definition of common HLT enums
*
* \author Martin Grunewald
*
*/
namespace edm {
namespace hlt {
/// status of a trigger path
enum HLTState {
Ready = 0, ///< not [yet] run
Pass = 1, ///< accept
Fail = 2, ///< reject
Exception = 3 ///< error
};
} // namespace hlt
} // namespace edm
#endif // DataFormats_Common_HLTenums_h
|