Fesapi 2.9.0.1
This project provides C++ classes which allow an easy access in import and export to the Energistics standards.
Loading...
Searching...
No Matches
Public Member Functions | Static Public Attributes | List of all members
resqml2::StructuralOrganizationInterpretation Class Referenceabstract

One of the main types of RESQML organizations, this class gathers boundary interpretations (e.g., horizons and faults) plus frontier features and their relationships (contacts interpretations), which when taken together define the structure of a part of the earth. More...

#include <StructuralOrganizationInterpretation.h>

Inheritance diagram for resqml2::StructuralOrganizationInterpretation:
resqml2::AbstractOrganizationInterpretation resqml2::AbstractFeatureInterpretation

Public Member Functions

virtual ~StructuralOrganizationInterpretation ()=default
 
bool isStructural () const final
 
virtual void pushBackFaultInterpretation (FaultInterpretation *faultInterpretation)=0
 
virtual unsigned int getFaultInterpretationCount () const =0
 
virtual common::DataObjectReference getFaultInterpretationDor (unsigned int index) const =0
 
FaultInterpretationgetFaultInterpretation (unsigned int index) const
 
virtual void pushBackHorizonInterpretation (HorizonInterpretation *horizonInterpretation, int stratigraphicRank)=0
 
virtual unsigned int getHorizonInterpretationCount () const =0
 
virtual common::DataObjectReference getHorizonInterpretationDor (unsigned int index) const =0
 
HorizonInterpretationgetHorizonInterpretation (unsigned int index) const
 
virtual void pushBackTopFrontierInterpretation (AbstractFeatureInterpretation *topFrontierInterpretation)=0
 
virtual unsigned int getTopFrontierInterpretationCount () const =0
 
virtual common::DataObjectReference getTopFrontierInterpretationDor (unsigned int index) const =0
 
AbstractFeatureInterpretationgetTopFrontierInterpretation (unsigned int index) const
 
virtual void pushBackBottomFrontierInterpretation (AbstractFeatureInterpretation *bottomFrontierInterpretation)=0
 
virtual unsigned int getBottomFrontierInterpretationCount () const =0
 
virtual common::DataObjectReference getBottomFrontierInterpretationDor (unsigned int index) const =0
 
AbstractFeatureInterpretationgetBottomFrontierInterpretation (unsigned int index) const
 
virtual void pushBackSideFrontierInterpretation (AbstractFeatureInterpretation *sideFrontierInterpretation)=0
 
virtual unsigned int getSideFrontierInterpretationCount () const =0
 
virtual common::DataObjectReference getSideFrontierInterpretationDor (unsigned int index) const =0
 
AbstractFeatureInterpretationgetSideFrontierInterpretation (unsigned int index) const
 
virtual std::string getXmlTag () const final
 
- Public Member Functions inherited from resqml2::AbstractOrganizationInterpretation
virtual ~AbstractOrganizationInterpretation ()=default
 
virtual bool isStratigraphic () const
 
virtual bool isRockFluid () const
 
void pushBackBinaryContact (AbstractFeatureInterpretation *subject, gsoap_eml2_3::resqml22__ContactVerb verb, AbstractFeatureInterpretation *directObject)
 
void pushBackBinaryContact (AbstractFeatureInterpretation *subject, gsoap_eml2_3::resqml22__ContactVerb verb, AbstractFeatureInterpretation *directObject, AbstractFeatureInterpretation *partOf)
 
void pushBackBinaryContact (AbstractFeatureInterpretation *subject, gsoap_eml2_3::resqml22__ContactVerb verb, AbstractFeatureInterpretation *directObject, gsoap_resqml2_0_1::resqml20__ContactSide directObjectQualifier)
 
void pushBackBinaryContact (AbstractFeatureInterpretation *subject, gsoap_resqml2_0_1::resqml20__ContactSide subjectQualifier, gsoap_eml2_3::resqml22__ContactVerb verb, AbstractFeatureInterpretation *directObject, gsoap_resqml2_0_1::resqml20__ContactSide directObjectQualifier)
 
- Public Member Functions inherited from resqml2::AbstractFeatureInterpretation
virtual ~AbstractFeatureInterpretation ()=default
 
common::DataObjectReference getInterpretedFeatureDor () const
 
void setInterpretedFeature (AbstractFeature *feature)
 
AbstractFeaturegetInterpretedFeature () const
 
gsoap_resqml2_0_1::resqml20__Domain initDomain (gsoap_resqml2_0_1::resqml20__Domain defaultDomain) const
 
gsoap_resqml2_0_1::resqml20__Domain getDomain () const
 
std::vector< AbstractRepresentation * > getRepresentationSet () const
 
uint64_t getRepresentationCount () const noexcept
 
AbstractRepresentationgetRepresentation (uint64_t index) const
 
