]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TPCLib/AliHLTTPCStandardIncludes.h
Added total charge histogram, allresiduals histogram and graphs for the residuals...
[u/mrichter/AliRoot.git] / HLT / TPCLib / AliHLTTPCStandardIncludes.h
CommitLineData
a6c02c85 1// @(#) $Id$
2
3#ifndef ALIHLTTPCSTANDARDINCLUDESH
4#define ALIHLTTPCSTANDARDINCLUDESH
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
17eg. 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
35eg. 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
45