ATLAS Offline Software
Functions
TrigConfChain.cxx File Reference
#include <algorithm>
#include <sstream>
#include "AthenaKernel/errorcheck.h"
#include "TrigMonitoringEvent/TrigMonSeq.h"
#include "TrigMonitoringEvent/TrigConfChain.h"
Include dependency graph for TrigConfChain.cxx:

Go to the source code of this file.

Functions

std::string str (const TrigConfChain &o)
 

Function Documentation

◆ str()

std::string str ( const TrigConfChain o)

Definition at line 229 of file TrigConfChain.cxx.

230 {
231  std::stringstream s;
232 
233  s << "TrigConfChain: "
234  << o.getLevel() << " " << o.getName()
235  << " PS=" << o.getPS() << " PT=" << o.getPT()
236  << " lower chain=" << o.getLowerName() << std::endl;
237 
238  s << " signatures: ";
239  for(unsigned int i = 0; i < o.getSignature().size(); ++i) {
240  s << str(o.getSignature()[i]) << " ";
241  }
242  s << std::endl;
243 
244  s << " streams: ";
245  for(unsigned int i = 0; i < o.getStream().size(); ++i) {
246  s << o.getStream()[i] << " ";
247  }
248  s << std::endl;
249 
250  s << " groups: ";
251  for(unsigned int i = 0; i < o.getGroup().size(); ++i) {
252  s << o.getGroup()[i] << " ";
253  }
254  s << std::endl;
255 
256  return s.str();
257 }
TrigConfChain::getGroup
const std::vector< std::string > & getGroup() const
Definition: TrigConfChain.h:95
python.SystemOfUnits.s
int s
Definition: SystemOfUnits.py:131
TrigConfChain::getName
const std::string & getName() const
Definition: TrigConfChain.h:72
TrigConfChain::getLevel
const std::string getLevel() const
Definition: TrigConfChain.cxx:177
TrigConfChain::getPS
float getPS() const
Definition: TrigConfChain.h:88
TrigConfChain::getSignature
const std::vector< TrigConfSig > & getSignature() const
Definition: TrigConfChain.h:93
python.setupRTTAlg.size
int size
Definition: setupRTTAlg.py:39
lumiFormat.i
int i
Definition: lumiFormat.py:92
TrigConfChain::getPT
float getPT() const
Definition: TrigConfChain.h:90
str
std::string str(const TrigConfChain &o)
Definition: TrigConfChain.cxx:229
TrigConfChain::getStream
const std::vector< std::string > & getStream() const
Definition: TrigConfChain.h:94
TrigConfChain::getLowerName
const std::string & getLowerName() const
Definition: TrigConfChain.h:74