ATLAS Offline Software
Loading...
Searching...
No Matches
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}
float getPS() const
const std::vector< std::string > & getStream() const
const std::string & getName() const
const std::string & getLowerName() const
const std::vector< std::string > & getGroup() const
float getPT() const
const std::vector< TrigConfSig > & getSignature() const
const std::string getLevel() const