CMS 3D CMS Logo

Enumerations | Functions

edm::actions Namespace Reference

Enumerations

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

Functions

const char * actionName (ActionCodes code)

Enumeration Type Documentation

Enumerator:
IgnoreCompletely 
Rethrow 
SkipEvent 
FailPath 
LastCode 

Definition at line 11 of file Actions.h.


Function Documentation

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

Definition at line 26 of file Actions.cc.

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