]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/src/AliL3StandardIncludes.h
Bugfix in GetEta(raw coordinates); needs slice.
[u/mrichter/AliRoot.git] / HLT / src / AliL3StandardIncludes.h
1 #ifndef ALIL3STANDARDINCLUDESH
2 #define ALIL3STANDARDINCLUDESH
3
4 #if GCCVERSION == 3
5
6 #include <cstdio>
7 #include <cmath>
8 #include <cstring>
9 #include <ctime>
10 #include <cstdlib>
11
12 #include <iostream>
13
14 /* Use these only if absolutely necessary 
15 eg. in inline functions defined in header files */
16 #define STDCOUT std::cout
17 #define STDCERR std::cerr
18 #define STDENDL std::endl
19
20 #else
21
22 #include <stdio.h>
23 #include <math.h>
24 #include <string.h>
25 #include <time.h>
26 #include <stdlib.h>
27
28 #include <iostream.h>
29
30 /* Use these only if absolutely necessary 
31 eg. in inline functions defined in header files */
32 #define STDCOUT cout
33 #define STDCERR cerr
34 #define STDENDL endl
35
36 #endif //GCCVERSION
37
38 #endif
39