CMS 3D CMS Logo

Public Member Functions | Private Member Functions | Private Attributes

edm::LogImportant Class Reference

#include <MessageLogger.h>

List of all members.

Public Member Functions

 LogImportant (std::string const &id)
LogImportantoperator<< (std::ios_base &(*f)(std::ios_base &))
LogImportantoperator<< (std::ostream &(*f)(std::ostream &))
template<class T >
LogImportantoperator<< (T const &t)
 ~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) [inline, explicit]

Definition at line 324 of file MessageLogger.h.

    : ap ( ELerror,id,true,!MessageDrop::instance()->errorEnabled )        // Change log 24
  { }
edm::LogImportant::~LogImportant ( )

Definition at line 62 of file MessageLogger.cc.

{}
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().

{ if(ap.valid()) ap << t; return *this; }
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().

                                      { if(ap.valid()) ap << f; return *this; }
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().

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

Member Data Documentation

Definition at line 340 of file MessageLogger.h.

Referenced by operator<<().