]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONCheckItemIterator.h
Updated list of MUON libraries
[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
5cc83322 9/// \ingroup calib
ea199e33 10/// \class AliMUONCheckItemIterator
11/// \brief Iterator on CheckItem
12///
78649106 13// Author Laurent Aphecetche
ea199e33 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:
71a2d3aa 33 /// Not implemented
ea199e33 34 AliMUONCheckItemIterator(const AliMUONCheckItemIterator&);
71a2d3aa 35 /// Not implemented
ea199e33 36 AliMUONCheckItemIterator& operator=(const AliMUONCheckItemIterator&);
37
38private:
39 TExMapIter* fIter; //!< the actual iterator doing the job
40
41 ClassDef(AliMUONCheckItemIterator,1) // Iterator for AliMUONCheckItem objects
42};
43
44#endif