]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUON2DMap.h
Introduced new DE names unique to each det element;
[u/mrichter/AliRoot.git] / MUON / AliMUON2DMap.h
CommitLineData
f6e5d0e9 1/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
2* See cxx source for full Copyright notice */
3
4// $Id$
5
6/// \ingroup base
7/// \class AliMUON2DMap
8/// \brief Basic implementation of AliMUONV2DStore container using
e5cc543e 9/// AliMpExMap internally.
f6e5d0e9 10///
5398f946 11// Author Laurent Aphecetche
f6e5d0e9 12
13#ifndef AliMUON2DMAP_H
14#define AliMUON2DMAP_H
15
16#include "AliMUONV2DStore.h"
17
18class AliMpExMap;
19
20class AliMUON2DMap : public AliMUONV2DStore
21{
22public:
d91c6144 23 AliMUON2DMap(Bool_t optimizeForDEManu=kFALSE);
f6e5d0e9 24 virtual ~AliMUON2DMap();
25
d91c6144 26 AliMUONV2DStore* CloneEmpty() const;
27
f246123b 28 /// The returned iterator is owned by the client.
29 AliMUONVDataIterator* Iterator() const;
30
f6e5d0e9 31 virtual TObject* Get(Int_t i, Int_t j) const;
9d5f6a64 32 virtual Bool_t Set(Int_t i, Int_t j, TObject* object, Bool_t replace);
5398f946 33 /// Whether or not this container is the owner of its contents.
34 virtual Bool_t IsOwner() const { return kTRUE; }
f6e5d0e9 35
36 virtual void Print(Option_t* opt="") const;
d91c6144 37
9d5f6a64 38 AliMUON2DMap(const AliMUON2DMap& other);
39 AliMUON2DMap& operator = (const AliMUON2DMap& other);
40
41private:
f246123b 42 void CopyTo(AliMUON2DMap& destination) const;
43
f6e5d0e9 44private:
18b6b8c7 45 AliMpExMap* fMap; ///< Our internal map (an AliMpExMap of AliMpExMaps)
d91c6144 46 Bool_t fOptimizeForDEManu; ///< whether (i,j) pair is supposed to be (DetElemId,ManuId) (allow us to allocate right amount of memory, that's all it does.
f6e5d0e9 47
d91c6144 48 ClassDef(AliMUON2DMap,2) // A 2D container
f6e5d0e9 49};
50
51#endif