Geophysical Inversion and Modelling Library v1.5.4
Loading...
Searching...
No Matches
GIMLI::DataContainer Class Reference

DataContainer to store, load and save data in the GIMLi unified data format. More...

#include <datacontainer.h>

+ Inheritance diagram for GIMLI::DataContainer:
+ Collaboration diagram for GIMLI::DataContainer:

Public Member Functions

 DataContainer ()
 
 DataContainer (const std::string &fileName, bool sensorIndicesFromOne=true, bool removeInvalid=true)
 
 DataContainer (const std::string &fileName, const std::string &sensorTokens, bool sensorIndicesFromOne=true, bool removeInvalid=true)
 
 DataContainer (const DataContainer &data)
 
virtual ~DataContainer ()
 
DataContaineroperator= (const DataContainer &data)
 
const RVectoroperator() (const std::string &token) const
 
RVectoroperator() (const std::string &token)
 
const RVectoroperator[] (const std::string &token) const
 
RVectoroperator[] (const std::string &token)
 
void initDefaults ()
 
virtual void init ()
 
virtual void initTokenTranslator ()
 
bool haveTranslationForAlias (const std::string &alias) const
 
std::string translateAlias (const std::string &alias) const
 
virtual void clear ()
 
Index size () const
 
const std::map< std::string, RVector > & dataMap () const
 
const std::map< std::string, std::string > & dataDescription () const
 
void add (const DataContainer &data, double snap=1e-3)
 
void setSensorPositions (const RVector &sensors)
 
void setSensorPositions (const PosVector &sensors)
 
const PosVectorsensorPositions () const
 
void setSensorPosition (Index i, const RVector3 &pos)
 
const RVector3sensorPosition (double i) const
 
const R3Vectorsensors () const
 
const RVector3sensor (Index i) const
 
void setSensor (Index i, const RVector3 &pos)
 
SIndex createSensor (const RVector3 &pos, double tolerance=1e-3)
 
Index sensorCount () const
 
void registerSensorIndex (const std::string &token)
 
bool isSensorIndex (const std::string &token) const
 
const std::set< std::string > sensorIdx () const
 
void setSensorIndexOnFileFromOne (bool indexFromOne)
 
bool sensorIndexOnFileFromOne () const
 
IndexArray findSensorIndex (const RVector &d) const
 
void markInvalidSensorIndices ()
 
void removeSensorIdx (Index idx)
 
void removeSensorIdx (const IndexArray &idx)
 
const std::string & formatStringSensors () const
 
void sortSensorsX (bool incX=true, bool incY=true, bool incZ=true)
 
void translate (const RVector3 &trans)
 
void scale (const RVector3 &scale)
 
IndexArray dataIndex ()
 
IndexArray sortSensorsIndex ()
 
void setAdditionalPoints (const PosVector &a)
 
const PosVectoradditionalPoints () const
 
void setAdditionalPoint (Index i, const Pos &p)
 
void addAdditionalPoint (const Pos &p)
 
bool allNonZero (const std::string &token) const
 
bool haveData (const std::string &token) const
 
bool exists (const std::string &token) const
 
const std::map< std::string, std::string > & tokenTranslator () const
 
virtual int load (const std::string &fileName, bool sensorIndicesFromOne=true, bool removeInvalid=true)
 
virtual int save (const std::string &fileName, const std::string &fmtData, const std::string &fmtSensor, bool noFilter=false, bool verbose=false) const
 
int save (const std::string &fileName, const std::string &formatData="all", bool noFilter=false, bool verbose=false) const
 
virtual int write (std::fstream &os, const std::string &fmtData, const std::string &fmtSensor, bool noFilter=false, bool verbose=false) const
 
void showInfos () const
 
void resize (Index size)
 
std::string tokenList (bool withAnnotation=true) const
 
void add (const std::string &token, const RVector &data, const std::string &description="")
 
void add (const std::string &token)
 
void set (const std::string &token, const RVector &data)
 
const RVectorget (const std::string &token) const
 
const IndexArray id (const std::string &token) const
 
RVectorref (const std::string &token)
 
void setDataDescription (const std::string &token, const std::string &description)
 
std::string dataDescription (const std::string &token) const
 
