]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONCheckItemIterator.h
Remove now unused method DigitResponse (and usage of TransientDigit) (Laurent)
[u/mrichter/AliRoot.git] / MUON / AliMUONCheckItemIterator.h
1 #ifndef ALIMUONCHECKITEMITERATOR_H
2 #define ALIMUONCHECKITEMITERATOR_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 shuttle
10 /// \class AliMUONCheckItemIterator
11 /// \brief Iterator on CheckItem
12 /// 
13 /// \author Laurent Aphecetche
14
15 #ifndef ROOT_TObject
16 #  include "TObject.h"
17 #endif
18
19 class AliMUONCheckItem;
20 class TExMapIter;
21
22 class AliMUONCheckItemIterator : public TObject
23 {
24 public:
25   AliMUONCheckItemIterator();
26   AliMUONCheckItemIterator(const AliMUONCheckItem& object);
27   virtual ~AliMUONCheckItemIterator();
28
29   void First();
30   TObject* Next();
31   
32 private:
33   AliMUONCheckItemIterator(const AliMUONCheckItemIterator&);
34   AliMUONCheckItemIterator& operator=(const AliMUONCheckItemIterator&);
35   
36 private:
37   TExMapIter* fIter; //!< the actual iterator doing the job
38   
39   ClassDef(AliMUONCheckItemIterator,1) // Iterator for AliMUONCheckItem objects
40 };
41
42 #endif