]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/mapping/AliMpSlatMotifMap.h
Update serial number files (Christian)
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpSlatMotifMap.h
CommitLineData
dd4ea4ef 1#ifndef ALIMPSLATMOTIFMAP_H
2#define ALIMPSLATMOTIFMAP_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5* See cxx source for full Copyright notice */
6
7// $Id$
8
9/// \ingroup motif
10/// \class AliMpSlatMotifMap
11/// \brief A container to keep track of allocated motifs and motifTypes for slats
12/// (both St345 and trigger ones).
13///
14// Author Laurent Aphecetche, Subatech
15
16#ifndef ROOT_TMap
17# include "TMap.h"
18#endif
19
20class AliMpVMotif;
21class AliMpMotifType;
22class TString;
23
24class AliMpSlatMotifMap : public TObject
25{
26public:
27 AliMpSlatMotifMap();
28 virtual ~AliMpSlatMotifMap();
29
30 AliMpVMotif* FindMotif(const TString& id) const;
31 AliMpMotifType* FindMotifType(const TString& id) const;
32
33 Bool_t AddMotif(AliMpVMotif* motif, Bool_t warn=kTRUE);
34 Bool_t AddMotifType(AliMpMotifType* motifType, Bool_t warn=kTRUE);
35
36 void Print(Option_t* opt="") const;
37
38 void Reset();
39
40private:
41 TMap fMotifs; //< collection of motifs
42 TMap fMotifTypes; //< collection of motifTypes
43
44 ClassDef(AliMpSlatMotifMap,1) //
45};
46
47#endif