std::vector< GridConnectionSetRepresentation * > getGridConnectionSetRepresentationSet () const
 

Static Public Attributes

static const char * XML_TAG
 

Detailed Description

One of the main types of RESQML organizations, this class gathers boundary interpretations (e.g., horizons and faults) plus frontier features and their relationships (contacts interpretations), which when taken together define the structure of a part of the earth.

Constructor & Destructor Documentation

◆ ~StructuralOrganizationInterpretation()

virtual resqml2::StructuralOrganizationInterpretation::~StructuralOrganizationInterpretation ( )
virtualdefault

Destructor does nothing since the memory is managed by the gSOAP context.

Member Function Documentation

◆ getBottomFrontierInterpretation()

AbstractFeatureInterpretation * resqml2::StructuralOrganizationInterpretation::getBottomFrontierInterpretation ( unsigned int index) const

Gets a given bottom frontier interpretation.

Exceptions
std::out_of_rangeIf index >= getBottomFrontierInterpretationCount().
Parameters
indexZero-based index of the bottom frontier interpretation we look for.
Returns
The bottom frontier interpretation at position index.

◆ getBottomFrontierInterpretationCount()

virtual unsigned int resqml2::StructuralOrganizationInterpretation::getBottomFrontierInterpretationCount ( ) const
pure virtual

Gets the bottom frontier interpretations count.

Exceptions
std::range_errorIf the bottom frontier interpretation count is strictly greater than unsigned int max.
Returns
The bottom frontier interpretations count.

◆ getBottomFrontierInterpretationDor()

virtual common::DataObjectReference resqml2::StructuralOrganizationInterpretation::getBottomFrontierInterpretationDor ( unsigned int index) const
pure virtual

Gets the DOR of a given bottom frontier interpretation.

Exceptions
std::out_of_rangeIf index >= getBottomFrontierInterpretationCount().
Parameters
indexZero-based index of the bottom frontier interpretation for which we look for the DOR.
Returns
The DOR of the bottom frontier interpretation at position index.

◆ getFaultInterpretation()

FaultInterpretation * resqml2::StructuralOrganizationInterpretation::getFaultInterpretation ( unsigned int index) const

Gets a given fault interpretation.

Exceptions
std::out_of_rangeIf index >= getFaultInterpretationCount().
Parameters
indexZero-based index of the fault interpretation we look for.
Returns
The fault interpretation at position index.

◆ getFaultInterpretationCount()

virtual unsigned int resqml2::StructuralOrganizationInterpretation::getFaultInterpretationCount ( ) const
pure virtual

Gets the fault interpretations count.

Exceptions
std::range_errorIf the fault interpretation count is strictly greater than unsigned int max.
Returns
The fault interpretations count.

◆ getFaultInterpretationDor()

virtual common::DataObjectReference resqml2::StructuralOrganizationInterpretation::getFaultInterpretationDor ( unsigned int index) const
pure virtual

Gets the DOR of a given fault interpretation.

Exceptions
std::out_of_rangeIf index >= getFaultInterpretationCount().
Parameters
indexZero-based index of the fault interpretation for which we look for the DOR.
Returns
The DOR of the fault interpretation at position index.

◆ getHorizonInterpretation()

HorizonInterpretation * resqml2::StructuralOrganizationInterpretation::getHorizonInterpretation ( unsigned int index) const

Gets a given horizon interpretation.

Exceptions
std::out_of_rangeIf index >= getHorizonInterpretationCount().
Parameters
indexZero-based index of the horizon interpretation we look for.
Returns
The horizon interpretation at position index.

◆ getHorizonInterpretationCount()

virtual unsigned int resqml2::StructuralOrganizationInterpretation::getHorizonInterpretationCount ( ) const
pure virtual

Gets the horizon interpretations count.

Exceptions
std::range_errorIf the horizon interpretation count is strictly greater than unsigned int max.
Returns
The horizon interpretations count.

◆ getHorizonInterpretationDor()

virtual common::DataObjectReference resqml2::StructuralOrganizationInterpretation::getHorizonInterpretationDor ( unsigned int index) const
pure virtual

Gets the DOR of a given horizon interpretation.

Exceptions
std::out_of_rangeIf index >= getHorizonInterpretationCount().
Parameters
indexZero-based index of the horizon interpretation for which we look for the DOR.
Returns
The DOR of the horizon interpretation at position index.

◆ getSideFrontierInterpretation()

AbstractFeatureInterpretation * resqml2::StructuralOrganizationInterpretation::getSideFrontierInterpretation ( unsigned int index) const

Gets a given side frontier interpretation.

Exceptions
std::out_of_rangeIf index >= getSideFrontierInterpretationCount().
Parameters
indexZero-based index of the side frontier interpretation we look for.
Returns
The side frontier interpretation at position index.

◆ getSideFrontierInterpretationCount()

