///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2017 Statoil ASA // // ResInsight is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or // FITNESS FOR A PARTICULAR PURPOSE. // // See the GNU General Public License at // for more details. // ///////////////////////////////////////////////////////////////////////////////// #pragma once #include "RimEnsembleCurveSetColorManager.h" #include "RimViewWindow.h" #include "RimWellLogPlot.h" #include "RimWellRftEnsembleCurveSet.h" #include "RifDataSourceForRftPltQMetaType.h" #include "RiuPlotCurveSymbol.h" #include "cafPdmField.h" #include "cafPdmObject.h" #include "cafPdmPtrField.h" #include "cvfCollection.h" #include #include #include #include #include #include class RimEclipseCase; class RimEclipseResultCase; class RimRegularLegendConfig; class RimWellLogCurve; class RimWellLogFileChannel; class RimWellPath; class RimWellPathCollection; class RiuWellRftPlot; class RigEclipseCaseData; class RiaRftPltCurveDefinition; class RifDataSourceForRftPlt; class RifEclipseRftAddress; class RiuDraggableOverlayFrame; namespace cvf { class Color3f; } namespace caf { class PdmOptionItemInfo; } //================================================================================================== /// /// //================================================================================================== class RimWellRftPlot : public RimWellLogPlot { CAF_PDM_HEADER_INIT; static const std::set PRESSURE_DATA_NAMES; static const char PLOT_NAME_QFORMAT_STRING[]; public: RimWellRftPlot(); ~RimWellRftPlot() override; const QString& simWellOrWellPathName() const; void setSimWellOrWellPathName( const QString& currWellName ); int branchIndex() const; void applyInitialSelections(); static const char* plotNameFormatString(); void deleteCurvesAssosicatedWithObservedData( const RimObservedFmuRftData* observedFmuRftData ); bool showErrorBarsForObservedData() const; void onLegendDefinitionChanged(); protected: void fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue ) override; void defineUiTreeOrdering( caf::PdmUiTreeOrdering& uiTreeOrdering, QString uiConfigName ) override; QList calculateValueOptions( const caf::PdmFieldHandle* fieldNeedingOptions ) override; QList calculateValueOptionsForSources() const; void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override; void onLoadDataAndUpdate() override; void initAfterRead() override; bool useUndoRedoForFieldChanged() override; private: std::map findWellSources(); void updateEditorsFromPreviousSelection(); void updateEditorsFromCurves(); void syncCurvesFromUiSelection(); void assignWellPathToExtractionCurves(); RimObservedFmuRftData* findObservedFmuData( const QString& wellPathName, const QDateTime& timeStep ) const; std::set selectedCurveDefs() const; std::set curveDefsFromCurves() const; void updateCurvesInPlot( const std::set& allCurveDefs, const std::set& curveDefsToAdd, const std::set& curvesToDelete ); std::vector selectedSourcesExpanded() const; // RimViewWindow overrides void applyCurveAppearance( RimWellLogCurve* curve ); void applyCurveColor( RimWellLogCurve* curve ); void updateFormationsOnPlot() const; QString associatedSimWellName() const; static RiuPlotCurveSymbol::PointSymbolEnum statisticsCurveSymbolFromAddress( const RifEclipseRftAddress& address ); static RiuPlotCurveSymbol::LabelPosition statisticsLabelPosFromAddress( const RifEclipseRftAddress& address ); cvf::Color3f findCurveColor( RimWellLogCurve* curve ); void defineCurveColorsAndSymbols( const std::set& allCurveDefs ); std::vector selectedEnsembles() const; void createEnsembleCurveSets(); RimWellRftEnsembleCurveSet* findEnsembleCurveSet( RimSummaryCaseCollection* ensemble ) const; private: friend class RimWellRftEnsembleCurveSet; caf::PdmField m_wellPathNameOrSimWellName; caf::PdmField m_branchIndex; caf::PdmField m_branchDetection; caf::PdmField m_showStatisticsCurves; caf::PdmField m_showEnsembleCurves; caf::PdmField m_showErrorInObservedData; caf::PdmField> m_selectedSources; caf::PdmField> m_selectedTimeSteps; caf::PdmPtrField m_wellPathCollection; caf::PdmChildArrayField m_ensembleCurveSets; std::map> m_ensembleLegendFrames; std::map m_dataSourceColors; std::map m_timeStepSymbols; bool m_isOnLoad; caf::PdmChildField m_wellLogPlot_OBSOLETE; };