|
Gaudi Framework, version v22r0 |
| Home | Generated: 9 Feb 2011 |
collection of useful utilities to print IHistogram1D (currently used for implementation of class GaudiHistoAlg and class GaudiHistoTool) More...
#include <GaudiAlg/Print.h>
Static Public Member Functions | |
| static void | print (MsgStream &stream, const AIDA::IHistogram2D *aida, const GaudiAlg::HistoID &ID) |
| static std::string | toString (const AIDA::IHistogram2D *aida, const GaudiAlg::HistoID &ID) |
collection of useful utilities to print IHistogram1D (currently used for implementation of class GaudiHistoAlg and class GaudiHistoTool)
Definition at line 88 of file Print.h.
| void GaudiAlg::Print2D::print | ( | MsgStream & | stream, | |
| const AIDA::IHistogram2D * | aida, | |||
| const GaudiAlg::HistoID & | ID | |||
| ) | [static] |
| std::string GaudiAlg::Print2D::toString | ( | const AIDA::IHistogram2D * | aida, | |
| const GaudiAlg::HistoID & | ID | |||
| ) | [static] |
Definition at line 96 of file Print.cpp.
00098 { 00099 boost::format fmt 00100 ( " ID=%|-25|%|30t| \"%|.45s|\" %|79t| Ents/All=%|5|/%|-5|<X>/sX=%|.5|/%|-.5|,<Y>/sY=%|.5|/%|-.5|" ) ; 00101 fmt % ID.idAsString() % aida->title(); 00102 fmt % (aida->allEntries()-aida->extraEntries()) % aida->allEntries() ; 00103 fmt % aida->meanX() % aida->rmsX() ; 00104 fmt % aida->meanY() % aida->rmsY() ; 00105 // 00106 return fmt.str() ; 00107 }