]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/MUONmapping/AliMpSectorAreaVPadIterator.cxx
Fixes for object target dependencies
[u/mrichter/AliRoot.git] / MUON / MUONmapping / AliMpSectorAreaVPadIterator.cxx
CommitLineData
dee1d5f1 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
5f91c9e8 16// $Id$
13985652 17// $MpId: AliMpSectorAreaVPadIterator.cxx,v 1.8 2006/05/24 13:58:46 ivana Exp $
5f91c9e8 18// Category: sector
3d1463c8 19
20//-----------------------------------------------------------------------------
5f91c9e8 21// Class AliMpSectorAreaVPadIterator
22// ---------------------------------
23// Class, which defines an iterator over the pads
24// inside a given area in a sector in vertical direction.
dbe945cc 25// Included in AliRoot: 2003/05/02
5f91c9e8 26// Authors: David Guez, Ivana Hrivnacova; IPN Orsay
3d1463c8 27//-----------------------------------------------------------------------------
5f91c9e8 28
5f91c9e8 29#include "AliMpSectorAreaVPadIterator.h"
30#include "AliMpSectorSegmentation.h"
31#include "AliMpConstants.h"
32
97186a3f 33#include "AliLog.h"
34
2c605e66 35#include <Riostream.h>
36
13985652 37/// \cond CLASSIMP
5f91c9e8 38ClassImp(AliMpSectorAreaVPadIterator)
13985652 39/// \endcond
5f91c9e8 40
41//______________________________________________________________________________
42AliMpSectorAreaVPadIterator::AliMpSectorAreaVPadIterator(
43 const AliMpSectorSegmentation* segmentation,
44 const AliMpArea& area)
45 : AliMpVPadIterator(),
46 fkSegmentation(segmentation),
47 fkArea(area),
48 fCurrentPad(AliMpPad::Invalid()),
49 fCurrentColumnPosition(0.)
50{
dee1d5f1 51/// Standard constructor, start in invalid position
5f91c9e8 52}
53
54//______________________________________________________________________________
55AliMpSectorAreaVPadIterator::AliMpSectorAreaVPadIterator(
56 const AliMpSectorAreaVPadIterator& right)
0471c97b 57 : AliMpVPadIterator(right),
58 fkSegmentation(0),
59 fkArea(AliMpArea()),
60 fCurrentPad(AliMpPad::Invalid()),
61 fCurrentColumnPosition(0.)
5f91c9e8 62{
0471c97b 63/// Copy constructor
5f91c9e8 64
0471c97b 65 *this = right;
5f91c9e8 66}
67
68//______________________________________________________________________________
69AliMpSectorAreaVPadIterator::AliMpSectorAreaVPadIterator()
70 : AliMpVPadIterator(),
71 fkSegmentation(0),
72 fkArea(AliMpArea()),
73 fCurrentPad(AliMpPad::Invalid()),
74 fCurrentColumnPosition(0.)
75{
dee1d5f1 76/// Default constructor.
5f91c9e8 77}
78
79//______________________________________________________________________________
80AliMpSectorAreaVPadIterator::~AliMpSectorAreaVPadIterator()
81{
dee1d5f1 82/// Destructor
5f91c9e8 83}
84
85//
86// operators
87//
88
89//______________________________________________________________________________
90AliMpSectorAreaVPadIterator&
91AliMpSectorAreaVPadIterator::operator = (const AliMpSectorAreaVPadIterator& right)
92{
dee1d5f1 93/// Assignment operator
5f91c9e8 94
dee1d5f1 95 // check assignment to self
5f91c9e8 96 if (this == &right) return *this;
97
dee1d5f1 98 // base class assignment
5f91c9e8 99 AliMpVPadIterator::operator=(right);
100
101 fkSegmentation = right.fkSegmentation;
102 fkArea = right.fkArea;
103 fCurrentPad = right.fCurrentPad;
104 fCurrentColumnPosition = right.fCurrentColumnPosition;
105
106 return *this;
107}
108
109//
110// private methods
111//
112
113//______________________________________________________________________________
114Bool_t AliMpSectorAreaVPadIterator::IsValid() const
115{
dee1d5f1 116/// Is the iterator in a valid position?
5f91c9e8 117
118 return fCurrentPad.IsValid() ;
119}
120
121//______________________________________________________________________________
122void AliMpSectorAreaVPadIterator::MoveRight()
123{
dee1d5f1 124/// Increase the current row position and searches the first valid pad.
5f91c9e8 125
6e97fbb8 126 Double_t dx = fkSegmentation->GetMinPadDimensionX();
5f91c9e8 127
128 while ( !fCurrentPad.IsValid() &&
25a9f565 129 fCurrentColumnPosition + dx < fkArea.RightBorder())
5f91c9e8 130 {
25a9f565 131 fCurrentColumnPosition += 2.*dx;
5f91c9e8 132
6e97fbb8 133 fCurrentPad
134 = fkSegmentation->PadByDirection(fCurrentColumnPosition, fkArea.DownBorder(),
135 fkArea.UpBorder());
5f91c9e8 136 }
137}
138
139//
140// public methods
141//
142
143//______________________________________________________________________________
144void AliMpSectorAreaVPadIterator::First()
145{
dee1d5f1 146/// Reset the iterator, so that it points to the first available
147/// pad in the area
5f91c9e8 148
149 if (!fkSegmentation) {
0471c97b 150 AliFatal("Segmentation is not defined");
5f91c9e8 151 return;
152 }
153
154 // Start position = left down corner of the area
155 //
bd7175ff 156 fCurrentColumnPosition = fkArea.LeftBorder();
6e97fbb8 157
158 Double_t posx, posy;
159 fkArea.LeftDownCorner(posx, posy);
5f91c9e8 160
6e97fbb8 161 fCurrentPad = fkSegmentation->PadByDirection(posx, posy, fkArea.UpBorder());
5f91c9e8 162
163 MoveRight();
164
165 // Set the column position to the center of pad
166 //
6e97fbb8 167 if (fCurrentPad.IsValid()) fCurrentColumnPosition = fCurrentPad.GetPositionX();
5f91c9e8 168}
169
170//______________________________________________________________________________
171void AliMpSectorAreaVPadIterator::Next()
172{
dee1d5f1 173/// Move the iterator to the next valid pad.
5f91c9e8 174
175 if (!IsValid()) return;
176
177 // Start position = up board of current pad + little step
178 //
6e97fbb8 179 fCurrentPad
180 = fkSegmentation->PadByDirection(
181 fCurrentPad.GetPositionX(),
182 fCurrentPad.GetPositionY() + fCurrentPad.GetDimensionY() +
183 AliMpConstants::LengthStep(),
184 fkArea.UpBorder());
5f91c9e8 185
186 if (fCurrentPad.IsValid()) return;
187
188 MoveRight();
189}
190
191//______________________________________________________________________________
192Bool_t AliMpSectorAreaVPadIterator::IsDone() const
193{
dee1d5f1 194/// Is the iterator in the end ?
195
5f91c9e8 196 return !IsValid();
197}
198
199//______________________________________________________________________________
200AliMpPad AliMpSectorAreaVPadIterator::CurrentItem () const
201{
dee1d5f1 202/// Return current pad.
5f91c9e8 203
204 return fCurrentPad;
205}
206//______________________________________________________________________________
207void AliMpSectorAreaVPadIterator::Invalidate()
208{
dee1d5f1 209/// Let the iterator point to the invalid position
210
5f91c9e8 211 fCurrentPad = AliMpPad::Invalid();
212 fCurrentColumnPosition = 0;
213}
214
215
216