ATLAS Offline Software
Loading...
Searching...
No Matches
TrigConfSeq.cxx File Reference
#include <algorithm>
#include <sstream>
#include "AthenaKernel/errorcheck.h"
#include "TrigMonitoringEvent/TrigConfSeq.h"
Include dependency graph for TrigConfSeq.cxx:

Go to the source code of this file.

Functions

std::string str (const TrigConfSeq &o)

Function Documentation

◆ str()

std::string str ( const TrigConfSeq & o)

Definition at line 110 of file TrigConfSeq.cxx.

111{
112 std::stringstream s;
113 s << "TrigConfSeq: " << o.getName() << " id=" << o.getId()
114 << " contains " << o.getAlg().size() << " algorithm(s): " << std::endl;
115
116 for(unsigned int i = 0; i < o.getAlg().size(); ++i) {
117 s << " " << str(o.getAlg()[i]) << std::endl;
118 }
119
120 return s.str();
121}
const TrigConfAlg & getAlg(unsigned int pos) const
const std::string & getName() const
Definition TrigConfSeq.h:44
uint32_t getId() const
Definition TrigConfSeq.h:43