virtual void remove (const IndexArray &idx)
 
void remove (const BVector &bvec)
 
void markValid (const BVector &bvec, bool valid=true)
 
void markValid (const IndexArray &idx, bool valid=true)
 
void markValid (Index idx, bool valid=true)
 
void markInvalid (const BVector &bvec)
 
void markInvalid (const IndexArray &idx)
 
void markInvalid (Index idx)
 
void checkDataValidity (bool remove=true)
 
virtual void checkDataValidityLocal ()
 
void removeInvalid ()
 
void removeUnusedSensors (bool verbose=false)
 
void setInputFormatString (const std::string &inputFormatString)
 
const std::string & inputFormatString () const
 
Index hash () const
 

Protected Member Functions

virtual void copy_ (const DataContainer &data)
 

Protected Attributes

std::string inputFormatStringSensors_
 
std::string inputFormatString_
 
std::map< std::string, RVectordataMap_
 Data map.
 
PosVector sensorPoints_
 Sensor positions.
 
std::set< std::string > dataSensorIdx_
 Data field that is sensor index.
 
std::map< std::string, std::string > dataDescription_
 Description for the data map entries.
 
PosVector topoPoints_
 
std::map< std::string, std::string > tT_
 
bool sensorIndexOnFileFromOne_
 

Detailed Description

DataContainer to store, load and save data in the GIMLi unified data format.

DataContainer to store, load and save data in the GIMLi unified data format. The DataContainer contains a data map that holds the data itself. Each map entry can be identified by tokens. By default there is a data field with the token 'valid' to mark the validity of the data. There is also a vector of unique sensor positions that holds sensor locations and a set of additional points, e.g., topographic positions. A vector of indices to the sensor positions can be defined for each datum. e.g., Store an index-vector 'a' to the first current electrode 'A' of a ERT measurement. If you need a special DataContainer you should derive a child and specify a token translator and sensor index entries. There is also a unit test for the DataContainer that may help to understand what is it good for.

Constructor & Destructor Documentation

◆ DataContainer() [1/4]

GIMLI::DataContainer::DataContainer ( )

◆ DataContainer() [2/4]

GIMLI::DataContainer::DataContainer ( const std::string & fileName,
bool sensorIndicesFromOne = true,
bool removeInvalid = true )

Constructor, builds a data container and fills the data from a file. See load.

Parameters
fileNameString of the file name

References initDefaults(), load(), and removeInvalid().

◆ DataContainer() [3/4]

GIMLI::DataContainer::DataContainer ( const std::string & fileName,
const std::string & sensorTokens,
bool sensorIndicesFromOne = true,
bool removeInvalid = true )

Constructor, builds a data container, registers sensor indices and fills the data from a file. See load.

Parameters
fileName String of the file name

References initDefaults(), load(), registerSensorIndex(), removeInvalid(), and tokenList().

◆ DataContainer() [4/4]

GIMLI::DataContainer::DataContainer ( const DataContainer & data)

Copy Constructor

References DataContainer(), and initDefaults().

◆ ~DataContainer()

GIMLI::DataContainer::~DataContainer ( )
virtual

Destructor.

References clear(), and initDefaults().

Member Function Documentation

◆ add() [1/3]

void GIMLI::DataContainer::add ( const DataContainer & data,
double snap = 1e-3 )

Add data to this DataContainer and snap new sensor positions by tolerance snap. Data fields from this data are preserved.

References createSensor(), DataContainer(), dataMap_, get(), id(), isSensorIndex(), resize(), sensorCount(), sensorPositions(), and size().

◆ add() [2/3]

void GIMLI::DataContainer::add ( const std::string & token)
inline

Add new data field

References add(), and size().

Referenced by add().

◆ add() [3/3]

void GIMLI::DataContainer::add ( const std::string & token,
const RVector & data,
const std::string & description = "" )

Add new data field with optional description. Throws an exception if the data field size is not the same size of the DataContainer.

Parameters
tokenString to identify the data
dataRVector of the data
descriptionString that describe the data

References set(), and setDataDescription().

◆ addAdditionalPoint()

void GIMLI::DataContainer::addAdditionalPoint ( const Pos & p)
inline

Push back additional point p.

