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

Private Attributes

MessageSender ap
 

Detailed Description

Definition at line 321 of file MessageLogger.h.

Constructor & Destructor Documentation

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

Definition at line 324 of file MessageLogger.h.

325  : ap ( ELerror,id,true,!MessageDrop::instance()->errorEnabled ) // Change log 24
326  { }
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 331 of file MessageLogger.h.

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

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

Definition at line 333 of file MessageLogger.h.

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

334  { 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 336 of file MessageLogger.h.

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

337  { 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 340 of file MessageLogger.h.

Referenced by operator<<().