The Gaudi Framework  v40r0 (475e45c1)
Gaudi::Accumulators::PrintableCounter Struct Referenceabstract

An empty ancester of all counters that knows how to print themselves. More...

#include </builds/gaudi/Gaudi/GaudiKernel/include/Gaudi/Accumulators.h>

Inheritance diagram for Gaudi::Accumulators::PrintableCounter:

Public Member Functions

 PrintableCounter ()=default
 
virtual ~PrintableCounter ()=default
 destructor More...
 
template<typename stream >
stream & printImpl (stream &s, std::string_view tag) const
 
virtual std::ostream & print (std::ostream &, bool tableFormat=false) const =0
 prints the counter to a stream More...
 
virtual MsgStreamprint (MsgStream &, bool tableFormat=true) const =0
 
virtual std::ostream & print (std::ostream &o, std::string_view tag) const
 prints the counter to a stream in table format, with the given tag More...
 
virtual MsgStreamprint (MsgStream &o, std::string_view tag) const
 
virtual bool toBePrinted () const
 hint whether we should print that counter or not. More...
 
std::string toString () const
 get a string representation More...
 

Detailed Description

An empty ancester of all counters that knows how to print themselves.

See also
Gaudi::Accumulators for detailed documentation

Definition at line 859 of file Accumulators.h.

Constructor & Destructor Documentation

◆ PrintableCounter()

Gaudi::Accumulators::PrintableCounter::PrintableCounter ( )
default

◆ ~PrintableCounter()

virtual Gaudi::Accumulators::PrintableCounter::~PrintableCounter ( )
virtualdefault

destructor

Member Function Documentation

◆ print() [1/4]

◆ print() [2/4]

virtual MsgStream& Gaudi::Accumulators::PrintableCounter::print ( MsgStream o,
std::string_view  tag 
) const
inlinevirtual

Reimplemented in Gaudi::Accumulators::BinomialCounter< Arithmetic, Atomicity >, and StatEntity.

Definition at line 874 of file Accumulators.h.

874 { return printImpl( o, tag ); }

◆ print() [3/4]

◆ print() [4/4]

virtual std::ostream& Gaudi::Accumulators::PrintableCounter::print ( std::ostream &  o,
std::string_view  tag 
) const
inlinevirtual

prints the counter to a stream in table format, with the given tag

Reimplemented in Gaudi::Accumulators::BinomialCounter< Arithmetic, Atomicity >, and StatEntity.

Definition at line 873 of file Accumulators.h.

873 { return printImpl( o, tag ); }

◆ printImpl()

template<typename stream >
stream& Gaudi::Accumulators::PrintableCounter::printImpl ( stream &  s,
std::string_view  tag 
) const
inline

Definition at line 865 of file Accumulators.h.

865  {
866  s << boost::format{ " | %|-48.48s|%|50t|" } % ( std::string{ '\"' }.append( tag ).append( "\"" ) );
867  return print( s, true );
868  }

◆ toBePrinted()

virtual bool Gaudi::Accumulators::PrintableCounter::toBePrinted ( ) const
inlinevirtual

◆ toString()

std::string Gaudi::Accumulators::PrintableCounter::toString ( ) const
inline

get a string representation

Definition at line 879 of file Accumulators.h.

879  {
880  std::ostringstream ost;
881  print( ost );
882  return ost.str();
883  }

The documentation for this struct was generated from the following file:
Gaudi::Accumulators::PrintableCounter::printImpl
stream & printImpl(stream &s, std::string_view tag) const
Definition: Accumulators.h:865
gaudirun.s
string s
Definition: gaudirun.py:346
format
GAUDI_API std::string format(const char *,...)
MsgStream format utility "a la sprintf(...)".
Definition: MsgStream.cpp:99
Gaudi::Accumulators::PrintableCounter::print
virtual std::ostream & print(std::ostream &, bool tableFormat=false) const =0
prints the counter to a stream