]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONCheckItemIterator.h
- The part of JETAN dealing with ESD data has been separated from the one using MC...
[u/mrichter/AliRoot.git] / MUON / AliMUONCheckItemIterator.h
CommitLineData
ea199e33 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
19class AliMUONCheckItem;
20class TExMapIter;
21
22class AliMUONCheckItemIterator : public TObject
23{
24public:
25 AliMUONCheckItemIterator();
26 AliMUONCheckItemIterator(const AliMUONCheckItem& object);
27 virtual ~AliMUONCheckItemIterator();
28
29 void First();
30 TObject* Next();
31
32private:
33 AliMUONCheckItemIterator(const AliMUONCheckItemIterator&);
34 AliMUONCheckItemIterator& operator=(const AliMUONCheckItemIterator&);
35
36private:
37 TExMapIter* fIter; //!< the actual iterator doing the job
38
39 ClassDef(AliMUONCheckItemIterator,1) // Iterator for AliMUONCheckItem objects
40};
41
42#endif