]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpPlaneType.h
Adding new libraries
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpPlaneType.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: AliMpPlaneType.h,v 1.8 2006/05/24 13:58:07 ivana Exp $
6
7 /// \ingroup basic
8 /// \enum AliMp::PlaneType
9 /// Enumeration for refering to bending and non-bending planes.
10 ///
11 /// \author David Guez, Ivana Hrivnacova; IPN Orsay
12  
13 #ifndef ALI_MP_PLANE_TYPE_H
14 #define ALI_MP_PLANE_TYPE_H
15
16 #include <TString.h>
17
18 namespace AliMp {
19
20   enum PlaneType
21   {
22     kBendingPlane,    ///< bending plane
23     kNonBendingPlane  ///< non-bending plane
24   };
25
26   /// Return name for given planeType
27   TString PlaneTypeName(AliMp::PlaneType planeType);
28
29
30   /// Return the other plane type
31   AliMp::PlaneType OtherPlaneType(AliMp::PlaneType planeType);
32 }  
33
34 #endif //ALI_MP_PLANE_TYPE_H