Revision eb00901213eba810fa78d5ac7e981a84b63bdcb6 authored by joergbuchwald on 30 October 2020, 20:22:18 UTC, committed by Dmitry Yu. Naumov on 30 October 2020, 20:22:18 UTC
1 parent 37aa049
Raw File
TimeInterval.cpp
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2020, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 * File:   TimeInterval.cpp
 *
 * Created on November 27, 2018, 5:06 PM
 *
 */

#include "TimeInterval.h"

#include "BaseLib/ConfigTree.h"

namespace BaseLib
{
std::unique_ptr<TimeInterval> createTimeInterval(
    BaseLib::ConfigTree const& config)
{
    //! \ogs_file_param{prj__time_loop__processes__process__time_interval}
    auto const& time_interval_config = config.getConfigSubtree("time_interval");

    const auto start_time =
        //! \ogs_file_param{prj__time_loop__processes__process__time_interval__start}
        time_interval_config.getConfigParameter<double>("start");

    const auto end_time =
        //! \ogs_file_param{prj__time_loop__processes__process__time_interval__end}
        time_interval_config.getConfigParameter<double>("end");

    return std::make_unique<BaseLib::TimeInterval>(start_time, end_time);
}
}  // namespace BaseLib
back to top