]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/mapping/AliMpPlaneType.cxx
MUON + CheckCompiler
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpPlaneType.cxx
diff --git a/MUON/mapping/AliMpPlaneType.cxx b/MUON/mapping/AliMpPlaneType.cxx
deleted file mode 100644 (file)
index ac019f2..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- * See cxx source for full Copyright notice                               */
-
-// $Id$
-// $MpId: AliMpPlaneType.h,v 1.8 2006/05/24 13:58:07 ivana Exp $
-
-// \enum AliMpPlaneType
-// Enumeration for refering to bending and non-bending planes.
-//
-// Author: David Guez, Ivana Hrivnacova; IPN Orsay
-#include "AliMpPlaneType.h"
-
-#include "AliLog.h" 
-//_____________________________________________________________________________
-TString AliMp::PlaneTypeName(PlaneType planeType)
-{
-/// Return plane type name for given plane type
-
-  switch ( planeType ) {
-    case kBendingPlane:    return "bp";  break;
-    case kNonBendingPlane: return "nbp"; break;
-  }
-  
-  // Cannot reach this line
-  AliFatalGeneral("AliMpPlaneType.h", "Unknown plane type"); 
-  return "invalidPlane";
-}       
-
-//_____________________________________________________________________________
-AliMp::PlaneType AliMp::OtherPlaneType(PlaneType planeType)
-{
-/// Return the other plane type for a given plane type
-
-  switch ( planeType ) {
-    case kBendingPlane:    return kNonBendingPlane;  break;
-    case kNonBendingPlane: return kBendingPlane;     break;
-  }
-  
-  // Cannot reach this line
-  AliFatalGeneral("AliMpPlaneType.h", "Unknown plane type"); 
-  return kBendingPlane;
-}