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

Go to the source code of this file.

Classes

class  TrigConfAlg

Functions

std::string str (const TrigConfAlg &)
bool operator== (const TrigConfAlg &lhs, const TrigConfAlg &rhs)
bool operator!= (const TrigConfAlg &lhs, const TrigConfAlg &rhs)

Function Documentation

◆ operator!=()

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

Definition at line 69 of file TrigConfAlg.h.

69 {
70 return !(lhs == rhs);
71}

◆ operator==()

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

Definition at line 66 of file TrigConfAlg.h.

66 {
67 return lhs.getName() == rhs.getName();
68}
const std::string & getName() const
Definition TrigConfAlg.h:39

◆ str()

std::string str ( const TrigConfAlg & o)

Definition at line 57 of file TrigConfAlg.cxx.

58{
59 std::stringstream s;
60 s << "TrigConfAlg: " << o.getPosition() << " "
61 << o.getName() << "/" << o.getType() << " = "
62 << o.getNameId() << "/" << o.getTypeId();
63
64 return s.str();
65}
const std::string & getType() const
Definition TrigConfAlg.h:40
uint8_t getPosition() const
Definition TrigConfAlg.h:43
uint32_t getNameId() const
Definition TrigConfAlg.h:44
uint32_t getTypeId() const
Definition TrigConfAlg.h:45