ATLAS Offline Software
Public Member Functions | Private Attributes | List of all members
xAOD::TIncident Class Reference

Class describing a certain "incident" that is communicated to user code. More...

#include <TIncident.h>

Collaboration diagram for xAOD::TIncident:

Public Member Functions

 TIncident (::Int_t type)
 Constructor with a type. More...
 
::Int_t type () const
 Return the type of the incident. More...
 

Private Attributes

::Int_t m_type
 The type of this incident. More...
 

Detailed Description

Class describing a certain "incident" that is communicated to user code.

Objects of this type are dispached to all user objects that implement the TVirtualIncidentListener interface, and have registered themselves to receive notifications from the TEvent object when certain things happen.

Naturally, this is very much just a copy of Gaudi's Incident class.

Author
Attila Krasznahorkay Attil.nosp@m.a.Kr.nosp@m.aszna.nosp@m.hork.nosp@m.ay@ce.nosp@m.rn.c.nosp@m.h
Revision
676314
Date
2015-06-18 14:07:05 +0200 (Thu, 18 Jun 2015)

Definition at line 58 of file TIncident.h.

Constructor & Destructor Documentation

◆ TIncident()

xAOD::TIncident::TIncident ( ::Int_t  type)

Constructor with a type.

Definition at line 15 of file TIncident.cxx.

16  : m_type( type ) {
17 
18  }

Member Function Documentation

◆ type()

Int_t xAOD::TIncident::type ( ) const

Return the type of the incident.

Definition at line 20 of file TIncident.cxx.

20  {
21 
22  return m_type;
23  }

Member Data Documentation

◆ m_type

::Int_t xAOD::TIncident::m_type
private

The type of this incident.

Definition at line 69 of file TIncident.h.


The documentation for this class was generated from the following files:
xAOD::TIncident::type
::Int_t type() const
Return the type of the incident.
Definition: TIncident.cxx:20
xAOD::TIncident::m_type
::Int_t m_type
The type of this incident.
Definition: TIncident.h:69