ATLAS Offline Software
Loading...
Searching...
No Matches
TrigConfAlg.h File Reference
#include "AthenaKernel/CLASS_DEF.h"
#include <iostream>
#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 68 of file TrigConfAlg.h.

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

◆ operator==()

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

Definition at line 65 of file TrigConfAlg.h.

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

◆ str()

std::string str ( const TrigConfAlg & o)

Definition at line 63 of file TrigConfAlg.cxx.

64{
65 std::stringstream s;
66 s << "TrigConfAlg: " << o.getPosition() << " "
67 << o.getName() << "/" << o.getType() << " = "
68 << o.getNameId() << "/" << o.getTypeId();
69
70 return s.str();
71}
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