#include <GaudiAlg/Print.h>
Static Public Member Functions | |
| static void | print (MsgStream &stream, const AIDA::IProfile1D *aida, const GaudiAlg::HistoID &ID) |
| static std::string | toString (const AIDA::IProfile1D *aida, const GaudiAlg::HistoID &ID) |
Definition at line 130 of file Print.h.
| void GaudiAlg::Print1DProf::print | ( | MsgStream & | stream, | |
| const AIDA::IProfile1D * | aida, | |||
| const GaudiAlg::HistoID & | ID | |||
| ) | [static] |
| std::string GaudiAlg::Print1DProf::toString | ( | const AIDA::IProfile1D * | aida, | |
| const GaudiAlg::HistoID & | ID | |||
| ) | [static] |
Definition at line 133 of file Print.cpp.
00135 { 00136 boost::format fmt 00137 ( " ID=%|-25|%|30t| \"%|.55s|\" %|79t| Ents/All=%|5|/%|-5|<X>/sX=%|.5|/%|-.5|" ) ; 00138 fmt % ID.idAsString() % aida->title(); 00139 fmt % (aida->allEntries()-aida->extraEntries()) % aida->allEntries() ; 00140 fmt % aida->mean() % aida->rms() ; 00141 // 00142 return fmt.str() ; 00143 }
1.4.7