ATLAS Offline Software
Functions
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 }
python.SystemOfUnits.s
int s
Definition: SystemOfUnits.py:131
str
std::string str(const TrigConfSeq &o)
Definition: TrigConfSeq.cxx:110
TrigConfSeq::getId
uint32_t getId() const
Definition: TrigConfSeq.h:43
python.setupRTTAlg.size
int size
Definition: setupRTTAlg.py:39
lumiFormat.i
int i
Definition: lumiFormat.py:92
TrigConfSeq::getName
const std::string & getName() const
Definition: TrigConfSeq.h:44
TrigConfSeq::getAlg
const TrigConfAlg & getAlg(unsigned int pos) const
Definition: TrigConfSeq.cxx:44