References topoPoints_.

◆ additionalPoints()

const PosVector & GIMLI::DataContainer::additionalPoints ( ) const
inline

Return the additional points.

References topoPoints_.

◆ allNonZero()

bool GIMLI::DataContainer::allNonZero ( const std::string & token) const
inline

Return true if token data exist and all elements != 0.0. Return false if the data contains one zero value.

References dataMap_, and exists().

Referenced by GIMLI::DataContainerERT::checkDataValidityLocal(), and GIMLI::getComplexData().

◆ checkDataValidity()

void GIMLI::DataContainer::checkDataValidity ( bool remove = true)

Mark data as invalid if they contain nan or inf. Call the virtual method checkData. If remove is set, invalid data will be removed.

References checkDataValidityLocal(), dataMap_, GIMLI::find(), get(), isSensorIndex(), markInvalid(), remove(), removeInvalid(), GIMLI::saveVec(), sensorCount(), and size().

Referenced by load().

◆ checkDataValidityLocal()

virtual void GIMLI::DataContainer::checkDataValidityLocal ( )
inlinevirtual
  • Virtual method with some data validity rules. Wrong data should be marked invalid here.

Reimplemented in GIMLI::DataContainerERT.

Referenced by checkDataValidity().

◆ clear()

void GIMLI::DataContainer::clear ( )
virtual

Clear the container, remove all sensor locations and data.

References dataMap_, initDefaults(), sensorPoints_, and topoPoints_.

Referenced by load(), and ~DataContainer().

◆ createSensor()

SIndex GIMLI::DataContainer::createSensor ( const RVector3 & pos,
double tolerance = 1e-3 )

Create a valid sensor at a given position and returns the id of the sensor. Is there already a sensor at the given position NO new sensor will be created. Atm. brute force search with a snapping distance of tolerance is done.

Parameters
posRVector3 of the sensor position
toleranceDouble of the snapping tolerance

References GIMLI::Pos::distance(), and sensorPoints_.

Referenced by add(), and load().

◆ dataDescription() [1/2]

const std::map< std::string, std::string > & GIMLI::DataContainer::dataDescription ( ) const
inline

Return the complete data descriptions map

References dataDescription_.

◆ dataDescription() [2/2]

std::string GIMLI::DataContainer::dataDescription ( const std::string & token) const

Returns a copy of the description string for the specified data field. Return empty string if the data doesn't exist.

Parameters
tokenString that identify the data.

References dataDescription_, and exists().

◆ dataIndex()

IndexArray GIMLI::DataContainer::dataIndex ( )

Return unique sortable data index, based on sensor index. $$id_i = \sum_j sensorIndex[i](j) * nSensors^j$$

References dataMap_, dataSensorIdx_, sensorCount(), and size().

Referenced by sortSensorsIndex().

◆ dataMap()

const std::map< std::string, RVector > & GIMLI::DataContainer::dataMap ( ) const
inline

Return the complete data map as read-only map

References dataMap_.

◆ exists()

bool GIMLI::DataContainer::exists ( const std::string & token) const
inline

Return true if the data with the token exist.

References dataMap_.

Referenced by allNonZero(), dataDescription(), GIMLI::getComplexData(), haveData(), registerSensorIndex(), and setDataDescription().

◆ findSensorIndex()

IndexArray GIMLI::DataContainer::findSensorIndex ( const RVector & d) const

Translate a RVector into a valid IndexArray for the corresponding sensors.

References sensorCount().

◆ formatStringSensors()

const std::string & GIMLI::DataContainer::formatStringSensors ( ) const
inline

Return the input format string for the sensors.

◆ get()

const RVector & GIMLI::DataContainer::get ( const std::string & token) const

Read only access to a data field. Throws an exception if token data don't exist.

Parameters
tokenString to identify the data

References dataMap_, and tokenList().

Referenced by add(), GIMLI::DataContainerERT::averageDuplicateData(), checkDataValidity(), GIMLI::DataContainerERT::checkDataValidityLocal(), operator()(), operator[](), removeInvalid(), and GIMLI::TTModellingWithOffset::TTModellingWithOffset().

◆ hash()

Index GIMLI::DataContainer::hash ( ) const

