]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - MUON/MUONmapping/AliMpStationType.cxx
Fix building task directory name
[u/mrichter/AliRoot.git] / MUON / MUONmapping / AliMpStationType.cxx
... / ...
CommitLineData
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: AliMpStationType.h,v 1.9 2006/05/24 13:58:07 ivana Exp $
6
7//-----------------------------------------------------------------------------
8// \enum AliMpStationType
9// Enumeration for refering to a MUON station
10//
11// Author: David Guez, Ivana Hrivnacova; IPN Orsay
12//-----------------------------------------------------------------------------
13
14#include "AliMpStationType.h"
15
16#include "AliLog.h"
17
18//_____________________________________________________________________________
19TString AliMp::StationTypeName(AliMp::StationType stationType)
20{
21/// Return the station name for given station type
22
23 switch ( stationType ) {
24 case kStation12: return "st12"; break;
25 case kStation345: return "slat"; break;
26 case kStationTrigger: return "trigger"; break;
27 }
28
29 // Cannot reach this line
30 AliFatalGeneral("AliMpStationType.h", "Unknown station type");
31 return "invalidStation";
32}