mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#1044 - pre-proto - Updating indexing for i j and k in SimWellFracture to follow Eclipse indexing (starting with 1) and updating depth of z position at wellpath for WellPathFractures to be displayed as positive
This commit is contained in:
@@ -45,12 +45,8 @@ public:
|
||||
caf::PdmPtrField<RimFractureDefinition* > fractureDefinition;
|
||||
|
||||
size_t gridindex;
|
||||
caf::PdmField<int> i;
|
||||
caf::PdmField<int> j;
|
||||
caf::PdmField<int> k;
|
||||
|
||||
virtual QList<caf::PdmOptionItemInfo> calculateValueOptions(const caf::PdmFieldHandle* fieldNeedingOptions, bool * useOptionsOnly) override;
|
||||
|
||||
void setijk(size_t i, size_t j, size_t k);
|
||||
|
||||
|
||||
// Overrides from RimFracture
|
||||
@@ -60,6 +56,11 @@ public:
|
||||
protected:
|
||||
virtual void defineUiOrdering(QString uiConfigName, caf::PdmUiOrdering& uiOrdering);
|
||||
|
||||
private:
|
||||
caf::PdmField<int> m_i; //Eclipse indexing, lowest value is 1
|
||||
caf::PdmField<int> m_j;
|
||||
caf::PdmField<int> m_k;
|
||||
|
||||
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user