CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Member Functions | Private Attributes
edm::ExceptionToActionTable Class Reference

#include <ExceptionActions.h>

Public Types

typedef std::map< std::string, exception_actions::ActionCodesActionMap
 

Public Member Functions

void add (const std::string &category, exception_actions::ActionCodes code)
 
 ExceptionToActionTable ()
 
 ExceptionToActionTable (const ParameterSet &)
 
exception_actions::ActionCodes find (const std::string &category) const
 
 ~ExceptionToActionTable ()
 

Private Member Functions

void addDefaults ()
 

Private Attributes

ActionMap map_
 

Detailed Description

Definition at line 16 of file ExceptionActions.h.

Member Typedef Documentation

◆ ActionMap

Definition at line 18 of file ExceptionActions.h.

Constructor & Destructor Documentation

◆ ExceptionToActionTable() [1/2]

edm::ExceptionToActionTable::ExceptionToActionTable ( )

Definition at line 23 of file ExceptionActions.cc.

References addDefaults().

◆ ExceptionToActionTable() [2/2]

edm::ExceptionToActionTable::ExceptionToActionTable ( const ParameterSet pset)
explicit

◆ ~ExceptionToActionTable()

edm::ExceptionToActionTable::~ExceptionToActionTable ( )

Definition at line 70 of file ExceptionActions.cc.

70 {}

Member Function Documentation

◆ add()

void edm::ExceptionToActionTable::add ( const std::string &  category,
exception_actions::ActionCodes  code 
)

◆ addDefaults()

void edm::ExceptionToActionTable::addDefaults ( )
private

Definition at line 57 of file ExceptionActions.cc.

References DMR_cfg::cerr, edm::debugit, cuy::ib, and map_.

Referenced by ExceptionToActionTable().

57  {
58  // populate defaults that are not 'Rethrow'
59  // (There are none as of CMSSW_3_4_X.)
60  // 'Rethrow' is the default default.
61  if (2 <= debugit()) {
62  ActionMap::const_iterator ib(map_.begin()), ie(map_.end());
63  for (; ib != ie; ++ib) {
64  std::cerr << ib->first << ',' << ib->second << '\n';
65  }
66  std::cerr << std::endl;
67  }
68  }
debugvalue debugit
Definition: DebugMacros.cc:10
ib
Definition: cuy.py:661

◆ find()

exception_actions::ActionCodes edm::ExceptionToActionTable::find ( const std::string &  category) const

Member Data Documentation

◆ map_

ActionMap edm::ExceptionToActionTable::map_
private

Definition at line 29 of file ExceptionActions.h.

Referenced by add(), addDefaults(), ExceptionToActionTable(), and find().