Enumerations | |
enum | ActionCodes { IgnoreCompletely = 0, Rethrow, SkipEvent, FailModule, FailPath, LastCode } |
Functions | |
const char * | actionName (ActionCodes code) |
Definition at line 11 of file Actions.h.
{ IgnoreCompletely=0, Rethrow, SkipEvent, FailModule, FailPath, LastCode };
char const * edm::actions::actionName | ( | ActionCodes | code | ) |
Definition at line 27 of file Actions.cc.
{ static ActionNames tab; return static_cast<unsigned int>(code) < tab.table_.size() ? tab.table_[code] : "UnknownAction"; }