]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/src/AliL3StandardIncludes.h
- made package indepentend of src
[u/mrichter/AliRoot.git] / HLT / src / AliL3StandardIncludes.h
1 // @(#) $Id$
2
3 #ifndef ALIL3STANDARDINCLUDESH
4 #define ALIL3STANDARDINCLUDESH
5
6 #if __GNUC__ >= 3
7 #include <fstream>
8 #include <iostream>
9
10 #include <cstdio>
11 #include <cmath>
12 #include <cstring>
13 #include <ctime>
14 #include <cstdlib>
15
16 /* Use these only if absolutely necessary 
17 eg. in inline functions defined in header files */
18 #define STDCOUT std::cout
19 #define STDCERR std::cerr
20 #define STDENDL std::endl
21 #define STDIF   std::ifstream
22 #define STDOF   std::ofstream
23
24 #else
25 #include <iostream.h>
26 #include <fstream.h>
27
28 #include <stdio.h>
29 #include <math.h>
30 #include <string.h>
31 #include <time.h>
32 #include <stdlib.h>
33
34 /* Use these only if absolutely necessary 
35 eg. in inline functions defined in header files */
36 #define STDCOUT cout
37 #define STDCERR cerr
38 #define STDENDL endl
39 #define STDIF   ifstream
40 #define STDOF   ofstream
41
42 #endif //__GNUC__
43
44 #endif