]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/mapping/AliMpSt345Reader.h
Fixing part of the Coding violation
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpSt345Reader.h
CommitLineData
dee1d5f1 1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3
4// $Id$
829425a5 5// $MpId: AliMpSt345Reader.h,v 1.6 2006/05/23 13:07:47 ivana Exp $
dee1d5f1 6
7/// \ingroup slat
8/// \class AliMpSt345Reader
9/// \brief Read slat and pcb ASCII files
10///
85fec35d 11/// \author Laurent Aphecetche
dee1d5f1 12
13#ifndef ALI_MP_ST345_READER_H
14#define ALI_MP_ST345_READER_H
15
16#ifndef ROOT_TObject
17# include "TObject.h"
18#endif
19
20#ifndef ROOT_Tmap
21# include "TMap.h"
22#endif
23
24#ifndef ROOT_TExMap
25# include "TExMap.h"
26#endif
27
28#ifndef ALI_MP_PLANE_TYPE_H
29# include "AliMpPlaneType.h"
30#endif
31
d5c9a22c 32class AliMpSlatMotifMap;
dee1d5f1 33class AliMpSlat;
34class AliMpPCB;
dee1d5f1 35
36class AliMpSt345Reader : public TObject
37{
38 public:
657b96e3 39 AliMpSt345Reader();
dee1d5f1 40 virtual ~AliMpSt345Reader();
41
cddd101e 42 AliMpSlat* ReadSlat(const char* slatType, AliMp::PlaneType planeType);
dee1d5f1 43
d5c9a22c 44 AliMpPCB* ReadPCB(const char* pcbType);
dee1d5f1 45
d5c9a22c 46private:
657b96e3 47 /// Not implemented
48 AliMpSt345Reader(const AliMpSt345Reader& rhs);
49 /// Not implemented
50 AliMpSt345Reader& operator=(const AliMpSt345Reader& rhs);
51
52 AliMpSlatMotifMap* fMotifMap; //!< storage for motifTypes and motifs...
d5c9a22c 53
54 ClassDef(AliMpSt345Reader,0) // Reader for slat stations mapping files
dee1d5f1 55};
56
57#endif