swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: ea071a5ce1a5301caef764e6c30f7d4f4740b82b authored by wenqing on 08 February 2022, 14:57:48 UTC
Merge branch 'RM_T_init_total_stress_vapor_diffusion_latent_heat_use_MPL_vapour_stuff' into 'master'
Tip revision: ea071a5
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-2022, 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