ATLAS Offline Software
Classes | Functions
LB_IOVRange.h File Reference
#include "AthenaKernel/IOVRange.h"
Include dependency graph for LB_IOVRange.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  LB_IOVRange
 

Functions

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

Function Documentation

◆ operator!=()

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

Definition at line 46 of file LB_IOVRange.h.

46  {
47  return !(lhs==rhs);
48 }

◆ operator==()

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

Definition at line 38 of file LB_IOVRange.h.

38  {
39  return lhs.start()==rhs.start() &&
40  lhs.stop()==rhs.stop() &&
41  lhs.getNumExpected()==rhs.getNumExpected() &&
42  lhs.getNumSeen()==rhs.getNumSeen();
43 }
LB_IOVRange::getNumExpected
uint32_t getNumExpected() const
Definition: LB_IOVRange.h:24
IOVRange::start
const IOVTime & start() const
Definition: IOVRange.h:38
LB_IOVRange::getNumSeen
uint32_t getNumSeen() const
Definition: LB_IOVRange.h:25
IOVRange::stop
const IOVTime & stop() const
Definition: IOVRange.h:39