The Gaudi Framework  v29r0 (ff2e7097)
IoComponentMgr.cpp File Reference
#include "IoComponentMgr.h"
#include "GaudiKernel/FileIncident.h"
#include "GaudiKernel/IIncidentSvc.h"
#include "GaudiKernel/IFileMgr.h"
#include "GaudiKernel/ServiceHandle.h"
#include <boost/filesystem.hpp>
#include "GaudiKernel/Property.h"
Include dependency graph for IoComponentMgr.cpp:

Go to the source code of this file.

Macros

#define ON_DEBUG   if ( UNLIKELY( outputLevel() <= MSG::DEBUG ) )
 
#define ON_VERBOSE   if ( UNLIKELY( outputLevel() <= MSG::VERBOSE ) )
 
#define DEBMSG   ON_DEBUG debug()
 
#define VERMSG   ON_VERBOSE verbose()
 

Functions

std::ostreamoperator<< (std::ostream &os, const IIoComponentMgr::IoMode::Type &m)
 

Macro Definition Documentation

#define DEBMSG   ON_DEBUG debug()

Definition at line 24 of file IoComponentMgr.cpp.

#define ON_DEBUG   if ( UNLIKELY( outputLevel() <= MSG::DEBUG ) )

Definition at line 21 of file IoComponentMgr.cpp.

#define ON_VERBOSE   if ( UNLIKELY( outputLevel() <= MSG::VERBOSE ) )

Definition at line 22 of file IoComponentMgr.cpp.

#define VERMSG   ON_VERBOSE verbose()

Definition at line 25 of file IoComponentMgr.cpp.

Function Documentation

std::ostream& operator<< ( std::ostream os,
const IIoComponentMgr::IoMode::Type m 
)

Definition at line 31 of file IoComponentMgr.cpp.

32 {
33  switch ( m ) {
35  os << "READ";
36  break;
38  os << "WRITE";
39  break;
41  os << "RW";
42  break;
43  default:
44  os << "INVALID";
45  break;
46  }
47 
48  return os;
49 }
constexpr double m
Definition: SystemOfUnits.h:94