]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/mapping/AliMpSectorReader.h
Compatibility with ROOT trunk
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpSectorReader.h
CommitLineData
197883c2 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: AliMpSectorReader.h,v 1.7 2006/05/24 13:58:21 ivana Exp $
197883c2 6
7/// \ingroup sector
8/// \class AliMpSectorReader
9/// \brief Class that takes care of reading the sector data.
10///
13985652 11/// \author David Guez, Ivana Hrivnacova; IPN Orsay
5f91c9e8 12
197883c2 13#ifndef ALI_MP_SECTOR_READER_H
14#define ALI_MP_SECTOR_READER_H
5f91c9e8 15
5f91c9e8 16#include <TObject.h>
5f91c9e8 17
4e51cfd2 18#include "AliMpStation12Type.h"
5f91c9e8 19#include "AliMpPlaneType.h"
4139354b 20#include "AliMpXDirection.h"
5f91c9e8 21
2a7ea2e6 22#include <TString.h>
23
24#include <fstream>
25
5f91c9e8 26class AliMpSector;
27class AliMpZone;
28class AliMpSubZone;
29class AliMpRow;
4139354b 30class AliMpVRowSegmentSpecial;
197883c2 31class AliMpMotifReader;
5f91c9e8 32class AliMpVMotif;
33class AliMpMotifSpecial;
34class AliMpMotifType;
ab167304 35class AliMpDataStreams;
5f91c9e8 36
b80faac0 37using std::istream;
38
197883c2 39class AliMpSectorReader : public TObject
5f91c9e8 40{
41 public:
ab167304 42 AliMpSectorReader(const AliMpDataStreams& dataStreams,
4e51cfd2 43 AliMq::Station12Type station, AliMp::PlaneType plane);
197883c2 44 virtual ~AliMpSectorReader();
5f91c9e8 45
46 // methods
197883c2 47 AliMpSector* BuildSector();
5f91c9e8 48
13e7956b 49 private:
ab167304 50 /// Not implemented
51 AliMpSectorReader();
f5671fc3 52 /// Not implemented
197883c2 53 AliMpSectorReader(const AliMpSectorReader& right);
f5671fc3 54 /// Not implemented
55 AliMpSectorReader& operator = (const AliMpSectorReader& right);
fb1bf5c0 56
31edb2d7 57 // static methods
58 static const TString& GetSectorKeyword();
59 static const TString& GetZoneKeyword();
60 static const TString& GetSubZoneKeyword();
61 static const TString& GetRowKeyword();
62 static const TString& GetSectorSpecialKeyword();
63 static const TString& GetMotifKeyword();
64 static const TString& GetRowSpecialKeyword();
65 static const TString& GetPadRowsKeyword();
66 static const TString& GetPadRowSegmentKeyword();
67
68 // methods
228fd720 69 void ReadSectorData(istream& in);
70 void ReadZoneData(istream& in);
71 void ReadSubZoneData(istream& in, AliMpZone* zone);
72 void ReadRowSegmentsData(istream& in,
5f91c9e8 73 AliMpZone* zone, AliMpSubZone* subZone);
228fd720 74 AliMpVMotif* ReadMotifData(istream& in, AliMpZone* zone);
75 void ReadSectorSpecialData(istream& in, AliMp::XDirection direction);
76 void ReadMotifsSpecialData(istream& in);
77 void ReadRowSpecialData(istream& in, AliMp::XDirection direction);
78 void ReadRowSegmentSpecialData(istream& in,
4139354b 79 AliMpVRowSegmentSpecial* segment,
cddd101e 80 AliMp::XDirection direction);
5f91c9e8 81
4139354b 82 // data members
7d5d0cc5 83 const AliMpDataStreams& fkDataStreams; ///< data streams
4e51cfd2 84 AliMq::Station12Type fStationType; ///< station type
85 AliMp::PlaneType fPlaneType; ///< plane type
86 AliMpSector* fSector; ///< sector
87 AliMpMotifReader* fMotifReader; ///< motif reader
5f91c9e8 88
228fd720 89 ClassDef(AliMpSectorReader,0) // Data reader
5f91c9e8 90};
91
92#endif //ALI_MP_READER_H