]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUON2DMapIteratorByI.cxx
AliMUONDigitCalibrator
[u/mrichter/AliRoot.git] / MUON / AliMUON2DMapIteratorByI.cxx
1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 *                                                                        *
4 * Author: The ALICE Off-line Project.                                    *
5 * Contributors are mentioned in the code where appropriate.              *
6 *                                                                        *
7 * Permission to use, copy, modify and distribute this software and its   *
8 * documentation strictly for non-commercial purposes is hereby granted   *
9 * without fee, provided that the above copyright notice appears in all   *
10 * copies and that both the copyright notice and this permission notice   *
11 * appear in the supporting documentation. The authors make no claims     *
12 * about the suitability of this software for any purpose. It is          *
13 * provided "as is" without express or implied warranty.                  *
14 **************************************************************************/
15
16 // $Id$
17
18 //-----------------------------------------------------------------------------
19 /// \class AliMUON2DMapIteratorByI
20 ///
21 /// Implementation of TIterator for 2D maps
22 /// 
23 /// An implementation of TIterator for 2D maps, which can iterate
24 /// on a range of i values (i being the first element of the couple
25 /// (i,j) used to index values in the map).
26 ///
27 /// \author Laurent Aphecetche
28 //-----------------------------------------------------------------------------
29
30 #include "AliMUON2DMapIteratorByI.h"
31 #include "AliMpExMapIterator.h"
32 #include "AliMpExMap.h"
33 #include "AliLog.h"
34
35 /// \cond CLASSIMP
36 ClassImp(AliMUON2DMapIteratorByI)
37 /// \endcond
38
39 //_____________________________________________________________________________
40 AliMUON2DMapIteratorByI::AliMUON2DMapIteratorByI(const AliMpExMap& theMap, Int_t firstI, Int_t lastI)
41 : TIterator(),
42 fkMap(&theMap),
43 fIter1(theMap.CreateIterator()),
44 fIter2(0x0),
45 fFirstI(firstI),
46 fLastI(lastI),
47 fCurrentI(-1)
48 {
49   /// default ctor
50   Reset();
51 }
52
53 //_____________________________________________________________________________
54 TIterator& 
55 AliMUON2DMapIteratorByI::operator=(const TIterator& rhs)
56 {
57   /// overriden operator= (imposed by Root's definition of TIterator::operator= ?)
58   
59   if ( this != &rhs && rhs.IsA() == AliMUON2DMapIteratorByI::Class() ) 
60   {
61     //    const AliMUON2DMapIteratorByI& rhs1 = static_cast<const AliMUON2DMapIteratorByI&>(rhs);
62     AliFatalGeneral("operator=(TIterator&)",""); // as in copy ctor
63   }
64   return *this;
65 }
66
67 //_____________________________________________________________________________
68 AliMUON2DMapIteratorByI::~AliMUON2DMapIteratorByI()
69 {
70   /// dtor
71 }
72
73 //_____________________________________________________________________________
74 const TCollection* 
75 AliMUON2DMapIteratorByI::GetCollection() const
76 {
77   /// Return 0 as we're not really dealing with a Root TCollection...
78   return 0x0;
79 }
80
81 //_____________________________________________________________________________
82 AliMpExMapIterator*
83 AliMUON2DMapIteratorByI::NextIterator()
84 {
85   /// Get next map (from fIter1) and create an iterator to it
86   
87   AliMpExMap* m = static_cast<AliMpExMap*>(fIter1->Next(fCurrentI));
88   
89   if (!m) return 0x0;
90   
91   if ( fCurrentI < fFirstI || fCurrentI > fLastI ) return NextIterator(); // try again
92
93   return m->CreateIterator();
94 }
95
96 //_____________________________________________________________________________
97 TObject*
98 AliMUON2DMapIteratorByI::Next()
99 {
100   /// return next object
101
102   if (!fIter2) return 0x0;
103   
104   TObject* o = fIter2->Next();
105   
106   if (!o)
107   {
108     fIter2 = NextIterator();
109     return Next();
110   }  
111   
112   return o;
113 }
114
115 //_____________________________________________________________________________
116 void
117 AliMUON2DMapIteratorByI::Reset()
118 {
119   /// rewind the iterator
120   
121   delete fIter2;
122   fIter1->Reset();
123   fIter2 = NextIterator();
124   fCurrentI = -1;
125 }
126