]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONV1DStore.h
Added for setting include paths
[u/mrichter/AliRoot.git] / MUON / AliMUONV1DStore.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 AliMUON1DStore
8/// \brief Generic container indexed by a detection element ID
9///
10/// \author Laurent Aphecetche
11
12#ifndef AliMUONV1DSTORE_H
13#define AliMUONV1DSTORE_H
14
15#ifndef ROOT_TObject
16# include "TObject.h"
17#endif
18
19class AliMUONV1DStore : public TObject
20{
21public:
22
23 virtual ~AliMUONV1DStore();
24
25 virtual TObject* Get(Int_t detElemId) const = 0;
26
27 virtual Bool_t Set(Int_t detElemId, TObject*, Bool_t replace) = 0;
28
29 virtual Bool_t IsOwner() const = 0;
30
31private:
32
33 ClassDef(AliMUONV1DStore,0) //
34};
35
36#endif