ATLAS Offline Software
Loading...
Searching...
No Matches
StoreGateSvc.cxx File Reference
#include "GaudiKernel/IIncidentSvc.h"
#include "AthenaKernel/errorcheck.h"
#include "StoreGate/StoreClearedIncident.h"
#include "AthAllocators/ArenaHeader.h"
#include "StoreGate/StoreGateSvc.h"
#include "StoreGate/tools/SGImplSvc.h"
#include "SGTools/DataStore.h"
#include "Gaudi/Interfaces/IOptionsSvc.h"
#include "GaudiKernel/IAppMgrUI.h"
#include <fstream>
#include <algorithm>

Go to the source code of this file.

Functions

void SG_dump (StoreGateSvc *sg)
 These are intended to be easy to call from the debugger.
void SG_dump (StoreGateSvc *sg, const char *fname)

Function Documentation

◆ SG_dump() [1/2]

void SG_dump ( StoreGateSvc * sg)

These are intended to be easy to call from the debugger.

Definition at line 519 of file StoreGateSvc.cxx.

520{
521 std::cout << sg->dump() << "\n";
522}
std::string dump() const
dump objects in store.

◆ SG_dump() [2/2]

void SG_dump ( StoreGateSvc * sg,
const char * fname )

Definition at line 524 of file StoreGateSvc.cxx.

525{
526 std::ofstream f (fname);
527 f << sg->dump() << "\n";
528 f.close();
529}