ATLAS Offline Software
Classes | Functions
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 }

◆ str()

std::string str ( const TrigConfAlg )

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 }
python.SystemOfUnits.s
int s
Definition: SystemOfUnits.py:131
TrigConfAlg::getName
const std::string & getName() const
Definition: TrigConfAlg.h:39