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