]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/mapping/AliMpGraphicsTypes.h
Mapping test macros (D. Guez, I. Hrivnacova)
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpGraphicsTypes.h
CommitLineData
5f91c9e8 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
f79c58a5 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
5f91c9e8 22
23class AliMpGraphContext;
24
f79c58a5 25#ifdef WITH_STL
5f91c9e8 26#ifdef __HP_aCC
27 typedef vector<AliMpGraphContext*> GraphContextVector;
28#else
29 typedef std::vector<AliMpGraphContext*> GraphContextVector;
30#endif
f79c58a5 31#endif
32
33#ifdef WITH_ROOT
34 typedef TObjArray GraphContextVector;
35#endif
5f91c9e8 36
37#endif //ALI_MP_GRAPHICS_TYPES_H