The Gaudi Framework  v30r3 (a5ef0a68)
Incident Class Reference

Base class for all Incidents (computing events). More...

#include <GaudiKernel/Incident.h>

Inheritance diagram for Incident:
Collaboration diagram for Incident:

Public Member Functions

 Incident (const std::string &source, const std::string &type)
 Default Constructor. More...
 
 Incident (const std::string &source, const std::string &type, const EventContext &ctx)
 
virtual ~Incident ()=default
 Destructor. More...
 
const std::stringtype () const
 Access to the incident type. More...
 
const std::stringsource () const
 Access to the source of the incident. More...
 
EventContext context () const
 Access to the EventContext of the source of the incident. More...
 

Private Attributes

std::string m_source
 Incident source. More...
 
std::string m_type
 incident type More...
 
EventContext m_ctx
 Event Context when Incident created. More...
 

Detailed Description

Base class for all Incidents (computing events).

Author
P. Mato
Date
2001/01/19

Definition at line 17 of file Incident.h.

Constructor & Destructor Documentation

Incident::Incident ( const std::string source,
const std::string type 
)

Default Constructor.

Parameters
sourceIncident source (service or algorithm name)
typeIncident type

Definition at line 5 of file Incident.cpp.

5  : m_source( source ), m_type( type )
6 {
8 }
std::string m_type
incident type
Definition: Incident.h:57
GAUDI_API const EventContext & currentContext()
std::string m_source
Incident source.
Definition: Incident.h:56
EventContext m_ctx
Event Context when Incident created.
Definition: Incident.h:58
Incident::Incident ( const std::string source,
const std::string type,
const EventContext ctx 
)
inline
Parameters
sourceIncident source (service or algorithm name)
typeIncident type
ctxEventContext

Definition at line 26 of file Incident.h.

30  : m_source( source ), m_type( type ), m_ctx( ctx )
31  {
32  }
std::string m_type
incident type
Definition: Incident.h:57
std::string m_source
Incident source.
Definition: Incident.h:56
EventContext m_ctx
Event Context when Incident created.
Definition: Incident.h:58
virtual Incident::~Incident ( )
virtualdefault

Destructor.

Member Function Documentation

EventContext Incident::context ( ) const
inline

Access to the EventContext of the source of the incident.

Returns
EventContext of the component that initiated the incident

Definition at line 53 of file Incident.h.

53 { return m_ctx; }
EventContext m_ctx
Event Context when Incident created.
Definition: Incident.h:58
const std::string& Incident::source ( ) const
inline

Access to the source of the incident.

Returns
service or algorithm name that initiated the incident

Definition at line 47 of file Incident.h.

47 { return m_source; }
std::string m_source
Incident source.
Definition: Incident.h:56
const std::string& Incident::type ( ) const
inline

Access to the incident type.

Returns
string descriptor for the incident type

Definition at line 41 of file Incident.h.

41 { return m_type; }
std::string m_type
incident type
Definition: Incident.h:57

Member Data Documentation

EventContext Incident::m_ctx
private

Event Context when Incident created.

Definition at line 58 of file Incident.h.

std::string Incident::m_source
private

Incident source.

Definition at line 56 of file Incident.h.

std::string Incident::m_type
private

incident type

Definition at line 57 of file Incident.h.


The documentation for this class was generated from the following files: