CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Enumerations | Functions
edm::actions Namespace Reference

Enumerations

enum  ActionCodes {
  IgnoreCompletely =0, Rethrow, SkipEvent, FailModule,
  FailPath, LastCode
}
 

Functions

const char * actionName (ActionCodes code)
 

Enumeration Type Documentation

Enumerator
IgnoreCompletely 
Rethrow 
SkipEvent 
FailModule 
FailPath 
LastCode 

Definition at line 11 of file Actions.h.

Function Documentation

char const * edm::actions::actionName ( ActionCodes  code)

Definition at line 27 of file Actions.cc.

27  {
28  static ActionNames tab;
29  return static_cast<unsigned int>(code) < tab.table_.size() ? tab.table_[code] : "UnknownAction";
30  }