EventIDRange.h File Reference


More...

#include "GaudiKernel/EventIDBase.h"
#include <iostream>
#include <string>
#include <sstream>
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. 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

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

Definition at line 67 of file EventIDRange.h.

67  {
68  return ! (lhs == rhs);
69 }
bool operator== ( const EventIDRange lhs,
const EventIDRange rhs 
)
inline

Definition at line 62 of file EventIDRange.h.

62  {
63  return lhs.m_start==rhs.m_start &&
64  lhs.m_stop==rhs.m_stop ;
65 }
EventIDBase m_stop
Definition: EventIDRange.h:58
EventIDBase m_start
Definition: EventIDRange.h:57