Bimetric 3+1 toolkit for spherical symmetry
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines
sys/trackUsedTime.h
Go to the documentation of this file.
00001 /**
00002  *  @file      trackUsedTime.h
00003  *  @brief     Tracks the elapsed lifetime of an object.
00004  *  @author    Mikica Kocic
00005  *  @copyright GNU General Public License (GPLv3).
00006  */
00007 
00008 #include <chrono>
00009 
00010 /** The high resolution clock time-point.
00011  */
00012 typedef std::chrono::time_point<std::chrono::high_resolution_clock> time_hr;
00013 
00014 /** Reports the elapsed time for the lifetime of the created object.
00015  */
00016 class TrackUsedTime
00017 {
00018     time_hr rt_born; //!< The realtime when the object was created
00019 
00020 public:
00021 
00022     TrackUsedTime ()
00023     {
00024         rt_born = std::chrono::high_resolution_clock::now ();
00025     }
00026 
00027     ~TrackUsedTime ()
00028     {
00029         slog << "*** Elapsed: ";
00030         auto end = std::chrono::high_resolution_clock::now ();
00031         auto elapsed = std::chrono::duration_cast<std::chrono::milliseconds>
00032                        ( end - rt_born ).count ();
00033         if ( elapsed < 1e3 ) {
00034             slog << elapsed << " ms" << std::endl;
00035         }
00036         else {
00037             slog << std::setprecision(3) << 1e-3 * elapsed << " s" << std::endl;
00038         }
00039     }
00040 };
00041