]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpGraphicsTypes.h
From Laurent
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpGraphicsTypes.h
1 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2  * See cxx source for full Copyright notice                               */
3
4 // $Id$
5 // $MpId: AliMpGraphicsTypes.h,v 1.5 2005/08/26 15:43:36 ivana Exp $
6
7 /// \ingroup graphics
8 /// AliMpGraphicsTypes
9 /// System dependent types definitions for graphics category.
10 ///
11 /// Authors: David Guez, Ivana Hrivnacova; IPN Orsay
12
13 #ifndef ALI_MP_GRAPHICS_TYPES_H
14 #define ALI_MP_GRAPHICS_TYPES_H
15
16 #include "AliMpContainers.h"
17
18 #ifdef WITH_STL
19   #include <vector>
20 #endif
21
22 #ifdef WITH_ROOT
23   #include <TObjArray.h>
24 #endif
25
26 class AliMpGraphContext;
27
28 #ifdef WITH_STL
29 #ifdef __HP_aCC
30   typedef vector<AliMpGraphContext*> GraphContextVector;
31 #else
32   typedef std::vector<AliMpGraphContext*> GraphContextVector;
33 #endif
34 #endif
35
36 #ifdef WITH_ROOT
37   typedef TObjArray GraphContextVector;
38 #endif
39
40 #endif //ALI_MP_GRAPHICS_TYPES_H