Return a unique hash value.

References dataMap_, sensorPoints_, and topoPoints_.

◆ haveData()

bool GIMLI::DataContainer::haveData ( const std::string & token) const
inline

Return true if token data exist and at least one value is != 0.0. Return false if the data contains ONLY zero values.

References dataMap_, exists(), and GIMLI::zero().

Referenced by GIMLI::DataContainerERT::checkDataValidityLocal().

◆ haveTranslationForAlias()

bool GIMLI::DataContainer::haveTranslationForAlias ( const std::string & alias) const

Return true if there is a valid translation for the token

References tT_.

Referenced by load().

◆ id()

const IndexArray GIMLI::DataContainer::id ( const std::string & token) const

Return a copy of the index data field as IndexArray. Throws an exception if token index don't exist.

Parameters
tokenString to identify the index data field

References dataMap_, isSensorIndex(), and tokenList().

Referenced by add(), removeUnusedSensors(), and sortSensorsX().

◆ init()

void GIMLI::DataContainer::init ( )
virtual

Specify the datacontainer for your needs. TODO Write example if someone wants to use this.

Reimplemented in GIMLI::DataContainerERT.

Referenced by initDefaults().

◆ initDefaults()

void GIMLI::DataContainer::initDefaults ( )

Init default data fields 'valid' and call virtual init method.

References dataMap_, init(), initTokenTranslator(), and sensorIndexOnFileFromOne_.

Referenced by clear(), DataContainer(), DataContainer(), DataContainer(), DataContainer(), and ~DataContainer().

◆ initTokenTranslator()

void GIMLI::DataContainer::initTokenTranslator ( )
virtual

Init a token translator map. store a map ['alias'] = 'token'. Only lowercase starting aliases are handled i.e. alias(power, u) map to token => u On request, the first char of the alias will converted to lowercase. e.g. translateToken('power') -> return 'u' translateToken('Power') -> return 'u' translateToken('u') -> return 'u' translateToken('U') -> return 'u' TODO Write example if someone use this

Reimplemented in GIMLI::DataContainerERT.

References tT_.

Referenced by initDefaults(), and GIMLI::DataContainerERT::initTokenTranslator().

◆ inputFormatString()

const std::string & GIMLI::DataContainer::inputFormatString ( ) const
inline

Return the token list of a previously loaded file.

Referenced by setInputFormatString().

◆ isSensorIndex()

bool GIMLI::DataContainer::isSensorIndex ( const std::string & token) const

◆ load()

int GIMLI::DataContainer::load ( const std::string & fileName,
bool sensorIndicesFromOne = true,
bool removeInvalid = true )
virtual

Loads the data from a file. See save for details on the fileformat. On default remove all invalid data that have been marked by checkDataValidity and checkDataValidityLocal.

References checkDataValidity(), clear(), createSensor(), dataMap_, haveTranslationForAlias(), isSensorIndex(), removeInvalid(), removeUnusedSensors(), resize(), scale(), sensorCount(), sensorIndexOnFileFromOne_, sensorPoints_, setSensorIndexOnFileFromOne(), size(), topoPoints_, translateAlias(), GIMLI::x(), GIMLI::y(), and GIMLI::z().

Referenced by DataContainer(), DataContainer(), and GIMLI::DataContainerERT::DataContainerERT().

◆ markInvalid() [1/3]

void GIMLI::DataContainer::markInvalid ( const BVector & bvec)
inline

Mark data invalid by index vector.

References GIMLI::find(), and markValid().

Referenced by checkDataValidity(), and GIMLI::DataContainerERT::checkDataValidityLocal().

◆ markInvalid() [2/3]

void GIMLI::DataContainer::markInvalid ( const IndexArray & idx)
inline

Mark data invalid by index vector.

References markValid().

◆ markInvalid() [3/3]

void GIMLI::DataContainer::markInvalid ( Index idx)
inline

Mark data invalid by index.

References markValid().

◆ markInvalidSensorIndices()

void GIMLI::DataContainer::markInvalidSensorIndices ( )

Mark all data invalid that use a sensor index greater than sensor count.

References dataMap_, GIMLI::find(), isSensorIndex(), and markValid().

◆ markValid() [1/3]

