AliRoot Core  3dc7879 (3dc7879)
AliMUONContour.cxx
Go to the documentation of this file.
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 
23 
24 #include "AliMUONContour.h"
25 
26 #include "AliLog.h"
27 #include "AliMUONPolygon.h"
28 #include "AliMpArea.h"
29 #include <Riostream.h>
30 #include <TGeoMatrix.h>
31 #include <TMath.h>
32 #include <TObjArray.h>
33 #include <TPolyLine.h>
34 #include <TString.h>
35 #include <TVector2.h>
36 #include <float.h>
37 
38 using std::cout;
39 using std::endl;
41 ClassImp(AliMUONContour)
43 
44 //_____________________________________________________________________________
45 AliMUONContour::AliMUONContour(const char* name) : TNamed(name,""),
46 fPolygons(new TObjArray),
47 fXmin(FLT_MAX),
48 fXmax(-FLT_MAX),
49 fYmin(FLT_MAX),
50 fYmax(-FLT_MAX),
51 fNofVertices(0)
52 {
54  fPolygons->SetOwner(kTRUE);
55 }
56 
57 //_____________________________________________________________________________
58 AliMUONContour::AliMUONContour(const char* name, const AliMpArea& area)
59 : TNamed(name,""),
60 fPolygons(new TObjArray),
61 fXmin(area.LeftBorder()),
62 fXmax(area.RightBorder()),
63 fYmin(area.DownBorder()),
64 fYmax(area.UpBorder()),
65 fNofVertices(0)
66 {
68  fPolygons->SetOwner(kTRUE);
69 
70  AliMUONPolygon* pol = new AliMUONPolygon(area.GetPositionX(),
71  area.GetPositionY(),
72  area.GetDimensionX(),
73  area.GetDimensionY());
74 
75  fPolygons->AddLast(pol);
76 
78 }
79 
80 //______________________________________________________________________________
82 : TNamed(rhs),
83 fPolygons(0x0),
84 fXmin(FLT_MAX),
85 fXmax(-FLT_MAX),
86 fYmin(FLT_MAX),
87 fYmax(-FLT_MAX),
88 fNofVertices(0)
89 {
91 
92  ((AliMUONContour&)rhs).Copy(*this);
93 }
94 
95 //______________________________________________________________________________
98 {
100  if ( this != &rhs )
101  {
102  delete fPolygons;
103  fPolygons = 0;
104  rhs.Copy(*this);
105  }
106  return *this;
107 }
108 
109 //_____________________________________________________________________________
111 {
113  delete fPolygons;
114 }
115 
116 //_____________________________________________________________________________
117 void
119 {
121 
122  for ( Int_t i = 0; i < polygon.NumberOfVertices(); ++i )
123  {
124  Double_t x = polygon.X(i);
125  Double_t y = polygon.Y(i);
126  fXmin = TMath::Min(fXmin,x);
127  fXmax = TMath::Max(fXmax,x);
128  fYmin = TMath::Min(fYmin,y);
129  fYmax = TMath::Max(fYmax,y);
130  }
131 
132  fPolygons->AddLast(new AliMUONPolygon(polygon));
133 
134  fNofVertices += polygon.NumberOfVertices();
135 }
136 
137 //_____________________________________________________________________________
138 AliMpArea
140 {
143 
144  return AliMpArea( (fXmax+fXmin)/2.0, (fYmax+fYmin)/2.0 ,
145  TMath::Abs(fXmax-fXmin)/2.0, TMath::Abs(fYmax-fYmin)/2.0 );
146 }
147 
148 //______________________________________________________________________________
149 void
151 {
157 
158  for ( Int_t i = 0; i <= fPolygons->GetLast(); ++i )
159  {
160  AliMUONPolygon* pol = static_cast<AliMUONPolygon*>(fPolygons->UncheckedAt(i));
161  if ( !pol->IsCounterClockwiseOriented() )
162  {
163  if ( autoCorrect )
164  {
165  pol->ReverseOrientation();
166  }
167  else
168  {
169  AliError("Got a polygon oriented the wrong way");
171  return;
172  }
173  }
174  }
175 }
176 
177 //______________________________________________________________________________
178 void AliMUONContour::Copy(TObject& obj) const
179 {
181 
182  AliMUONContour& rhs = static_cast<AliMUONContour&>(obj);
183  TNamed::Copy(rhs);
184  delete rhs.fPolygons;
185  rhs.fPolygons = new TObjArray(fPolygons->GetLast()+1);
186  rhs.fPolygons->SetOwner(kTRUE);
187  TIter next(fPolygons);
188  AliMUONPolygon* pol;
189  while ( ( pol = static_cast<AliMUONPolygon*>(next()) ) )
190  {
191  rhs.fPolygons->AddLast(pol->Clone());
192  }
193  rhs.fXmin = fXmin;
194  rhs.fXmax = fXmax;
195  rhs.fYmin = fYmin;
196  rhs.fYmax = fYmax;
198 }
199 
200 //_____________________________________________________________________________
201 Bool_t
202 AliMUONContour::IsInside(Double_t x, Double_t y) const
203 {
205 
206  if ( x >= fXmin && x <= fXmax && y >= fYmin && y <= fYmax )
207  {
208  TIter next(fPolygons);
209  AliMUONPolygon* pol;
210  while ( ( pol = static_cast<AliMUONPolygon*>(next()) ) )
211  {
212  if ( pol->Contains(x,y) )
213  {
214  return kTRUE;
215  }
216  }
217  }
218 
219  return kFALSE;
220 }
221 
222 //_____________________________________________________________________________
223 void
224 AliMUONContour::Offset(Double_t x, Double_t y)
225 {
227 
228  TIter next(fPolygons);
229  AliMUONPolygon* pol;
230 
231  while ( ( pol = static_cast<AliMUONPolygon*>(next()) ) )
232  {
233  for ( Int_t i = 0; i < pol->NumberOfVertices(); ++i )
234  {
235  pol->SetVertex(i,pol->X(i)+x,pol->Y(i)+y);
236  }
237  }
238 
239  fXmin += x;
240  fXmax += x;
241  fYmin += y;
242  fYmax += y;
243 }
244 
245 //_____________________________________________________________________________
246 void
247 AliMUONContour::Print(Option_t* opt) const
248 {
250 
251  cout << GetName() << " NofVertices=" << NumberOfVertices() << " Ngroups=" << fPolygons->GetLast()+1 << endl;
252  TString sopt(opt);
253  sopt.ToUpper();
254  if (sopt.Contains("B"))
255  {
256  Area().Print("B");
257  }
258 
259  TIter next(fPolygons);
260  AliMUONPolygon* pol;
261  while ( ( pol = static_cast<AliMUONPolygon*>(next()) ) )
262  {
263  pol->Print(opt);
264  }
265 
266 
267  cout << endl;
268 }
269 
270 //_____________________________________________________________________________
271 void
272 AliMUONContour::Transform(const TGeoHMatrix& matrix)
273 {
275 
276  TIter next(fPolygons);
277  AliMUONPolygon* pol;
278 
279  fXmin = fYmin = FLT_MAX;
280  fXmax = fYmax = -FLT_MAX;
281 
282  while ( ( pol = static_cast<AliMUONPolygon*>(next()) ) )
283  {
284  for ( Int_t i = 0; i < pol->NumberOfVertices(); ++i )
285  {
286  Double_t pl[3] = { pol->X(i), pol->Y(i), 0 };
287  Double_t pg[3] = { 0., 0., 0. };
288  matrix.LocalToMaster(pl, pg);
289  pol->SetVertex(i,pg[0],pg[1]);
290  fXmin = TMath::Min(fXmin,pg[0]);
291  fYmin = TMath::Min(fYmin,pg[1]);
292  fXmax = TMath::Max(fXmax,pg[0]);
293  fYmax = TMath::Max(fYmax,pg[1]);
294  }
295  }
296 
297  AssertOrientation(kTRUE);
298 }
299 
300 //_____________________________________________________________________________
301 Bool_t
303 {
305  return fNofVertices >= 3 && Area().IsValid();
306 }
Double_t Y(Int_t i) const
Return the y-coordinate of the i-th vertex.
AliMpArea Area() const
Double_t GetDimensionY() const
Return y dimensions.
Definition: AliMpArea.h:81
Double_t GetPositionY() const
Return y position.
Definition: AliMpArea.h:77
#define TObjArray
Double_t fXmax
max x-value
A planar polygon.
void AssertOrientation(Bool_t autoCorrect=kFALSE)
A rectangle area positioned in plane..
Definition: AliMpArea.h:20
Int_t NumberOfVertices() const
Get the number of vertices of this contour.
Bool_t IsCounterClockwiseOriented() const
Whether this polygon is oriented counter clockwise.
void Print(Option_t *opt="") const
void Offset(Double_t x, Double_t y)
Add an offset to all points.
Int_t NumberOfVertices() const
Get the number of vertices of this polygon.
Double_t X(Int_t i) const
Return the x-coordinate of the i-th vertex.
AliMUONContour & operator=(const AliMUONContour &rhs)
void Add(const AliMUONPolygon &polygon)
void Print(Option_t *opt="") const
Definition: AliMpArea.cxx:252
Double_t GetDimensionX() const
Return x dimensions.
Definition: AliMpArea.h:79
virtual void Copy(TObject &obj) const
Int_t fNofVertices
total number of vertices
Double_t fYmax
max y-value
void SetVertex(Int_t i, Double_t x, Double_t y)
Double_t GetPositionX() const
Return x position.
Definition: AliMpArea.h:75
Double_t fXmin
min x-value
virtual void Print(Option_t *opt="") const
Double_t fYmin
min y-value
#define StdoutToAliError(whatever)
Definition: AliLog.h:619
virtual ~AliMUONContour()
2D contour
Bool_t IsValid() const
Return validity.
Definition: AliMpArea.h:83
#define AliError(message)
Definition: AliLog.h:591
Bool_t IsInside(Double_t x, Double_t y) const
AliMUONContour(const char *name="")
virtual TObject * Clone(const char *="") const
Create a full copy of this object.
void Transform(const TGeoHMatrix &matrix)
Apply a global transformation to all points.
TObjArray * fPolygons
the polygons that this contour is made of
Bool_t Contains(Double_t x, Double_t y) const
Bool_t IsValid() const