Enumerations | |
enum | ActionCodes { IgnoreCompletely = 0, Rethrow, SkipEvent, FailModule, FailPath, LastCode } |
Functions | |
const char * | actionName (ActionCodes code) |
Definition at line 11 of file Actions.h.
00011 { 00012 IgnoreCompletely=0, 00013 Rethrow, 00014 SkipEvent, 00015 FailModule, 00016 FailPath, 00017 LastCode 00018 };
const char * edm::actions::actionName | ( | ActionCodes | code | ) |
Definition at line 30 of file Actions.cc.
Referenced by edm::install().
00031 { 00032 static ActionNames tab; 00033 return static_cast<unsigned int>(code) < tab.table_.size() ? 00034 tab.table_[code] : "UnknownAction"; 00035 }