Revision 0da6a446210c1c4c17e8b173e773563fe3ccd05a authored by Dmitry Yu. Naumov on 12 March 2021, 14:58:51 UTC, committed by Dmitry Yu. Naumov on 12 March 2021, 14:58:51 UTC
[CL] small clean-ups

See merge request ogs/ogs!3507
2 parent s 3765410 + 54f019e
Raw File
TimeInterval.cpp
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, 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