LArSoft  v06_85_00
Liquid Argon Software toolkit - http://larsoft.org/
art::actions Namespace Reference

Enumerations

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

Functions

char const * actionName (ActionCodes const code)
 

Enumeration Type Documentation

Enumerator
IgnoreCompletely 
Rethrow 
SkipEvent 
FailModule 
FailPath 
LastCode 

Definition at line 5 of file ActionCodes.h.

Function Documentation

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

Definition at line 33 of file Actions.cc.

Referenced by art::ActionTable::install_().

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