ATLAS Offline Software
AthStatusCode.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef ATHENAKERNEL_ATHSTATUSCODE
6 #define ATHENAKERNEL_ATHSTATUSCODE
7 
8 #include "GaudiKernel/StatusCode.h"
9 
10 namespace Athena {
11 
22 enum class Status : StatusCode::code_t {
23  TIMEOUT = 10,
24  MISSING_DATA = 11
25 };
26 
27 } // namespace Athena
28 
29 // Register the enum as StatusCode
30 // cppcheck-suppress unknownMacro
31 STATUSCODE_ENUM_DECL(Athena::Status)
32 
33 #endif
Athena::Status::MISSING_DATA
@ MISSING_DATA
Missing/corrupted input data.
Athena
Some weak symbol referencing magic...
Definition: AthLegacySequence.h:21
Athena::Status::TIMEOUT
@ TIMEOUT
Timeout during event processing.
Athena::Status
Status
Athena specific StatusCode values.
Definition: AthStatusCode.h:22