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

template<typename F >
LogImportantlog (F &&iF)
 
 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 &)=delete
 
LogImportantoperator= (LogImportant const &)=delete
 

Private Attributes

MessageSender ap
 

Detailed Description

Definition at line 428 of file MessageLogger.h.

Constructor & Destructor Documentation

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

Definition at line 431 of file MessageLogger.h.

432  : ap(ELerror, id, true, !MessageDrop::instance()->errorEnabled) // Change log 24
433  {}
MessageSender ap
static MessageDrop * instance()
Definition: MessageDrop.cc:59
ELslProxy< ELerrorGen > const ELerror
edm::LogImportant::~LogImportant ( )

Definition at line 62 of file MessageLogger.cc.

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

Member Function Documentation

template<typename F >
LogImportant& edm::LogImportant::log ( F &&  iF)
inline

Definition at line 454 of file MessageLogger.h.

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

454  {
455  if (ap.valid()) {
456  iF(ap);
457  }
458  return *this;
459  }
MessageSender ap
template<class T >
LogImportant& edm::LogImportant::operator<< ( T const &  t)
inline

Definition at line 437 of file MessageLogger.h.

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

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

Definition at line 442 of file MessageLogger.h.

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

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

Definition at line 447 of file MessageLogger.h.

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

447  {
448  if (ap.valid())
449  ap << f;
450  return *this;
451  }
MessageSender ap
double f[11][100]
LogImportant& edm::LogImportant::operator= ( LogImportant const &  )
privatedelete

Member Data Documentation

MessageSender edm::LogImportant::ap
private

Definition at line 462 of file MessageLogger.h.