source: trunk/MagicSoft/Mars/mgui/MHexagon.cc@ 1422

Last change on this file since 1422 was 1405, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 7.5 KB
Line 
1/* ======================================================================== *\
2!
3! *
4! * This file is part of MARS, the MAGIC Analysis and Reconstruction
5! * Software. It is distributed to you in the hope that it can be a useful
6! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
7! * It is distributed WITHOUT ANY WARRANTY.
8! *
9! * Permission to use, copy, modify and distribute this software and its
10! * documentation for any purpose is hereby granted without fee,
11! * provided that the above copyright notice appear in all copies and
12! * that both that copyright notice and this permission notice appear
13! * in supporting documentation. It is provided "as is" without express
14! * or implied warranty.
15! *
16!
17!
18! Author(s): Thomas Bretz 12/2000 <mailto:tbretz@astro.uni-wuerzburg.de>
19! Author(s): Harald Kornmayer 1/2001
20!
21! Copyright: MAGIC Software Development, 2000-2002
22!
23!
24\* ======================================================================== */
25
26//////////////////////////////////////////////////////////////////////////////
27// //
28// MHexagon //
29// //
30//////////////////////////////////////////////////////////////////////////////
31
32#include "MHexagon.h"
33
34#include <fstream.h>
35#include <iostream.h>
36
37#include <TVirtualPad.h> // gPad
38
39#include "MGeomPix.h" // GetX
40
41ClassImp(MHexagon);
42
43// ------------------------------------------------------------------------
44//
45// default constructor for MHexagon
46//
47MHexagon::MHexagon()
48{
49}
50
51// ------------------------------------------------------------------------
52//
53// normal constructor for MHexagon
54//
55MHexagon::MHexagon(Float_t x, Float_t y, Float_t d)
56: TAttLine(1, 1, 1), TAttFill(0, 1001), fX(x), fY(y), fD(d)
57{
58}
59
60// ------------------------------------------------------------------------
61//
62// normal constructor for MHexagon
63//
64MHexagon::MHexagon(MGeomPix &pix)
65: TAttLine(1, 1, 1), TAttFill(0, 1001)
66{
67 fX = pix.GetX();
68 fY = pix.GetY();
69 fD = pix.GetR();
70}
71
72// ------------------------------------------------------------------------
73//
74// copy constructor for MHexagon
75//
76MHexagon::MHexagon(const MHexagon &hexagon)
77{
78 ((MHexagon&) hexagon).Copy(*this);
79}
80
81// ------------------------------------------------------------------------
82//
83// default destructor for MHexagon
84//
85MHexagon::~MHexagon()
86{
87}
88
89// ------------------------------------------------------------------------
90//
91// copy this hexagon to hexagon
92//
93void MHexagon::Copy(TObject &obj)
94{
95 MHexagon &hex = (MHexagon&) obj;
96
97 TObject::Copy(obj);
98 TAttLine::Copy(hex);
99 TAttFill::Copy(hex);
100
101 hex.fX = fX;
102 hex.fY = fY;
103 hex.fD = fD;
104}
105
106// ------------------------------------------------------------------------
107//
108// compute the distance of a point (px,py) to the Hexagon
109// this functions needed for graphical primitives, that
110// means without this function you are not able to interact
111// with the graphical primitive with the mouse!!!
112//
113// All calcutations are running in pixel coordinates
114//
115Int_t MHexagon::DistancetoPrimitive(Int_t px, Int_t py)
116{
117 //
118 // compute the distance of the Point to the center of the Hexagon
119 //
120 const Int_t pxhex = gPad->XtoAbsPixel(fX);
121 const Int_t pyhex = gPad->YtoAbsPixel(fY);
122
123 const Double_t disthex = TMath::Sqrt((Double_t)((pxhex-px)*(pxhex-px) + (pyhex-py)*(pyhex-py)));
124
125 if (disthex==0)
126 return 0;
127
128 const Double_t cosa = TMath::Abs(px-pxhex) / disthex;
129 const Double_t sina = TMath::Abs(py-pyhex) / disthex;
130
131 //
132 // comput the distance to pixel border
133 //
134 const Double_t dx = fD * cosa / 2;
135 const Double_t dy = fD * sina / 2;
136
137 const Double_t xborder = fX + dx;
138 const Double_t yborder = fY + dy;
139
140 const Int_t pxborder = gPad->XtoAbsPixel(xborder);
141 const Int_t pyborder = gPad->YtoAbsPixel(yborder);
142
143 const Double_t distborder = TMath::Sqrt((Double_t)((pxborder-pxhex)*(pxborder-pxhex)+(pyborder-pyhex)*(pyborder-pyhex)));
144
145 //
146 // compute the distance from the border of Pixel
147 // here in the first implementation is just circle inside
148 //
149 return distborder < disthex ? 999999 : 0;
150}
151
152// ------------------------------------------------------------------------
153//
154// Draw this ellipse with new coordinate
155//
156void MHexagon::DrawHexagon(Float_t x, Float_t y, Float_t d)
157{
158 MHexagon *newhexagon = new MHexagon(x, y, d);
159
160 TAttLine::Copy(*newhexagon);
161 TAttFill::Copy(*newhexagon);
162
163 newhexagon->SetBit(kCanDelete);
164 newhexagon->AppendPad();
165}
166
167/*
168// ------------------------------------------------------------------------
169//
170// This is the first test of implementing a clickable interface
171// for one pixel
172//
173void MHexagon::ExecuteEvent(Int_t event, Int_t px, Int_t py)
174{
175 switch (event)
176 {
177 case kButton1Down:
178 cout << endl << "kButton1Down" << endl;
179 SetFillColor(2);
180 gPad->Modified();
181 break;
182
183 case kButton1Double:
184 SetFillColor(0);
185 gPad->Modified();
186 break;
187 // case kMouseEnter:
188 // printf ("\n Mouse inside object \n" ) ;
189 // break;
190 }
191}
192*/
193
194// ------------------------------------------------------------------------
195//
196// list this hexagon with its attributes
197//
198void MHexagon::ls(const Option_t *) const
199{
200 TROOT::IndentLevel();
201 Print();
202}
203
204// ------------------------------------------------------------------------
205//
206// paint this hexagon with its attribute
207//
208void MHexagon::Paint(Option_t *)
209{
210 PaintHexagon(fX, fY, fD);
211}
212
213// ------------------------------------------------------------------------
214//
215// draw this hexagon with the coordinates
216//
217void MHexagon::PaintHexagon(Float_t inX, Float_t inY, Float_t inD)
218{
219
220 const Int_t np = 6;
221
222 const Float_t dx[np+1] = { .5 , 0. , -.5 , -.5 , 0. , .5 , .5 };
223 const Float_t dy[np+1] = { .2886, .5772, .2886, -.2886, -.5772, -.2886, .2886 };
224
225 static Float_t x[np+1], y[np+1];
226
227 TAttLine::Modify(); // Change line attributes only if neccessary
228 TAttFill::Modify(); // Change fill attributes only if neccessary
229
230 // calculate the positions of the pixel corners
231
232 for (Int_t i=0; i<=np; i++)
233 {
234 x[i] = inX + dx[i]* inD;
235 y[i] = inY + dy[i]* inD;
236 }
237
238 // paint the pixel (hopefully)
239
240 if (GetFillColor())
241 gPad->PaintFillArea(np, x, y);
242
243 if (GetLineStyle())
244 gPad->PaintPolyLine(np+1, x, y);
245
246}
247
248// ------------------------------------------------------------------------
249//
250// print/dump this hexagon with its attributes
251//
252void MHexagon::Print(Option_t *) const
253{
254 cout << "MHexagon: ";
255 cout << "x=" << fX << "mm y=" << fY << "mm r=" << fD << "mm" << endl;
256
257 cout << " Line:";
258 cout << " Color=" << GetLineColor() << ",";
259 cout << " Style=" << GetLineStyle() << ",";
260 cout << " Width=" << GetLineWidth() << endl;
261 cout << " Fill:";
262 cout << " Color=" << GetFillColor() << ",";
263 cout << " Style=" << GetFillStyle() << endl;
264}
265
266// ------------------------------------------------------------------------
267//
268// Save primitive as a C++ statement(s) on output stream out
269//
270void MHexagon::SavePrimitive(ofstream &out, Option_t *)
271{
272
273 if (gROOT->ClassSaved(MHexagon::Class()))
274 out << " ";
275 else
276 out << " MHexagon *";
277
278 out << "hexagon = new MHexagon(" << fX << "," << fY << "," << fD << ");" << endl;
279
280 SaveFillAttributes(out, "hexagon");
281 SaveLineAttributes(out, "hexagon");
282
283 out << " hexagon->Draw();" << endl;
284}
285
Note: See TracBrowser for help on using the repository browser.