#include "TrigSteeringEvent/Enums.h"
#include <string>
#include <sstream>
#include <iostream>
Go to the source code of this file.
◆ getActionFromString()
Definition at line 17 of file Enums.cxx.
18 if (
str ==
"CONTINUE")
return Action::CONTINUE;
19 else if (
str ==
"ABORT_CHAIN")
return Action::ABORT_CHAIN;
20 else if (
str ==
"ABORT_EVENT")
return Action::ABORT_EVENT;
21 else if (
str ==
"ABORT_JOB")
return Action::ABORT_JOB;
22 return Action::UNSPECIFIED_;
◆ getReasonFromString()
Definition at line 41 of file Enums.cxx.
51 return Reason::UNSPECIFIED_;
◆ getSteeringInternalReasonFromString()
Definition at line 74 of file Enums.cxx.
85 return SteeringInternalReason::UNSPECIFIED_;
◆ strAction()
◆ strReason()
◆ strSteeringInternalReason()
Definition at line 92 of file Enums.cxx.
95 return "UNSPECIFIED_";
◆ ActionNames
const std::string ActionNames[4] = {"CONTINUE", "ABORT_CHAIN", "ABORT_EVENT", "ABORT_JOB"} |