ATLAS Offline Software
Loading...
Searching...
No Matches
LB_IOVRange.h File Reference
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}
const IOVTime & stop() const
Definition IOVRange.h:39
const IOVTime & start() const
Definition IOVRange.h:38
uint32_t getNumExpected() const
Definition LB_IOVRange.h:24
uint32_t getNumSeen() const
Definition LB_IOVRange.h:25