void GIMLI::DataContainer::markValid ( const BVector & bvec,
bool valid = true )
inline

Mark data valid by index vector. Shortcut for this->ref("valid")->setVal(bool vector, valid).

References dataMap_, and GIMLI::find().

Referenced by markInvalid(), markInvalid(), markInvalid(), markInvalidSensorIndices(), remove(), and removeSensorIdx().

◆ markValid() [2/3]

void GIMLI::DataContainer::markValid ( const IndexArray & idx,
bool valid = true )
inline

Mark data valid by index vector. Shortcut for this->ref("valid")->setVal(idx, valid).

References dataMap_.

◆ markValid() [3/3]

void GIMLI::DataContainer::markValid ( Index idx,
bool valid = true )
inline

Mark single data valid. this->ref("valid")->setVal(idx, valid).

References dataMap_.

◆ operator()() [1/2]

RVector & GIMLI::DataContainer::operator() ( const std::string & token)
inline

Return reference to the RVector at the data map associated to the token.

References ref().

◆ operator()() [2/2]

const RVector & GIMLI::DataContainer::operator() ( const std::string & token) const
inline

Return read-only reference to the RVector at the data map associated to the token.

References get().

◆ operator=()

DataContainer & GIMLI::DataContainer::operator= ( const DataContainer & data)

Copy constructor, assign a copy of data and return a reference to this DataContainer.

References DataContainer().

◆ operator[]() [1/2]

RVector & GIMLI::DataContainer::operator[] ( const std::string & token)
inline

Return reference to the RVector at the data map associated to the token.

References ref().

◆ operator[]() [2/2]

const RVector & GIMLI::DataContainer::operator[] ( const std::string & token) const
inline

Return read-only reference to the RVector at the data map associated to the token.

References get().

◆ ref()

RVector * GIMLI::DataContainer::ref ( const std::string & token)

Read/Write access via a pointer to the token data field

Parameters
tokenString to identify the data

References dataMap_, and tokenList().

Referenced by operator()(), and operator[]().

◆ registerSensorIndex()

void GIMLI::DataContainer::registerSensorIndex ( const std::string & token)

Mark the data field entry as sensor index.

References dataSensorIdx_, exists(), set(), and size().

Referenced by DataContainer(), and GIMLI::DataContainerERT::init().

◆ remove() [1/2]

void GIMLI::DataContainer::remove ( const BVector & bvec)
inline

Inplace remove from Bvector. Sensors are preserved.

References GIMLI::find(), and remove().

Referenced by remove().

◆ remove() [2/2]

void GIMLI::DataContainer::remove ( const IndexArray & idx)
virtual

Inplace remove data from index vector. Remove all data that are covered by idx. Sensors are preserved.

References markValid(), and removeInvalid().

Referenced by checkDataValidity().

◆ removeInvalid()

void GIMLI::DataContainer::removeInvalid ( )

Remove all data[valid] == 0. Sensors are preserved.

References dataMap_, GIMLI::find(), and get().

Referenced by checkDataValidity(), DataContainer(), DataContainer(), GIMLI::DataContainerERT::DataContainerERT(), load(), remove(), and removeSensorIdx().

◆ removeSensorIdx() [1/2]

void GIMLI::DataContainer::removeSensorIdx ( const IndexArray & idx)

Remove all data that contains the sensor and the sensor itself. *

Parameters
idxIndexArray array of indices regarding sensorPoints_

References dataMap_, GIMLI::find(), isSensorIndex(), markValid(), removeInvalid(), and removeUnusedSensors().

◆ removeSensorIdx() [2/2]

void GIMLI::DataContainer::removeSensorIdx ( Index idx)

Remove all data that contains the sensor and the sensor itself.

Parameters
idxuint idx single index for a sensor regarding sensorPoints_

References removeSensorIdx().

Referenced by removeSensorIdx().

◆ removeUnusedSensors()

void GIMLI::DataContainer::removeUnusedSensors ( bool verbose = false)

Remove all unused sensors from this DataContainer and recount data sensor index entries.

References dataMap_, id(), isSensorIndex(), sensorCount(), and sensorPoints_.

Referenced by load(), and removeSensorIdx().

◆ resize()

