https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 3bc70067ad8267c465bb475948f4d8b4f03e7bb6 authored by Wenqing Wang on 20 November 2020, 10:38:43 UTC
[TRM] Update for the changes in RM for using drho_l/dp
Tip revision: 3bc7006
CPUTime.h
/**
 * \file
 * \author Thomas Fischer
 * \author Wenqing Wang
 * \date   2012-05-10, 2014.10.10
 * \brief  Definition of the CPUTime class.
 *
 * \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
 */

#pragma once

#include <ctime>

namespace BaseLib
{

/// Count CPU time
class CPUTime
{
    public:
        /// Start the timer.
        void start()
        {
            _start_time = clock();
        }

        /// Get the elapsed time after started.
        double elapsed() const
        {
            return (clock() - _start_time)/static_cast<double>(CLOCKS_PER_SEC);
        }
    private:
        double _start_time = 0.;
};

} // end namespace BaseLib
back to top