The Gaudi Framework  master (37c0b60a)
EventIDRange.h File Reference

Event Range object. Holds two EventIDBase instances (start and stop) More...

#include <GaudiKernel/EventIDBase.h>
#include <iostream>
#include <sstream>
#include <string>
Include dependency graph for EventIDRange.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  EventIDRange
 Event ID Range object. Holds two EventIDBases (start and stop) More...
 

Functions

bool operator== (const EventIDRange &lhs, const EventIDRange &rhs)
 
bool operator!= (const EventIDRange &lhs, const EventIDRange &rhs)
 

Detailed Description

Event Range object. Holds two EventIDBase instances (start and stop)


Author
Charles Leggett

Definition in file EventIDRange.h.

Function Documentation

◆ operator!=()

bool operator!= ( const EventIDRange lhs,
const EventIDRange rhs 
)
inline

Definition at line 84 of file EventIDRange.h.

84 { return !( lhs == rhs ); }

◆ operator==()

bool operator== ( const EventIDRange lhs,
const EventIDRange rhs 
)
inline

Definition at line 80 of file EventIDRange.h.

80  {
81  return lhs.m_start == rhs.m_start && lhs.m_stop == rhs.m_stop;
82 }
EventIDRange::m_start
EventIDBase m_start
Definition: EventIDRange.h:76
EventIDRange::m_stop
EventIDBase m_stop
Definition: EventIDRange.h:77