void GIMLI::DataContainer::resize ( Index size)

Resize the data map and all data fields to size. Note, new data from resizeing will be set to invalid.

References dataMap_, isSensorIndex(), and size().

Referenced by add(), GIMLI::DataContainerERT::averageDuplicateData(), GIMLI::DataContainerERT::createFourPointData(), and load().

◆ save() [1/2]

int GIMLI::DataContainer::save ( const std::string & fileName,
const std::string & fmtData,
const std::string & fmtSensor,
bool noFilter = false,
bool verbose = false ) const
virtual

Save the data to a file. Saves only valid data(except formatData == "all"). File format is

Number of Sensors
#Sensor tokens
Sensor[token 1] Sensor[token n]
Number of Data
#Data tokens
Data[token 1] Data [token n]
Number of additional points
Additional points
http://www.resistivity.net/?unidata

Parameters
fileNameString of the file name
formatDataString to specify the tokens of the data map to be save. If formatData == "all", all datafields will be saved inclusive invalid data.
formatSensorString to specify the tokens of the sensor format to be save
noFilterignore invalid and save all

Referenced by save().

◆ save() [2/2]

int GIMLI::DataContainer::save ( const std::string & fileName,
const std::string & formatData = "all",
bool noFilter = false,
bool verbose = false ) const
inline

Shortcut for save(fileName, formatData, "x y z", verbose);

References save().

◆ scale()

void GIMLI::DataContainer::scale ( const RVector3 & scale)

Scale all sensor positions by scale.

References scale(), and sensorPoints_.

Referenced by load(), and scale().

◆ sensor()

const RVector3 & GIMLI::DataContainer::sensor ( Index i) const
inline

Return a single sensor position. Syntactic sugar.

References sensorCount(), and sensorPoints_.

◆ sensorCount()

◆ sensorIdx()

const std::set< std::string > GIMLI::DataContainer::sensorIdx ( ) const
inline

Return the names of all sensor index data fields.

References dataSensorIdx_.

◆ sensorIndexOnFileFromOne()

bool GIMLI::DataContainer::sensorIndexOnFileFromOne ( ) const
inline

Return true if the sensor indices on a loaded/saved file start with 1. Internally the indices are stored from 0.

References sensorIndexOnFileFromOne_.

◆ sensorPosition()

const RVector3 & GIMLI::DataContainer::sensorPosition ( double i) const
inline

Return a single sensor position.

Return a single sensor position. Syntactic sugar.

References sensorPoints_.

Referenced by GIMLI::geometricFactors().

◆ sensorPositions()

const PosVector & GIMLI::DataContainer::sensorPositions ( ) const
inline

Return the complete sensor positions as read-only.

References sensorPoints_.

Referenced by add(), and sensors().

◆ sensors()

const R3Vector & GIMLI::DataContainer::sensors ( ) const
inline

Return the complete sensor positions as read-only.

References sensorPositions().

Referenced by setSensorPositions(), and setSensorPositions().

◆ set()

void GIMLI::DataContainer::set ( const std::string & token,
const RVector & data )

Set the data for a given token. If there is no such data, new data will be added. Throws an exception if the data field size is not the same size of the DataContainer.

Parameters
tokenString to identify the data
dataRVector of the data

References dataMap_, and size().

Referenced by add(), GIMLI::DataContainerERT::checkDataValidityLocal(), registerSensorIndex(), and GIMLI::setComplexData().

◆ setAdditionalPoint()

void GIMLI::DataContainer::setAdditionalPoint ( Index i,
const Pos & p )
inline

Set additional point i.

References topoPoints_.

◆ setAdditionalPoints()

void GIMLI::DataContainer::setAdditionalPoints ( const PosVector & a)
inline

set additional points.

References topoPoints_.

◆ setDataDescription()

void GIMLI::DataContainer::setDataDescription ( const std::string & token,
const std::string & description )

Set description string for a specific data field. If the data do not exist nothing is done.

Parameters
tokenString that identify the data to be described
descriptionString that describe the data

References dataDescription_, and exists().

Referenced by add().

◆ setInputFormatString()

void GIMLI::DataContainer::setInputFormatString ( const std::string & inputFormatString)
inline

