ATLAS Offline Software
Loading...
Searching...
No Matches
OnlineErrorCode.h File Reference
#include <ostream>
#include <cstdint>
Include dependency graph for OnlineErrorCode.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  HLT
 It used to be useful piece of code for replacing actual SG with other store of similar functionality In fact it used to be more like interface adapter for ARA objects access, nevertheless since the ARA project is gone it is only an unnecessary extra layer.

Macros

#define OnlineErrorCodeSwitchCase(ENUM_NAME)

Enumerations

enum class  HLT::OnlineErrorCode : uint32_t {
  HLT::UNCLASSIFIED = 0 , HLT::BEFORE_NEXT_EVENT = 1 , HLT::CANNOT_RETRIEVE_EVENT = 2 , HLT::NO_EVENT_INFO = 3 ,
  HLT::SCHEDULING_FAILURE = 4 , HLT::CANNOT_ACCESS_SLOT = 5 , HLT::PROCESSING_FAILURE = 6 , HLT::NO_HLT_RESULT = 7 ,
  HLT::OUTPUT_BUILD_FAILURE = 8 , HLT::OUTPUT_SEND_FAILURE = 9 , HLT::AFTER_RESULT_SENT = 10 , HLT::COOL_UPDATE = 11 ,
  HLT::TIMEOUT = 12 , HLT::RESULT_TRUNCATION = 13 , HLT::MISSING_CTP_FRAGMENT = 14 , HLT::BAD_CTP_FRAGMENT = 15 ,
  HLT::SCHEDULER_POP_FAILURE = 16
}

Functions

constexpr std::string_view HLT::OnlineErrorCodeToString (const OnlineErrorCode code)
std::ostream & HLT::operator<< (std::ostream &os, const HLT::OnlineErrorCode code)
constexpr bool HLT::isEventProcessingErrorCode (const OnlineErrorCode code)

Macro Definition Documentation

◆ OnlineErrorCodeSwitchCase

#define OnlineErrorCodeSwitchCase ( ENUM_NAME)
Value:
case OnlineErrorCode::ENUM_NAME: return "OnlineErrorCode::"#ENUM_NAME; break;

Definition at line 36 of file OnlineErrorCode.h.

36 #define OnlineErrorCodeSwitchCase(ENUM_NAME) \
37 case OnlineErrorCode::ENUM_NAME: return "OnlineErrorCode::"#ENUM_NAME; break;