The Gaudi Framework  v31r0 (aeb156f0)
EventContext Class Reference

This class represents an entry point to all the event specific data. More...

#include <GaudiKernel/EventContext.h>

Collaboration diagram for EventContext:

Public Types

using ContextID_t = size_t
 
using ContextEvt_t = size_t
 

Public Member Functions

 EventContext ()=default
 
 EventContext (const ContextEvt_t e, const ContextID_t s=INVALID_CONTEXT_ID, const ContextID_t subSlot=INVALID_CONTEXT_ID)
 
ContextEvt_t evt () const
 
ContextID_t slot () const
 
ContextID_t subSlot () const
 
bool usesSubSlot () const
 
bool valid () const
 
const EventIDBaseeventID () const
 
void set (const ContextEvt_t e=0, const ContextID_t s=INVALID_CONTEXT_ID, const ContextID_t subSlot=INVALID_CONTEXT_ID)
 
void setEvt (const ContextEvt_t e)
 
void setSlot (const ContextID_t s)
 
void setSubSlot (const ContextID_t subslot)
 
void setValid (const bool b=true)
 
void setEventID (const EventIDBase &e)
 
template<typename ValueType , typename... Args>
auto & emplaceExtension (Args &&...args)
 
template<typename T >
auto & setExtension (T &&t)
 
template<typename T >
auto & getExtension ()
 
template<typename T >
const auto & getExtension () const
 
bool hasExtension () const
 
template<typename T >
bool hasExtension () const
 
const std::type_infogetExtensionType () const
 

Static Public Attributes

static constexpr ContextID_t INVALID_CONTEXT_ID = std::numeric_limits<ContextID_t>::max()
 
static constexpr ContextEvt_t INVALID_CONTEXT_EVT = std::numeric_limits<ContextEvt_t>::max()
 

Private Attributes

EventIDBase m_eid {}
 
ContextEvt_t m_evt_num {INVALID_CONTEXT_EVT}
 
ContextID_t m_evt_slot {INVALID_CONTEXT_ID}
 
ContextID_t m_sub_slot {INVALID_CONTEXT_ID}
 
bool m_valid {false}
 
::evt_context_detail::any m_extension
 

Detailed Description

This class represents an entry point to all the event specific data.

It is needed to make the algorithm "aware" of the event it is operating on. This was not needed in the serial version of Gaudi where the assumption of 1-event-at-the-time processing was implicit.

This class has nothing to do with the AlgContextSvc or the Context of the EvtSelector!

Author
Danilo Piparo, Charles Leggett
Date
2012

Definition at line 31 of file EventContext.h.

Member Typedef Documentation

Definition at line 34 of file EventContext.h.

using EventContext::ContextID_t = size_t

Definition at line 33 of file EventContext.h.

Constructor & Destructor Documentation

EventContext::EventContext ( )
default
EventContext::EventContext ( const ContextEvt_t  e,
const ContextID_t  s = INVALID_CONTEXT_ID,
const ContextID_t  subSlot = INVALID_CONTEXT_ID 
)
inline

Definition at line 41 of file EventContext.h.

43  : m_evt_num( e ), m_evt_slot( s ), m_sub_slot( subSlot ) {
45  }
ContextID_t m_evt_slot
Definition: EventContext.h:127
static constexpr ContextEvt_t INVALID_CONTEXT_EVT
Definition: EventContext.h:37
static constexpr ContextID_t INVALID_CONTEXT_ID
Definition: EventContext.h:36
ContextEvt_t m_evt_num
Definition: EventContext.h:126
ContextID_t m_sub_slot
Definition: EventContext.h:128
string s
Definition: gaudirun.py:312
ContextID_t subSlot() const
Definition: EventContext.h:49

Member Function Documentation

template<typename ValueType , typename... Args>
auto& EventContext::emplaceExtension ( Args &&...  args)
inline

Definition at line 85 of file EventContext.h.

85  {
86 #if __cplusplus >= 201703
87  return m_extension.emplace<ValueType>( std::forward<Args>( args )... );
88 #else
89  return setExtension( ValueType( std::forward<Args>( args )... ) );
90 #endif
91  }
auto & setExtension(T &&t)
Definition: EventContext.h:94
::evt_context_detail::any m_extension
Definition: EventContext.h:131
const EventIDBase& EventContext::eventID ( ) const
inline

Definition at line 52 of file EventContext.h.

52 { return m_eid; }
EventIDBase m_eid
Definition: EventContext.h:125
ContextEvt_t EventContext::evt ( ) const
inline

Definition at line 47 of file EventContext.h.

47 { return m_evt_num; }
ContextEvt_t m_evt_num
Definition: EventContext.h:126
template<typename T >
auto& EventContext::getExtension ( )
inline

Definition at line 100 of file EventContext.h.

100  {
101  return ::evt_context_detail::any_cast<std::decay_t<T>&>( m_extension );
102  }
::evt_context_detail::any m_extension
Definition: EventContext.h:131
template<typename T >
const auto& EventContext::getExtension ( ) const
inline

Definition at line 105 of file EventContext.h.

105  {
106  return ::evt_context_detail::any_cast<std::decay_t<T> const&>( m_extension );
107  }
::evt_context_detail::any m_extension
Definition: EventContext.h:131
const std::type_info& EventContext::getExtensionType ( ) const
inline

Definition at line 122 of file EventContext.h.

122 { return m_extension.type(); }
::evt_context_detail::any m_extension
Definition: EventContext.h:131
bool EventContext::hasExtension ( ) const
inline

Definition at line 109 of file EventContext.h.

