ATLAS Offline Software
Loading...
Searching...
No Matches
TrigMonSeq.h File Reference
Include dependency graph for TrigMonSeq.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  TrigMonSeq

Functions

bool operator== (const TrigMonSeq &lhs, const TrigMonSeq &rhs)
bool operator!= (const TrigMonSeq &lhs, const TrigMonSeq &rhs)
bool operator< (const TrigMonSeq &lhs, const TrigMonSeq &rhs)
bool operator== (const TrigMonSeq &entry, const TrigConfSeq &confg)
bool operator== (const TrigConfSeq &confg, const TrigMonSeq &entry)
bool operator== (const TrigMonSeq &entry, const TrigConfChain &confg)
bool operator== (const TrigConfChain &confg, const TrigMonSeq &entry)

Function Documentation

◆ operator!=()

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

Definition at line 96 of file TrigMonSeq.h.

96 {
97 return !(lhs == rhs);
98}

◆ operator<()

bool operator< ( const TrigMonSeq & lhs,
const TrigMonSeq & rhs )
inline

Definition at line 99 of file TrigMonSeq.h.

99 {
100 return lhs.getSeqIndex() < rhs.getSeqIndex();
101}
uint16_t getSeqIndex() const

◆ operator==() [1/5]

bool operator== ( const TrigConfChain & confg,
const TrigMonSeq & entry )
inline

Definition at line 112 of file TrigMonSeq.h.

112 {
113 return entry.getChnEncodedId() == confg.getEncodedId();
114}
uint16_t getEncodedId() const

◆ operator==() [2/5]

bool operator== ( const TrigConfSeq & confg,
const TrigMonSeq & entry )
inline

Definition at line 106 of file TrigMonSeq.h.

106 {
107 return entry.getSeqIndex() == confg.getIndex();
108}
uint16_t getIndex() const
Definition TrigConfSeq.h:42

◆ operator==() [3/5]

bool operator== ( const TrigMonSeq & entry,
const TrigConfChain & confg )
inline

Definition at line 109 of file TrigMonSeq.h.

109 {
110 return entry.getChnEncodedId() == confg.getEncodedId();
111}

◆ operator==() [4/5]

bool operator== ( const TrigMonSeq & entry,
const TrigConfSeq & confg )
inline

Definition at line 103 of file TrigMonSeq.h.

103 {
104 return entry.getSeqIndex() == confg.getIndex();
105}

◆ operator==() [5/5]

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

Definition at line 93 of file TrigMonSeq.h.

93 {
94 return (lhs.getSeqIndex() == rhs.getSeqIndex());
95}