ATLAS Offline Software
Loading...
Searching...
No Matches
IOVRange.h File Reference

Validity Range object. More...

#include "AthenaKernel/IOVTime.h"
#include <string>
#include <iosfwd>
Include dependency graph for IOVRange.h:

Go to the source code of this file.

Classes

class  IOVRange
 Validity Range object. More...

Functions

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

Detailed Description

Validity Range object.

Holds two IOVTime instances (start and stop)

Author
Charles Leggett
Id
IOVRange.h,v 1.4 2008-10-31 22:43:07 leggett Exp

Definition in file IOVRange.h.

Function Documentation

◆ operator!=()

bool operator!= ( const IOVRange & lhs,
const IOVRange & rhs )
inline

Definition at line 67 of file IOVRange.h.

67 {
68 return ! (lhs == rhs);
69}

◆ operator==()

bool operator== ( const IOVRange & lhs,
const IOVRange & rhs )
inline

Definition at line 62 of file IOVRange.h.

62 {
63 return lhs.m_start==rhs.m_start &&
64 lhs.m_stop==rhs.m_stop ;
65}
IOVTime m_start
Definition IOVRange.h:56
IOVTime m_stop
Definition IOVRange.h:57