]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/MUONmapping/AliMpMotifReader.h
Fixes for object target dependencies
[u/mrichter/AliRoot.git] / MUON / MUONmapping / AliMpMotifReader.h
CommitLineData
197883c2 1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2 * See cxx source for full Copyright notice */
3
4// $Id$
13985652 5// $MpId: AliMpMotifReader.h,v 1.9 2006/05/24 13:58:18 ivana Exp $
197883c2 6
7/// \ingroup motif
8/// \class AliMpMotifReader
9/// \brief Class that takes care of reading the motifs data.
10///
13985652 11/// \author David Guez, Ivana Hrivnacova; IPN Orsay
197883c2 12
13#ifndef ALI_MP_MOTIF_READER_H
14#define ALI_MP_MOTIF_READER_H
15
2a7ea2e6 16#include <TObject.h>
17
2a7ea2e6 18#include "AliMpStationType.h"
4e51cfd2 19#include "AliMpStation12Type.h"
2a7ea2e6 20#include "AliMpPlaneType.h"
5006ec94 21
5006ec94 22#include <TExMap.h>
197883c2 23#include <TString.h>
197883c2 24#include <Riostream.h>
25
2a7ea2e6 26#include <fstream>
197883c2 27
28class AliMpMotifMap;
29class AliMpVMotif;
30class AliMpMotifSpecial;
31class AliMpMotifType;
ab167304 32class AliMpDataStreams;
197883c2 33
34class AliMpMotifReader : public TObject
35{
36 public:
21027e5a 37 AliMpMotifReader(AliMp::StationType station,
4e51cfd2 38 AliMq::Station12Type station12,
39 AliMp::PlaneType plane);
197883c2 40 virtual ~AliMpMotifReader();
41
42 // methods
21027e5a 43 AliMpMotifType* BuildMotifType(const AliMpDataStreams& dataStreams,
44 const TString& motifTypeId);
45 AliMpMotifSpecial* BuildMotifSpecial(const AliMpDataStreams& dataStreams,
46 const TString& motifID,
d1c53ece 47 AliMpMotifType* motifType,
48 Double_t scale=1.0);
0e8df63e 49 TString MotifSpecialName(const TString& motifID, Double_t scale);
197883c2 50
13e7956b 51 private:
ab167304 52 /// Not implemented
53 AliMpMotifReader();
f5671fc3 54 /// Not implemented
197883c2 55 AliMpMotifReader(const AliMpMotifReader& right);
f5671fc3 56 /// Not implemented
197883c2 57 AliMpMotifReader& operator = (const AliMpMotifReader& right);
58
197883c2 59 // data members
4e51cfd2 60 AliMp::StationType fStationType; ///< station type
61 AliMq::Station12Type fStation12Type; ///< station12 type
62 AliMp::PlaneType fPlaneType; ///< plane type
197883c2 63
228fd720 64 ClassDef(AliMpMotifReader,0) // Data reader
197883c2 65};
66
67#endif //ALI_MP_MOTIF_READER_H