GSI Object Oriented Online Offline (Go4) GO4-6.4.0
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
TGo4HDF5Store Class Reference

Event store which fills entries to a dataset in a hdf5 formatted file. More...

#include <TGo4HDF5Store.h>

+ Inheritance diagram for TGo4HDF5Store:

Public Member Functions

 TGo4HDF5Store ()
 
 TGo4HDF5Store (const char *name, UInt_t flags)
 
 TGo4HDF5Store (TGo4HDF5StoreParameter *par)
 
virtual ~TGo4HDF5Store ()
 
Int_t Store (TFolder *fold) override
 Saves a complete objects folder correlated with the current event into the storage.
 
Int_t Store (TGo4Condition *conny) override
 Saves a condition correlated with the current event into the storage.
 
Int_t Store (TGo4EventElement *event) override
 Stores eventelement event into the storage implementation.
 
Int_t Store (TGo4Fitter *fitter) override
 Saves a fitter correlated with the current event into the storage.
 
Int_t Store (TGo4Parameter *cali) override
 Saves a calibration object correlated with the current event into the storage.
 
- Public Member Functions inherited from TGo4EventStore
 TGo4EventStore ()
 
 TGo4EventStore (const char *name)
 
virtual ~TGo4EventStore ()
 
void Clear (Option_t *opt="") override
 We overwrite the default TNamed::Clear that would erase our name and title!
 
virtual TTree * GetTree ()
 Access to a tree that might belong to this storage implementation.
 
- Public Member Functions inherited from TGo4HDF5Adapter
 TGo4HDF5Adapter ()
 
virtual ~TGo4HDF5Adapter ()
 

Protected Member Functions

void BuildDataSet (TGo4EventElement *event) override
 initialize dataset from event structure
 
void OpenFile (const char *name=nullptr) override
 opens the hdf5 file depending on the setup
 
void WriteToStore (TNamed *ob)
 used by all Store methods to write with referencing event number in name
 
- Protected Member Functions inherited from TGo4HDF5Adapter
void BuildDataType (TGo4EventElement *event, TGo4HDF5DataHandle *parent=nullptr, Int_t index=0)
 Prepare data type from event structure for hdf5.
 
virtual void CloseFile ()
 opens the hdf5 file depending on the setup
 
UInt_t ConvertFileMode (Go4_H5_File_Flags flags)
 Convert common go4 filemode flags to hdf5 flags:
 
virtual void DeleteDataSet ()
 delete dataset resource
 
size_t ScanEventSize (TGo4EventElement *event)
 evaluate total memory size of event object regarding composite subevents
 

Additional Inherited Members

- Static Public Member Functions inherited from TGo4HDF5Adapter
static void AddSubHandle (TGo4HDF5DataHandle *handle, const char *name, const char *type, size_t size, size_t memberoffset, const char *membername, const char *classname, TClass *valueclass)
 Add subhandle to handle that represents a contained collection.
 
static void FillTypeInfo (TGo4HDF5DataHandle *handle, const char *membername, const char *memtypename, size_t memberoffset=0, Int_t arraydim=0, TDataMember *member=nullptr)
 evaluate h5 type information for basic types of memtypename
 
static void FillTypeInfo (TGo4HDF5DataHandle *handle, TClass *rootclass, const char *basename=nullptr)
 evaluate h5 type information from root class streamer
 
- Static Public Attributes inherited from TGo4HDF5Adapter
static const char * fgcFILESUF = ".h5"
 Standard suffix for file name.
 
- Protected Types inherited from TGo4EventStore
enum  { fguTXTLEN = 256 }
 text length More...
 
- Protected Attributes inherited from TGo4HDF5Adapter
Bool_t fbDataSetExists {kFALSE}
 True if branch already exists.
 
hsize_t fiFillCount {0}
 counter of filled events.
 
UInt_t fiFlags {0}
 remember file property flags.
 
TGo4EventElementfxEvent {nullptr}
 Points to event structure to be filled into dataset.
 
H5::H5File * fxFile {nullptr}
 the currently open hdf5 file
 