virtual unsigned int resqml2::StructuralOrganizationInterpretation::getSideFrontierInterpretationCount ( ) const
pure virtual

Gets the side frontier interpretations count.

Exceptions
std::range_errorIf the side frontier interpretation count is strictly greater than unsigned int max.
Returns
The side frontier interpretations count.

◆ getSideFrontierInterpretationDor()

virtual common::DataObjectReference resqml2::StructuralOrganizationInterpretation::getSideFrontierInterpretationDor ( unsigned int index) const
pure virtual

Gets the DOR of a given side frontier interpretation.

Exceptions
std::out_of_rangeIf index >= getSideFrontierInterpretationCount().
Parameters
indexZero-based index of the side frontier interpretation for which we look for the DOR.
Returns
The DOR of the side frontier interpretation at position index.

◆ getTopFrontierInterpretation()

AbstractFeatureInterpretation * resqml2::StructuralOrganizationInterpretation::getTopFrontierInterpretation ( unsigned int index) const

Gets a given top frontier interpretation.

Exceptions
std::out_of_rangeIf index >= getTopFrontierInterpretationCount().
Parameters
indexZero-based index of the top frontier interpretation we look for.
Returns
The top frontier interpretation at position index.

◆ getTopFrontierInterpretationCount()

virtual unsigned int resqml2::StructuralOrganizationInterpretation::getTopFrontierInterpretationCount ( ) const
pure virtual

Gets the top frontier interpretations count.

Exceptions
std::range_errorIf the top frontier interpretation count is strictly greater than unsigned int max.
Returns
The top frontier interpretations count.

◆ getTopFrontierInterpretationDor()

virtual common::DataObjectReference resqml2::StructuralOrganizationInterpretation::getTopFrontierInterpretationDor ( unsigned int index) const
pure virtual

Gets the DOR of a given top frontier interpretation.

Exceptions
std::out_of_rangeIf index >= getTopFrontierInterpretationCount().
Parameters
indexZero-based index of the top frontier interpretation for which we look for the DOR.
Returns
The DOR of the top frontier interpretation at position index.

◆ isStructural()

bool resqml2::StructuralOrganizationInterpretation::isStructural ( ) const
inlinefinalvirtual

Indicates if this instance is a structural one. Needed by SWIG wrappers.

Reimplemented from resqml2::AbstractOrganizationInterpretation.

◆ pushBackBottomFrontierInterpretation()

virtual void resqml2::StructuralOrganizationInterpretation::pushBackBottomFrontierInterpretation ( AbstractFeatureInterpretation * bottomFrontierInterpretation)
pure virtual

Adds a frontier interpretation to this structural organization interpretation as a bottom.

Exceptions
std::invalid_argumentIf bottomFrontierInterpretation == nullptr.
Parameters
[in]bottomFrontierInterpretationA bottom frontier interpretation.

◆ pushBackFaultInterpretation()

virtual void resqml2::StructuralOrganizationInterpretation::pushBackFaultInterpretation ( FaultInterpretation * faultInterpretation)
pure virtual

Adds a fault interpretation to this structural organization interpretation.

Exceptions
std::invalid_argumentIf faultInterpretation == nullptr.
Parameters
[in]faultInterpretationA fault interpretation.

◆ pushBackHorizonInterpretation()

virtual void resqml2::StructuralOrganizationInterpretation::pushBackHorizonInterpretation ( HorizonInterpretation * horizonInterpretation,
int stratigraphicRank )
pure virtual

Adds a horizon interpretation at a given rank of this structural organization interpretation.

Exceptions
std::invalid_argumentIf horizonInterpretation == nullptr.
Parameters
[in]horizonInterpretationA horizon interpretation.
stratigraphicRankThe rank of the horizon interpretation within this structural organization.

◆ pushBackSideFrontierInterpretation()

virtual void resqml2::StructuralOrganizationInterpretation::pushBackSideFrontierInterpretation ( AbstractFeatureInterpretation * sideFrontierInterpretation)
pure virtual

Adds a frontier interpretation to this structural organization interpretation as a side.

Exceptions
std::invalid_argumentIf sideFrontierInterpretation == nullptr.
Parameters
[in]sideFrontierInterpretationA side frontier interpretation.

◆ pushBackTopFrontierInterpretation()

virtual void resqml2::StructuralOrganizationInterpretation::pushBackTopFrontierInterpretation ( AbstractFeatureInterpretation * topFrontierInterpretation)
pure virtual

Adds a frontier interpretation to this structural organization interpretation as a top.

Exceptions
std::invalid_argumentIf topFrontierInterpretation == nullptr.
Parameters
[in]topFrontierInterpretationA top frontier interpretation.

Member Data Documentation

◆ XML_TAG

const char* resqml2::StructuralOrganizationInterpretation::XML_TAG
static

The standard XML tag without XML namespace for serializing this data object.


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