2018-03-22 08:40:21 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 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 <http://www.gnu.org/licenses/gpl.html>
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "RifEnsambleParametersReader.h"
|
2018-03-26 06:11:36 -05:00
|
|
|
#include "RifCaseRealizationParametersReader.h"
|
2018-03-22 08:40:21 -05:00
|
|
|
#include "RifFileParseTools.h"
|
|
|
|
|
|
|
|
#include "RiaLogging.h"
|
|
|
|
#include "RiaStdStringTools.h"
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QDir>
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2018-03-26 06:11:36 -05:00
|
|
|
RifEnsambleParametersReader::RifEnsambleParametersReader(const QString& modelDirectory)
|
2018-03-22 08:40:21 -05:00
|
|
|
{
|
2018-03-26 06:11:36 -05:00
|
|
|
m_modelDirectory = modelDirectory;
|
2018-03-22 08:40:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RifEnsambleParametersReader::~RifEnsambleParametersReader()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2018-03-27 01:28:36 -05:00
|
|
|
//RifEnsambleParameters RifEnsambleParametersReader::import()
|
|
|
|
//{
|
|
|
|
// RifEnsambleParameters parameters;
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// return ;
|
|
|
|
//}
|
2018-03-22 08:40:21 -05:00
|
|
|
|