]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliCodeTimer.cxx
Increasing the class version number.
[u/mrichter/AliRoot.git] / STEER / AliCodeTimer.cxx
index 812779c90a09de9c96887fc478bec32ebd3e026d..5d78c5b99cf5be8861e98cdd25e250372f6d3780 100644 (file)
 * about the suitability of this software for any purpose. It is          *
 * provided "as is" without express or implied warranty.                  *
 **************************************************************************/
+//  $Id$
 
-// $Id$
-
-///
-/// Class to get organized with the way we're timing our methods...
-///
-/// Typical usage is based on macros (like for AliLog related ones AliDebug...)
-///
-/// The idea is to instrument the code with a few macro calls, and then,
-/// at the end of the execution, get a printout of *all* the timers, by using
-/// AliCodeTimer::Instance()->Print()
-/// instead of getting scattered outputs all over the place.
-///
-/// To time a given method, use :
-///
-/// void ClassA::MethodA(....)
-/// {
-///    AliCodeTimerAuto("")
-/// }
-///
-/// To get several timers within a same method, use : 
-///
-/// void ClassA::MethodB(...)
-/// {
-///   AliCodeTimerStart("doing something")
-///   ....
-///   AliCodeTimerStop("doing something")
-///
-///   AliCodeTimerStart("doing something else")
-///   ....
-///   AliCodeTimerStop("doing something else")
-/// }
-///
-///
+//_________________________________________________________________________
+// Class to get organized with the way we're timing our methods...
+//
+// Typical usage is based on macros (like for AliLog related ones AliDebug...)
+//
+// The idea is to instrument the code with a few macro calls, and then,
+// at the end of the execution, get a printout of *all* the timers, by using
+// AliCodeTimer::Instance()->Print()
+// instead of getting scattered outputs all over the place.
+//
+// To time a given method, use :
+//
+// void ClassA::MethodA(....)
+// {
+//    AliCodeTimerAuto("")
+// }
+//
+// To get several timers within a same method, use : 
+//
+// void ClassA::MethodB(...)
+// {
+//   AliCodeTimerStart("doing something")
+//   ....
+//   AliCodeTimerStop("doing something")
+//
+//   AliCodeTimerStart("doing something else")
+//   ....
+//   AliCodeTimerStop("doing something else")
+// }
 
 #include "AliCodeTimer.h"