CMS 3D CMS Logo

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 &)
 
LogImportantoperator= (LogImportant const &)
 

Private Attributes

MessageSender ap
 

Detailed Description

Definition at line 323 of file MessageLogger.h.

Constructor & Destructor Documentation

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

Definition at line 326 of file MessageLogger.h.

327  : ap ( ELerror,id,true,!MessageDrop::instance()->errorEnabled ) // Change log 24
328  { }
MessageSender ap
static MessageDrop * instance()
Definition: MessageDrop.cc:60
ELslProxy< ELerrorGen > const ELerror
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 333 of file MessageLogger.h.

References edm::LogWarning::ap, and edm::MessageSender::valid().

333 { if(ap.valid()) ap << t; return *this; }
MessageSender ap
LogImportant& edm::LogImportant::operator<< ( std::ostream &(*)(std::ostream &)  f)
inline

Definition at line 335 of file MessageLogger.h.

References edm::LogWarning::ap, f, and edm::MessageSender::valid().

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

Definition at line 338 of file MessageLogger.h.

References edm::LogWarning::ap, f, and edm::MessageSender::valid().

339  { if(ap.valid()) ap << f; return *this; }
MessageSender ap
double f[11][100]
LogImportant& edm::LogImportant::operator= ( LogImportant const &  )
private

Member Data Documentation

MessageSender edm::LogImportant::ap
private

Definition at line 342 of file MessageLogger.h.