ATLAS Offline Software
Loading...
Searching...
No Matches
TrigMonRoi.h File Reference
#include "AthenaKernel/CLASS_DEF.h"
#include <stdint.h>
#include <vector>
#include "TrigMonitoringEvent/TrigMonVar.h"
Include dependency graph for TrigMonRoi.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  TrigMonRoi

Namespaces

namespace  Trig
 The common trigger namespace for trigger analysis tools.

Functions

std::string str (const TrigMonRoi &)
uint8_t Trig::getRoiId_Unknown ()
uint8_t Trig::getRoiId_JetEt ()
uint8_t Trig::getRoiId_Energy ()
bool operator== (const TrigMonRoi &lhs, const TrigMonRoi &rhs)
bool operator< (const TrigMonRoi &lhs, const TrigMonRoi &rhs)
bool operator== (const TrigMonRoi &roi, unsigned int word)
bool operator== (unsigned int word, const TrigMonRoi &roi)

Function Documentation

◆ operator<()

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

Definition at line 115 of file TrigMonRoi.h.

115 {
116 return lhs.getRoiWord() < rhs.getRoiWord();
117}
uint32_t getRoiWord() const
Definition TrigMonRoi.h:53

◆ operator==() [1/3]

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

Definition at line 112 of file TrigMonRoi.h.

112 {
113 return lhs.getRoiWord() == rhs.getRoiWord();
114}

◆ operator==() [2/3]

bool operator== ( const TrigMonRoi & roi,
unsigned int word )
inline

Definition at line 119 of file TrigMonRoi.h.

119 {
120 return roi.getRoiWord() == word;
121}

◆ operator==() [3/3]

bool operator== ( unsigned int word,
const TrigMonRoi & roi )
inline

Definition at line 122 of file TrigMonRoi.h.

122 {
123 return word == roi.getRoiWord();
124}

◆ str()

std::string str ( const TrigMonRoi & o)

Definition at line 274 of file TrigMonRoi.cxx.

275{
276 std::stringstream s;
277 s << "TrigMonRoi: id=" << o.getRoiId() << " word=" << o.getRoiWord();
278
279 return s.str();
280}
uint32_t getRoiId() const