ATLAS Offline Software
Loading...
Searching...
No Matches
IOVSvcTool.cxx File Reference
#include "IOVSvcTool.h"
#include "GaudiKernel/ISvcLocator.h"
#include "GaudiKernel/IIncidentSvc.h"
#include "GaudiKernel/Incident.h"
#include "GaudiKernel/IAlgTool.h"
#include "GaudiKernel/IToolSvc.h"
#include "GaudiKernel/IClassIDSvc.h"
#include "GaudiKernel/Guards.h"
#include "GaudiKernel/ConcurrencyFlags.h"
#include "AthenaKernel/IProxyDict.h"
#include "AthenaKernel/IProxyProviderSvc.h"
#include "AthenaKernel/IAddressProvider.h"
#include "AthenaKernel/IIOVDbSvc.h"
#include "AthenaKernel/IOVRange.h"
#include "SGTools/TransientAddress.h"
#include "SGTools/DataProxy.h"
#include "StoreGate/StoreGateSvc.h"
#include "IOVEntry.h"
#include "IOVSvc/IOVAddress.h"
#include "CBTree.h"
#include "IOVSvc/IOVCallbackError.h"
#include <stdint.h>
#include <ctype.h>
#include <stdexcept>
#include <atomic>

Go to the source code of this file.

Functions

std::string toUpper (const std::string &str)

Function Documentation

◆ toUpper()

std::string toUpper ( const std::string & str)

Definition at line 49 of file IOVSvcTool.cxx.

49 {
50 const char *cstr = str.c_str();
51 std::string str2("");
52 for (unsigned int i=0; i < str.length(); ++i) {
53 str2 += toupper(*(cstr+i));
54 }
55
56 return str2;
57}