Set input format string (e.g. for import routines)

References inputFormatString().

◆ setSensor()

void GIMLI::DataContainer::setSensor ( Index i,
const RVector3 & pos )
inline

Set sensor positions. Syntactic sugar.

References setSensorPosition().

◆ setSensorIndexOnFileFromOne()

void GIMLI::DataContainer::setSensorIndexOnFileFromOne ( bool indexFromOne)
inline

Define whether the sensor indices on a loaded/saved file start with 1. Internally the indices are stored from 0.

References sensorIndexOnFileFromOne_.

Referenced by load().

◆ setSensorPosition()

void GIMLI::DataContainer::setSensorPosition ( Index i,
const RVector3 & pos )

Set the position for the i-th sensor. Resize sensors if necessary.

References sensorPoints_.

Referenced by GIMLI::geometricFactors(), and setSensor().

◆ setSensorPositions() [1/2]

void GIMLI::DataContainer::setSensorPositions ( const PosVector & sensors)

Set the positions for all sensors.

References sensorPoints_, and sensors().

◆ setSensorPositions() [2/2]

void GIMLI::DataContainer::setSensorPositions ( const RVector & sensors)

Set the positions for 1D sensors distribution.

References sensors(), and setSensorPositions().

Referenced by setSensorPositions().

◆ showInfos()

void GIMLI::DataContainer::showInfos ( ) const

Show some information that belongs to the DataContainer.

References sensorCount(), size(), tokenList(), and topoPoints_.

◆ size()

◆ sortSensorsIndex()

IndexArray GIMLI::DataContainer::sortSensorsIndex ( )

Sort all data regarding there sensor indices and sensorIdxNames. Return the resulting permuation index array.

References dataIndex(), dataMap_, and size().

◆ sortSensorsX()

void GIMLI::DataContainer::sortSensorsX ( bool incX = true,
bool incY = true,
bool incZ = true )

Sort all sensors regarding their increasing coordinates. Set inc flag to false to sort respective coordinate in decreasing direction.

References dataMap_, id(), isSensorIndex(), sensorCount(), and sensorPoints_.

◆ tokenList()

std::string GIMLI::DataContainer::tokenList ( bool withAnnotation = true) const

Return string with space-separated list of all available data tokens. If withAnnotation sets the List separated by the Words "SensorIndex:" and "Data:"

References dataMap_, isSensorIndex(), and tokenList().

Referenced by DataContainer(), get(), id(), ref(), showInfos(), and tokenList().

◆ tokenTranslator()

const std::map< std::string, std::string > & GIMLI::DataContainer::tokenTranslator ( ) const
inline

Return reference to the token translator map.

References tT_.

◆ translate()

void GIMLI::DataContainer::translate ( const RVector3 & trans)

Translate all sensor positions by trans.

References sensorPoints_.

◆ translateAlias()

std::string GIMLI::DataContainer::translateAlias ( const std::string & alias) const

Return the token translation

References tT_.

Referenced by load().

Member Data Documentation

◆ dataDescription_

std::map< std::string, std::string > GIMLI::DataContainer::dataDescription_
protected

Description for the data map entries.

Stores an optional description for the associated data field < token, description >.

Warning
Description will not yet be saved.

Referenced by dataDescription(), dataDescription(), and setDataDescription().

◆ dataMap_

◆ dataSensorIdx_

std::set< std::string > GIMLI::DataContainer::dataSensorIdx_
protected

Data field that is sensor index.

Stores the field token that represent sensor indices

Referenced by dataIndex(), isSensorIndex(), registerSensorIndex(), and sensorIdx().

◆ sensorIndexOnFileFromOne_

bool GIMLI::DataContainer::sensorIndexOnFileFromOne_
protected

Determine if the sensor indices should start from 0 or 1

Referenced by GIMLI::DataContainerERT::init(), initDefaults(), load(), sensorIndexOnFileFromOne(), and setSensorIndexOnFileFromOne().

◆ sensorPoints_

PosVector GIMLI::DataContainer::sensorPoints_
protected

◆ topoPoints_

PosVector GIMLI::DataContainer::topoPoints_
protected

◆ tT_

std::map< std::string, std::string > GIMLI::DataContainer::tT_
protected