]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/mapping/AliMpGraphicsTypes.h
From Laurent
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpGraphicsTypes.h
CommitLineData
dee1d5f1 1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3
5f91c9e8 4// $Id$
dee1d5f1 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
5f91c9e8 12
13#ifndef ALI_MP_GRAPHICS_TYPES_H
14#define ALI_MP_GRAPHICS_TYPES_H
15
f79c58a5 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
5f91c9e8 25
26class AliMpGraphContext;
27
f79c58a5 28#ifdef WITH_STL
5f91c9e8 29#ifdef __HP_aCC
30 typedef vector<AliMpGraphContext*> GraphContextVector;
31#else
32 typedef std::vector<AliMpGraphContext*> GraphContextVector;
33#endif
f79c58a5 34#endif
35
36#ifdef WITH_ROOT
37 typedef TObjArray GraphContextVector;
38#endif
5f91c9e8 39
40#endif //ALI_MP_GRAPHICS_TYPES_H