109  {
110 #if __cplusplus >= 201703
111  return m_extension.has_value();
112 #else
113  return !m_extension.empty();
114 #endif
115  }
::evt_context_detail::any m_extension
Definition: EventContext.h:131
template<typename T >
bool EventContext::hasExtension ( ) const
inline

Definition at line 118 of file EventContext.h.

118  {
119  return hasExtension() && m_extension.type() == typeid( std::decay_t<T> );
120  }
bool hasExtension() const
Definition: EventContext.h:109
::evt_context_detail::any m_extension
Definition: EventContext.h:131
void EventContext::set ( const ContextEvt_t  e = 0,
const ContextID_t  s = INVALID_CONTEXT_ID,
const ContextID_t  subSlot = INVALID_CONTEXT_ID 
)
inline

Definition at line 54 of file EventContext.h.

55  {
57  m_evt_num = e;
58  m_evt_slot = s;
60  }
ContextID_t m_evt_slot
Definition: EventContext.h:127
static constexpr ContextEvt_t INVALID_CONTEXT_EVT
Definition: EventContext.h:37
static constexpr ContextID_t INVALID_CONTEXT_ID
Definition: EventContext.h:36
ContextEvt_t m_evt_num
Definition: EventContext.h:126
ContextID_t m_sub_slot
Definition: EventContext.h:128
string s
Definition: gaudirun.py:312
ContextID_t subSlot() const
Definition: EventContext.h:49
void EventContext::setEventID ( const EventIDBase e)
inline

Definition at line 82 of file EventContext.h.

82 { m_eid = e; }
EventIDBase m_eid
Definition: EventContext.h:125
void EventContext::setEvt ( const ContextEvt_t  e)
inline

Definition at line 62 of file EventContext.h.

62  {
63  if ( e == INVALID_CONTEXT_EVT ) setValid( false );
64  m_evt_num = e;
65  }
static constexpr ContextEvt_t INVALID_CONTEXT_EVT
Definition: EventContext.h:37
ContextEvt_t m_evt_num
Definition: EventContext.h:126
void setValid(const bool b=true)
Definition: EventContext.h:74
template<typename T >
auto& EventContext::setExtension ( T &&  t)
inline

Definition at line 94 of file EventContext.h.

94  {
95  m_extension = std::forward<T>( t );
96  return getExtension<T>();
97  }
::evt_context_detail::any m_extension
Definition: EventContext.h:131
void EventContext::setSlot ( const ContextID_t  s)
inline

Definition at line 67 of file EventContext.h.

67  {
68  if ( s == INVALID_CONTEXT_ID ) setValid( false );
69  m_evt_slot = s;
70  }
ContextID_t m_evt_slot
Definition: EventContext.h:127
static constexpr ContextID_t INVALID_CONTEXT_ID
Definition: EventContext.h:36
string s
Definition: gaudirun.py:312
void setValid(const bool b=true)
Definition: EventContext.h:74
void EventContext::setSubSlot ( const ContextID_t  subslot)
inline

Definition at line 72 of file EventContext.h.

72 { m_sub_slot = subslot; }
ContextID_t m_sub_slot
Definition: EventContext.h:128
void EventContext::setValid ( const bool  b = true)
inline

Definition at line 74 of file EventContext.h.

74  {
75  m_valid = b;
76  if ( !m_valid ) {
79  }
80  }
ContextID_t m_evt_slot
Definition: EventContext.h:127
static constexpr ContextEvt_t INVALID_CONTEXT_EVT
Definition: EventContext.h:37
static constexpr ContextID_t INVALID_CONTEXT_ID
Definition: EventContext.h:36
ContextEvt_t m_evt_num
Definition: EventContext.h:126
ContextID_t EventContext::slot ( ) const
inline

Definition at line 48 of file EventContext.h.

48 { return m_evt_slot; }
ContextID_t m_evt_slot
Definition: EventContext.h:127
ContextID_t EventContext::subSlot ( ) const
inline

Definition at line 49 of file EventContext.h.

49 { return m_sub_slot; }
ContextID_t m_sub_slot
Definition: EventContext.h:128
bool EventContext::usesSubSlot ( ) const
inline

Definition at line 50 of file EventContext.h.

50 { return m_sub_slot != INVALID_CONTEXT_ID; }
static constexpr ContextID_t INVALID_CONTEXT_ID
Definition: EventContext.h:36
ContextID_t m_sub_slot
Definition: EventContext.h:128
bool EventContext::valid ( ) const
inline

Definition at line 51 of file EventContext.h.

51 { return m_valid; }

Member Data Documentation

constexpr ContextEvt_t EventContext::INVALID_CONTEXT_EVT = std::numeric_limits<ContextEvt_t>::max()
static

Definition at line 37 of file EventContext.h.

constexpr ContextID_t EventContext::INVALID_CONTEXT_ID = std::numeric_limits<ContextID_t>::max()
static

Definition at line 36 of file EventContext.h.

EventIDBase EventContext::m_eid {}
private

Definition at line 125 of file EventContext.h.

ContextEvt_t EventContext::m_evt_num {INVALID_CONTEXT_EVT}
private

Definition at line 126 of file EventContext.h.

ContextID_t EventContext::m_evt_slot {INVALID_CONTEXT_ID}
private

Definition at line 127 of file EventContext.h.

::evt_context_detail::any EventContext::m_extension
private

Definition at line 131 of file EventContext.h.

ContextID_t EventContext::m_sub_slot {INVALID_CONTEXT_ID}
private

Definition at line 128 of file EventContext.h.

bool EventContext::m_valid {false}
private

Definition at line 129 of file EventContext.h.


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