#3169 Implement proper auto name for well log plots

This commit is contained in:
Gaute Lindkvist
2018-07-16 08:56:28 +02:00
parent be63eb5aef
commit 022aac3682
14 changed files with 114 additions and 32 deletions

View File

@@ -47,6 +47,7 @@ public:
void setCaseToApply(RimCase* val);
RimWellPath* wellPathToApply() const;
void setWellPathToApply(RimWellPath* val);
QString simWellNameToApply() const;
int timeStepToApply() const;
void setTimeStepToApply(int val);
void updateDefaultOptions(const std::vector<RimWellLogCurve*>& curves);
@@ -65,6 +66,6 @@ private:
caf::PdmPtrField<RimWellPath*> m_wellPath;
caf::PdmField<QString> m_simWellName;
caf::PdmField<int> m_branchIndex;
caf::PdmField<caf::Tristate> m_branchDetection;
caf::PdmField<caf::Tristate> m_branchDetection;
caf::PdmField<int> m_timeStep;
};