]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONV2DStore.h
- Added handling of tracks and file mask (used when merging different files).
[u/mrichter/AliRoot.git] / MUON / AliMUONV2DStore.h
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
8 /// \brief Generic container indexed by a pair of integers
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
19 class AliMUONV2DStore : public TObject
20 {
21 public:
22   virtual ~AliMUONV2DStore();
23   
24   virtual TObject* Get(Int_t i, Int_t j) const = 0;
25   virtual Bool_t Set(Int_t i, Int_t j, TObject*, Bool_t replace) = 0;
26   virtual Bool_t IsOwner() const = 0;
27   
28 private:  
29   ClassDef(AliMUONV2DStore,0) // 
30 };
31
32 #endif