Line data Source code
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 :
20 : class AliMpVMotif;
21 : class AliMpMotifType;
22 : class TString;
23 :
24 : class AliMpSlatMotifMap : public TObject
25 : {
26 : public:
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 :
40 : private:
41 : /// Not implemented
42 : AliMpSlatMotifMap(const AliMpSlatMotifMap& rhs);
43 : /// Not implemented
44 : AliMpSlatMotifMap& operator=(const AliMpSlatMotifMap& rhs);
45 :
46 : TMap fMotifs; ///< collection of motifs
47 : TMap fMotifTypes; ///< collection of motifTypes
48 :
49 81732 : ClassDef(AliMpSlatMotifMap,3) // Slat motif map
50 : };
51 :
52 : #endif
|