h5geo 0.4.0
C++17 and python API to work with geo-data (seismic, wells, maps, other in process) based on HDF5. Aimed at geoscientists and developers.
Loading...
Searching...
No Matches
h5seiscontainer.h
1#ifndef H5SEISCONTAINER_H
2#define H5SEISCONTAINER_H
3
4#include "h5geo_export.h"
5#include "h5basecontainer.h"
6
7#include <memory>
8
9class H5Seis;
10
15{
16protected:
17 virtual ~H5SeisContainer() = default;
18
19public:
21 virtual H5Seis* openSeis(
22 const std::string& name) = 0;
24 virtual H5Seis* openSeis(
25 h5gt::Group group) = 0;
28 std::string& name,
29 H5SeisParam& p,
30 h5geo::CreationType createFlag) = 0;
33 h5gt::Group group,
34 H5SeisParam& p,
35 h5geo::CreationType createFlag) = 0;
36};
37
38using H5SeisCnt_ptr = std::unique_ptr<H5SeisContainer, h5geo::ObjectDeleter>;
39
40#endif // H5SEISCONTAINER_H
Base class for geo-containers.
Definition h5basecontainer.h:9
A container built around HDF5 file and used for storing and manipulating H5Seis objects.
Definition h5seiscontainer.h:15
virtual H5Seis * createSeis(h5gt::Group group, H5SeisParam &p, h5geo::CreationType createFlag)=0
Create H5Seis.
virtual H5Seis * openSeis(h5gt::Group group)=0
Open H5Seis.
virtual H5Seis * createSeis(std::string &name, H5SeisParam &p, h5geo::CreationType createFlag)=0
Create H5Seis.
virtual H5Seis * openSeis(const std::string &name)=0
Open H5Seis.
Provides API to work with seismic.
Definition h5seis.h:33
CreationType
Definition h5enum.h:468
Class for creating H5Seis.
Definition h5base.h:165