2013-06-07 02:32:06 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2014-09-23 08:04:57 -05:00
|
|
|
// Copyright (C) 2011- Statoil ASA
|
|
|
|
// Copyright (C) 2013- Ceetron Solutions AS
|
|
|
|
// Copyright (C) 2011-2012 Ceetron AS
|
2013-06-07 02:32:06 -05:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
2015-07-31 11:58:23 -05:00
|
|
|
#include "cafPdmChildField.h"
|
2014-07-24 03:11:43 -05:00
|
|
|
#include "cafPdmField.h"
|
|
|
|
#include "cafPdmObject.h"
|
|
|
|
#include "cafPdmPointer.h"
|
2013-06-07 02:32:06 -05:00
|
|
|
|
2015-06-25 05:11:06 -05:00
|
|
|
class RimEclipseCaseCollection;
|
2015-04-20 02:02:33 -05:00
|
|
|
class RimGeoMechModels;
|
2015-07-31 11:58:23 -05:00
|
|
|
class RimWellPathCollection;
|
2016-12-16 07:38:27 -06:00
|
|
|
class RimFractureDefinitionCollection;
|
2016-12-16 07:05:11 -06:00
|
|
|
class RimFractureCollection;
|
2016-05-31 06:42:27 -05:00
|
|
|
class RimSummaryCaseCollection;
|
2016-08-24 01:30:12 -05:00
|
|
|
class RimFormationNamesCollection;
|
|
|
|
|
2013-06-07 02:32:06 -05:00
|
|
|
//==================================================================================================
|
|
|
|
///
|
|
|
|
///
|
|
|
|
//==================================================================================================
|
|
|
|
class RimOilField : public caf::PdmObject
|
|
|
|
{
|
|
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
|
|
|
|
public:
|
|
|
|
RimOilField(void);
|
|
|
|
virtual ~RimOilField(void);
|
|
|
|
|
2015-07-31 11:58:23 -05:00
|
|
|
caf::PdmChildField<RimEclipseCaseCollection*> analysisModels;
|
|
|
|
caf::PdmChildField<RimGeoMechModels*> geoMechModels;
|
2015-10-23 08:46:25 -05:00
|
|
|
caf::PdmChildField<RimWellPathCollection*> wellPathCollection;
|
2016-12-16 07:38:27 -06:00
|
|
|
caf::PdmChildField<RimFractureDefinitionCollection*> fractureDefinitionCollection;
|
2016-12-16 07:05:11 -06:00
|
|
|
caf::PdmChildField<RimFractureCollection*> fractureCollection;
|
2016-05-31 06:42:27 -05:00
|
|
|
caf::PdmChildField<RimSummaryCaseCollection*> summaryCaseCollection;
|
2016-08-24 01:30:12 -05:00
|
|
|
caf::PdmChildField<RimFormationNamesCollection*> formationNamesCollection;
|
|
|
|
|
2013-06-07 02:32:06 -05:00
|
|
|
};
|