#include "IoComponentMgr.h"
#include <Gaudi/Property.h>
#include <GaudiKernel/FileIncident.h>
#include <GaudiKernel/IFileMgr.h>
#include <GaudiKernel/IIncidentSvc.h>
#include <GaudiKernel/ServiceHandle.h>
#include <boost/algorithm/string/predicate.hpp>
#include <boost/filesystem.hpp>
#include <algorithm>
#include <array>
Go to the source code of this file.
◆ DEBMSG
◆ ON_DEBUG
| #define ON_DEBUG if ( outputLevel() <= MSG::DEBUG ) |
◆ ON_VERBOSE
◆ VERMSG
◆ operator<<()
Definition at line 42 of file IoComponentMgr.cpp.
42 {
43 switch ( m ) {
45 os << "READ";
46 break;
48 os << "WRITE";
49 break;
51 os << "RW";
52 break;
53 default:
54 os << "INVALID";
55 break;
56 }
57
58 return os;
59}