]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpGraphicsTypes.h
Mapping test macros (D. Guez, I. Hrivnacova)
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpGraphicsTypes.h
1 // $Id$
2 // Category: graphics
3 //
4 // AliMpGraphicsTypes
5 // ------------------
6 // Sytem dependent types definitions for graphics category.
7 //
8 // Authors: David Guez, Ivana Hrivnacova; IPN Orsay
9
10 #ifndef ALI_MP_GRAPHICS_TYPES_H
11 #define ALI_MP_GRAPHICS_TYPES_H
12
13 #include "AliMpContainers.h"
14
15 #ifdef WITH_STL
16   #include <vector>
17 #endif
18
19 #ifdef WITH_ROOT
20   #include <TObjArray.h>
21 #endif
22
23 class AliMpGraphContext;
24
25 #ifdef WITH_STL
26 #ifdef __HP_aCC
27   typedef vector<AliMpGraphContext*> GraphContextVector;
28 #else
29   typedef std::vector<AliMpGraphContext*> GraphContextVector;
30 #endif
31 #endif
32
33 #ifdef WITH_ROOT
34   typedef TObjArray GraphContextVector;
35 #endif
36
37 #endif //ALI_MP_GRAPHICS_TYPES_H