TGo4HDF5DataHandlefxHandle {nullptr}
 handle object to recursively treat the io of nested event components
 

Detailed Description

Event store which fills entries to a dataset in a hdf5 formatted file.

  • Author
    J. Adamczewski-Musch
    Since
    12/2018

Definition at line 32 of file TGo4HDF5Store.h.

Constructor & Destructor Documentation

◆ TGo4HDF5Store() [1/3]

TGo4HDF5Store::TGo4HDF5Store ( )

◆ TGo4HDF5Store() [2/3]

TGo4HDF5Store::TGo4HDF5Store ( const char * name,
UInt_t flags )

◆ TGo4HDF5Store() [3/3]

◆ ~TGo4HDF5Store()

TGo4HDF5Store::~TGo4HDF5Store ( )
virtual

Member Function Documentation

◆ BuildDataSet()

void TGo4HDF5Store::BuildDataSet ( TGo4EventElement * event)
overrideprotectedvirtual

initialize dataset from event structure

Implements TGo4HDF5Adapter.

Definition at line 101 of file TGo4HDF5Store.cxx.

References TGo4HDF5Adapter::BuildDataType(), TGo4Log::Error(), TGo4HDF5Adapter::fbDataSetExists, TGo4HDF5Adapter::fxFile, and TGo4HDF5Adapter::fxHandle.

Referenced by Store().

◆ OpenFile()

void TGo4HDF5Store::OpenFile ( const char * name = nullptr)
overrideprotectedvirtual

opens the hdf5 file depending on the setup

Implements TGo4HDF5Adapter.

Definition at line 74 of file TGo4HDF5Store.cxx.

References TGo4HDF5Adapter::CloseFile(), TGo4Log::Error(), TGo4HDF5Adapter::fgcFILESUF, TGo4HDF5Adapter::fiFlags, TGo4HDF5Adapter::fxFile, and TGo4Log::Info().

Referenced by TGo4HDF5Store(), and TGo4HDF5Store().

◆ Store() [1/5]

Int_t TGo4HDF5Store::Store ( TFolder * fold)
overridevirtual

Saves a complete objects folder correlated with the current event into the storage.

Reimplemented from TGo4EventStore.

Definition at line 161 of file TGo4HDF5Store.cxx.

References WriteToStore().

◆ Store() [2/5]

Int_t TGo4HDF5Store::Store ( TGo4Condition * conny)
overridevirtual

Saves a condition correlated with the current event into the storage.

Reimplemented from TGo4EventStore.

Definition at line 149 of file TGo4HDF5Store.cxx.

References WriteToStore().

◆ Store() [3/5]

Int_t TGo4HDF5Store::Store ( TGo4EventElement * event)
overridevirtual

Stores eventelement event into the storage implementation.

May be a file, a root tree, a socket to a viewer...

Implements TGo4EventStore.

Definition at line 122 of file TGo4HDF5Store.cxx.

References BuildDataSet(), TGo4Log::Error(), TGo4HDF5Adapter::fiFillCount, TGo4HDF5Adapter::fxEvent, TGo4HDF5Adapter::fxFile, TGo4HDF5Adapter::fxHandle, and GO4TRACE.

◆ Store() [4/5]

Int_t TGo4HDF5Store::Store ( TGo4Fitter * fitter)
overridevirtual

Saves a fitter correlated with the current event into the storage.

Reimplemented from TGo4EventStore.

Definition at line 155 of file TGo4HDF5Store.cxx.

References WriteToStore().

◆ Store() [5/5]

Int_t TGo4HDF5Store::Store ( TGo4Parameter * cali)
overridevirtual

Saves a calibration object correlated with the current event into the storage.

Reimplemented from TGo4EventStore.

Definition at line 143 of file TGo4HDF5Store.cxx.

References WriteToStore().

◆ WriteToStore()

void TGo4HDF5Store::WriteToStore ( TNamed * ob)
protected

used by all Store methods to write with referencing event number in name

Definition at line 167 of file TGo4HDF5Store.cxx.

References TGo4Log::Info().

Referenced by Store(), Store(), Store(), and Store().


The documentation for this class was generated from the following files: