mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-24 15:26:48 -06:00
73 lines
3.2 KiB
C++
73 lines
3.2 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2011- Statoil ASA
|
|
// Copyright (C) 2013- Ceetron Solutions AS
|
|
//
|
|
// 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 <http://www.gnu.org/licenses/gpl.html>
|
|
// for more details.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
#include "RimCheckableNamedObject.h"
|
|
#include "Rim3dPropertiesInterface.h"
|
|
|
|
#include "RiaEclipseUnitTools.h"
|
|
|
|
#include "cafPdmField.h"
|
|
#include "cafPdmObject.h"
|
|
|
|
#include <QDate>
|
|
|
|
//==================================================================================================
|
|
///
|
|
//==================================================================================================
|
|
class RimPerforationInterval : public RimCheckableNamedObject, public Rim3dPropertiesInterface
|
|
{
|
|
CAF_PDM_HEADER_INIT;
|
|
public:
|
|
|
|
RimPerforationInterval();
|
|
virtual ~RimPerforationInterval();
|
|
|
|
void setStartAndEndMD(double startMD, double endMD);
|
|
void setStartOfHistory();
|
|
void setDate(const QDate& date);
|
|
void setDiameter(double diameter);
|
|
void setSkinFactor(double skinFactor);
|
|
double startMD() const { return m_startMD(); }
|
|
double endMD() const { return m_endMD(); }
|
|
double diameter(RiaEclipseUnitTools::UnitSystem unitSystem) const;
|
|
double skinFactor() const { return m_skinFactor(); }
|
|
|
|
bool isActiveOnDate(const QDateTime& date) const;
|
|
|
|
virtual cvf::BoundingBox boundingBoxInDomainCoords() override;
|
|
|
|
void setUnitSystemSpecificDefaults();
|
|
|
|
protected:
|
|
virtual void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override;
|
|
virtual void fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue ) override;
|
|
virtual void defineUiTreeOrdering(caf::PdmUiTreeOrdering& uiTreeOrdering, QString uiConfigName = "") override;
|
|
virtual void defineEditorAttribute(const caf::PdmFieldHandle* field, QString uiConfigName, caf::PdmUiEditorAttribute* attribute) override;
|
|
|
|
private:
|
|
caf::PdmField< double > m_startMD;
|
|
caf::PdmField< double > m_endMD;
|
|
caf::PdmField< double > m_diameter;
|
|
caf::PdmField< double > m_skinFactor;
|
|
caf::PdmField< bool > m_startOfHistory;
|
|
caf::PdmField< QDateTime > m_date;
|
|
};
|