]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/programs/speedtest.h
L3 becomes HLT
[u/mrichter/AliRoot.git] / HLT / programs / speedtest.h
CommitLineData
02f030e3 1// $Id$
2
aac30464 3#include <iostream.h>
4#define ALIL3LOGGING_H
4aa41877 5class AliHLTLog{
aac30464 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>
4aa41877 18#include "AliHLTConfMapPoint.cxx"
aac30464 19
20double CpuTime()
21{
22 //Return the Cputime in seconds.
23
24 return (double)(clock()) / CLOCKS_PER_SEC;
25}
26
27