CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
edm::LogImportant Class Reference

#include <MessageLogger.h>

Public Member Functions

 LogImportant (std::string const &id)
 
template<class T >
LogImportantoperator<< (T const &t)
 
LogImportantoperator<< (std::ostream &(*f)(std::ostream &))
 
LogImportantoperator<< (std::ios_base &(*f)(std::ios_base &))
 
 ~LogImportant ()
 

Private Member Functions

 LogImportant (LogImportant const &)
 

Private Attributes

std::auto_ptr< MessageSenderap
 

Detailed Description

Definition at line 319 of file MessageLogger.h.

Constructor & Destructor Documentation

edm::LogImportant::LogImportant ( std::string const &  id)
inlineexplicit

Definition at line 322 of file MessageLogger.h.

323  : ap ( (edm::MessageDrop::instance()->errorEnabled) ? // Change log 24
324  new MessageSender(ELerror,id,true) : 0 )
325  { }
static MessageDrop * instance()
Definition: MessageDrop.cc:65
ELslProxy< ELerrorGen > const ELerror
std::auto_ptr< MessageSender > ap
edm::LogImportant::~LogImportant ( )

Definition at line 62 of file MessageLogger.cc.

62 {}
edm::LogImportant::LogImportant ( LogImportant const &  )
private

Member Function Documentation

template<class T >
LogImportant& edm::LogImportant::operator<< ( T const &  t)
inline

Definition at line 330 of file MessageLogger.h.

References matplotRender::t.

330 { (*ap) << t; return *this; }
LogImportant& edm::LogImportant::operator<< ( std::ostream &(*)(std::ostream &)  f)
inline

Definition at line 332 of file MessageLogger.h.

References f.

333  { (*ap) << f; return *this; }
double f[11][100]
LogImportant& edm::LogImportant::operator<< ( std::ios_base &(*)(std::ios_base &)  f)
inline

Definition at line 335 of file MessageLogger.h.

References f.

336  { (*ap) << f; return *this; }
double f[11][100]

Member Data Documentation

std::auto_ptr<MessageSender> edm::LogImportant::ap
private

Definition at line 339 of file MessageLogger.h.