]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONV2DStore.h
Fix for the reverse engineering display
[u/mrichter/AliRoot.git] / MUON / AliMUONV2DStore.h
CommitLineData
6cc447df 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 AliMUON2DStore
a9b67123 8/// \brief Generic container indexed by a pair of integers.
6cc447df 9///
10/// \author Laurent Aphecetche
11
12#ifndef AliMUONV2DSTORE_H
13#define AliMUONV2DSTORE_H
14
15#ifndef ROOT_TObject
16# include "TObject.h"
17#endif
18
19class AliMUONV2DStore : public TObject
20{
21public:
22 virtual ~AliMUONV2DStore();
23
a9b67123 24 /// Return the object stored at (i,j).
6cc447df 25 virtual TObject* Get(Int_t i, Int_t j) const = 0;
a9b67123 26
27 /** Set the object stored at (i,j).
28 if replace=false and there's already an object there, returns kFALSE
29 */
6cc447df 30 virtual Bool_t Set(Int_t i, Int_t j, TObject*, Bool_t replace) = 0;
a9b67123 31
32 /// Whether or not this container is the owner of its contents.
6cc447df 33 virtual Bool_t IsOwner() const = 0;
34
35private:
a9b67123 36 ClassDef(AliMUONV2DStore,0) // Generic container indexed by a pair of integers
6cc447df 37};
38
39#endif