]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/mapping/AliMpPlaneType.h
Commenting out the infamous speed eater = StdoutToAliDebug until a better solution...
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpPlaneType.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$
13985652 5// $MpId: AliMpPlaneType.h,v 1.8 2006/05/24 13:58:07 ivana Exp $
dee1d5f1 6
7/// \ingroup basic
8/// \enum AliMpPlaneType
9/// Enumeration for refering to bending and non-bending planes.
10///
13985652 11/// \author David Guez, Ivana Hrivnacova; IPN Orsay
5f91c9e8 12
13#ifndef ALI_MP_PLANE_TYPE_H
14#define ALI_MP_PLANE_TYPE_H
5c319d21 15
2a7ea2e6 16#include <TString.h>
17
102fd0f8 18namespace 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}
d3a2ac14 33
5f91c9e8 34#endif //ALI_MP_PLANE_TYPE_H