]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/programs/speedtest.h
Removed ASV version in AliL3FileHandler by another effective i/o method using index...
[u/mrichter/AliRoot.git] / HLT / programs / speedtest.h
1 // $Id$
2
3 #include <iostream.h>
4 #define ALIL3LOGGING_H
5 class AliL3Log{
6   public:
7   enum TLogLevel { kNone = 0, kDebug= 0x01, kInformational = 0x02, kWarning = 0x04, kError = 0x08 , kFatal = 0x10, kPrimary = 0x80, kAll = 0x9F };
8   enum TLogCmd { kEnd, kPrec, kHex, kDec };
9 };
10 #define LOG( lvl, origin, keyword ) cerr
11 #define ENDLOG endl
12 #define no_root
13
14 #include <stdio.h>
15 #include <math.h>
16 #include <stdlib.h>
17 #include <time.h>
18 #include "AliL3ConfMapPoint.cxx"
19
20 double CpuTime()
21 {
22   //Return the Cputime in seconds.
23
24   return (double)(clock()) / CLOCKS_PER_SEC;
25 }
26
27