Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TMarker.cxx
Go to the documentation of this file.
1// @(#)root/graf:$Id$
2// Author: Rene Brun 12/05/95
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#include "TROOT.h"
13#include "TBuffer.h"
14#include "TVirtualPad.h"
15#include "TVirtualPadPainter.h"
16#include "TMarker.h"
17#include "TMath.h"
18#include "TPoint.h"
19#include "TText.h"
20
21#include <cstdlib>
22#include <iostream>
23#include <cstdio>
24
25
26/** \class TMarker
27\ingroup BasicGraphics
28
29Manages Markers.
30
31Use the TMarker constructor to create a marker.
32
33~~~ {.cpp}
34 TMarker(Double_t x,Double_t y,Int_t marker)
35~~~
36
37The parameters `x` and `y` are the marker coordinates and `marker` is the marker type.
38
39Use the TPolyMarker to create an array on N points in a 2D space.
40At each point `x[i]`, `y[i]` a marker is drawn.
41
42Use the TAttMarker class to change the attributes color, style and size of a marker.
43
44_**Example**_
45
46- Use the `TAttMarker::SetMarkerSize(size)` method to set the `size` of a marker.
47
48*/
49
50////////////////////////////////////////////////////////////////////////////////
51/// Marker default constructor.
52
54{
55 fX = 0;
56 fY = 0;
57}
58
59////////////////////////////////////////////////////////////////////////////////
60/// Marker normal constructor.
61
64{
65 fX = x;
66 fY = y;
67 fMarkerStyle = marker;
68}
69
70////////////////////////////////////////////////////////////////////////////////
71/// Marker default destructor.
72
76
77////////////////////////////////////////////////////////////////////////////////
78/// Marker copy constructor.
79
80TMarker::TMarker(const TMarker &marker) : TObject(marker), TAttMarker(marker), TAttBBox2D(marker)
81{
82 fX = 0;
83 fY = 0;
84 marker.TMarker::Copy(*this);
85}
86
87////////////////////////////////////////////////////////////////////////////////
88/// Copy this marker to marker.
89
90void TMarker::Copy(TObject &obj) const
91{
92 TObject::Copy(obj);
93 TAttMarker::Copy(((TMarker &)obj));
94 ((TMarker &)obj).fX = fX;
95 ((TMarker &)obj).fY = fY;
96}
97
98////////////////////////////////////////////////////////////////////////////////
99/// Display the table of markers with their numbers.
100
102{
103 TMarker marker;
104 TText text;
105 marker.SetMarkerSize(3);
106 text.SetTextFont(62);
107 text.SetTextAlign(22);
108 text.SetTextSize(0.1);
110 Double_t x = 0;
111 Double_t dx = 1/16.0;
112 for (Int_t i=1;i<16;i++) {
113 x += dx;
114 atext.Form("%d",i);
115 marker.SetMarkerStyle(i);
116 marker.DrawMarker(x,.25);
117 text.DrawText(x,.12,atext.Data());
118 atext.Form("%d",i+19);
119 marker.SetMarkerStyle(i+19);
120 marker.DrawMarker(x,.55);
121 text.DrawText(x,.42,atext.Data());
122 atext.Form("%d",i+34);
123 marker.SetMarkerStyle(i+34);
124 marker.DrawMarker(x,.85);
125 text.DrawText(x,.72,atext.Data());
126 }
127}
128
129////////////////////////////////////////////////////////////////////////////////
130/// Display the table of markers with different line widths and their numbers.
131
133{
134 TMarker marker;
135 TText text;
136 marker.SetMarkerSize(3);
137 text.SetTextFont(62);
138 text.SetTextAlign(22);
139 text.SetTextSize(0.075);
141 Double_t x = 0;
142 Double_t dx = 1/19.0;
143 for (Int_t i=1;i<19;i++) {
144 x += dx;
145 atext.Form("%d",i+49);
146 marker.SetMarkerStyle(i+49);
147 marker.DrawMarker(x,0.19);
148 text.DrawText(x,0.08,atext.Data());
149 atext.Form("%d",i+67);
150 marker.SetMarkerStyle(i+67);
151 marker.DrawMarker(x,0.42);
152 text.DrawText(x,0.31,atext.Data());
153 atext.Form("%d",i+85);
154 marker.SetMarkerStyle(i+85);
155 marker.DrawMarker(x,0.65);
156 text.DrawText(x,0.54,atext.Data());
157 atext.Form("%d",i+103);
158 marker.SetMarkerStyle(i+103);
159 marker.DrawMarker(x,0.88);
160 text.DrawText(x,0.77,atext.Data());
161 }
162}
163
164////////////////////////////////////////////////////////////////////////////////
165/// Compute distance from point px,py to a marker.
166///
167/// Compute the closest distance of approach from point px,py to this marker.
168/// The distance is computed in pixels units.
169/// \return 0 if the distance <= markerRadius
170/// exact computed distance if dist in [markerRadius+1, markerRadius+2]
171/// 999 if larger than markerRadius + 3
172/// 9999 if no pad
173
175{
176 if (!gPad) return 9999;
177 Int_t pxm, pym;
178 if (TestBit(kMarkerNDC)) {
179 pxm = gPad->UtoAbsPixel(fX);
180 pym = gPad->VtoAbsPixel(fY);
181 } else {
182 pxm = gPad->XtoAbsPixel(gPad->XtoPad(fX));
183 pym = gPad->YtoAbsPixel(gPad->YtoPad(fY));
184 }
185 Int_t dist = static_cast<Int_t>(std::min<Long64_t>(INT_MAX, TMath::Sqrt(Long64_t(px-pxm)*(px-pxm) + Long64_t(py-pym)*(py-pym))));
186
187 //marker size = 1 is about 8 pixels
189 if (dist <= markerRadius) return 0;
190 if (dist > markerRadius+3) return 999;
191 return dist;
192}
193
194////////////////////////////////////////////////////////////////////////////////
195/// Draw this marker with its current attributes.
196
201
202////////////////////////////////////////////////////////////////////////////////
203/// Draw this marker with new coordinates.
204
206{
207 TMarker *newmarker = new TMarker(x, y, 1);
209 newmarker->SetBit(kCanDelete);
210 newmarker->AppendPad();
211 return newmarker;
212}
213
214////////////////////////////////////////////////////////////////////////////////
215/// Execute action corresponding to one event.
216///
217/// This member function is called when a marker is clicked with the locator
218///
219/// If Left button is clicked on a marker, the marker is moved to
220/// a new position when the mouse button is released.
221
223{
224 if (!gPad || !gPad->IsEditable()) return;
225
226 auto &parent = *gPad;
227
228 static Int_t pxold, pyold;
229 Bool_t opaque = parent.OpaqueMoving();
230
231 auto action = [this, &parent](Bool_t paint, Int_t posx, Int_t posy) {
232 Double_t x, y;
233 if ((posx != -1111) || (posy != -1111) || !paint) {
234 x = parent.AbsPixeltoX(posx);
235 y = parent.AbsPixeltoY(posy);
236 } else if (TestBit(kMarkerNDC)) {
237 // first non-opaque paint will be performed at the original position
238 x = parent.GetX1() + GetX() * (parent.GetX2() - parent.GetX1());
239 y = parent.GetY1() + GetY() * (parent.GetY2() - parent.GetY1());
240 } else {
241 x = parent.XtoPad(GetX());
242 y = parent.YtoPad(GetY());
243 }
244 if (paint) {
245 auto pp = parent.GetPainter();
246 pp->SetAttMarker(*this);
247 pp->DrawPolyMarker(1, &x, &y);
248 } else if (TestBit(kMarkerNDC)) {
249 SetX((x - parent.GetX1()) / (parent.GetX2() - parent.GetX1()));
250 SetY((y - parent.GetY1()) / (parent.GetY2() - parent.GetY1()));
251 } else {
252 SetX(parent.PadtoX(x));
253 SetY(parent.PadtoY(y));
254 }
255 };
256
257 switch (event) {
258
259 case kButton1Down:
260 case kMouseMotion:
261 pxold = pyold = -1111;
262 parent.SetCursor(kMove);
263 break;
264
265 case kButton1Motion:
266 if (opaque) {
267 action(false, px, py);
268 parent.ShowGuidelines(this, event, 'i', true);
269 parent.ModifiedUpdate();
270 } else {
271 action(true, pxold, pyold);
272 action(true, px, py);
273 pxold = px; pyold = py;
274 }
275 break;
276
277 case kButton1Up:
278 if (opaque) {
279 parent.ShowGuidelines(this, event);
280 } else {
281 action(false, px, py);
282 parent.ModifiedUpdate();
283 }
284 break;
285 }
286}
287
288////////////////////////////////////////////////////////////////////////////////
289/// List this marker with its attributes.
290
292{
294 printf("Marker X=%f Y=%f marker type=%d\n",fX,fY,fMarkerStyle);
295}
296
297////////////////////////////////////////////////////////////////////////////////
298/// Paint this marker with its current attributes.
299
301{
302 if (!gPad)
303 return;
304 if (TestBit(kMarkerNDC))
306 else
307 PaintMarker(gPad->XtoPad(GetX()), gPad->YtoPad(GetY()));
308}
309
310////////////////////////////////////////////////////////////////////////////////
311/// Draw this marker with new coordinates.
312
314{
315 TAttMarker::Modify(); //Change line attributes only if necessary
316 if (gPad) gPad->PaintPolyMarker(-1, &x, &y, "");
317}
318
319////////////////////////////////////////////////////////////////////////////////
320/// Draw this marker with new coordinates in NDC.
321
323{
324 Double_t x = gPad->GetX1() + u * (gPad->GetX2() - gPad->GetX1());
325 Double_t y = gPad->GetY1() + v * (gPad->GetY2() - gPad->GetY1());
326 PaintMarker(x, y);
327}
328
329////////////////////////////////////////////////////////////////////////////////
330/// Dump this marker with its attributes.
331
333{
334 printf("Marker X=%f Y=%f",fX,fY);
335 if (GetMarkerColor() != 1) printf(" Color=%d",GetMarkerColor());
336 if (GetMarkerStyle() != 1) printf(" MarkerStyle=%d",GetMarkerStyle());
337 if (GetMarkerSize() != 1) printf(" MarkerSize=%f",GetMarkerSize());
338 printf("\n");
339}
340
341////////////////////////////////////////////////////////////////////////////////
342/// Save primitive as a C++ statement(s) on output stream out
343
344void TMarker::SavePrimitive(std::ostream &out, Option_t *option)
345{
346 SavePrimitiveConstructor(out, Class(), "marker", TString::Format("%g, %g, %d", fX, fY, fMarkerStyle), kFALSE);
347
348 SaveMarkerAttributes(out, "marker", 1, 1, 1);
349
350 SavePrimitiveDraw(out, "marker", option);
351}
352
353////////////////////////////////////////////////////////////////////////////////
354/// Set NDC mode on if isNDC = kTRUE, off otherwise
355
361
362////////////////////////////////////////////////////////////////////////////////
363/// Stream an object of class TMarker.
364
366{
367 if (R__b.IsReading()) {
369 Version_t R__v = R__b.ReadVersion(&R__s, &R__c);
370 if (R__v > 1) {
371 R__b.ReadClassBuffer(TMarker::Class(), this, R__v, R__s, R__c);
372 return;
373 }
374 //====process old versions before automatic schema evolution
377 Float_t x,y;
378 R__b >> x; fX = x;
379 R__b >> y; fY = y;
380 //====end of old versions
381
382 } else {
383 R__b.WriteClassBuffer(TMarker::Class(),this);
384 }
385}
386
387////////////////////////////////////////////////////////////////////////////////
388/// Return the bounding Box of the marker
389
391{
392 auto size = GetMarkerSize();
393 Rectangle_t bbox{0, 0, (UShort_t) (2*size), (UShort_t) (2*size) };
394 if (gPad) {
395 if (TestBit(kMarkerNDC)) {
396 bbox.fX = gPad->UtoPixel(GetX()) - size;
397 bbox.fY = gPad->VtoPixel(GetY()) - size;
398 } else {
399 bbox.fX = gPad->XtoPixel(gPad->XtoPad(GetX())) - size;
400 bbox.fY = gPad->YtoPixel(gPad->YtoPad(GetY())) - size;
401 }
402 }
403 return bbox;
404}
405
406////////////////////////////////////////////////////////////////////////////////
407/// Set X coordinate of the center of the BoundingBox
408
413
414////////////////////////////////////////////////////////////////////////////////
415/// Set Y coordinate of the center of the BoundingBox
416
421
422////////////////////////////////////////////////////////////////////////////////
423/// Set left hand side of BoundingBox to a value
424/// (resize in x direction on left)
425
427{
429}
430
431////////////////////////////////////////////////////////////////////////////////
432/// Set right hand side of BoundingBox to a value
433/// (resize in x direction on right)
434
436{
438}
439
440////////////////////////////////////////////////////////////////////////////////
441/// Set top of BoundingBox to a value (resize in y direction on top)
442
444{
446}
447
448////////////////////////////////////////////////////////////////////////////////
449/// Set bottom of BoundingBox to a value
450/// (resize in y direction on bottom)
451
453{
455}
@ kMouseMotion
Definition Buttons.h:23
@ kButton1Motion
Definition Buttons.h:20
@ kButton1Up
Definition Buttons.h:19
@ kButton1Down
Definition Buttons.h:17
@ kMove
Definition GuiTypes.h:375
cudaEvent_t event
size_t size(const MatrixT &matrix)
retrieve the size of a square matrix
unsigned short UShort_t
Unsigned Short integer 2 bytes (unsigned short)
Definition RtypesCore.h:55
int Int_t
Signed integer 4 bytes (int)
Definition RtypesCore.h:60
short Version_t
Class version identifier (short)
Definition RtypesCore.h:80
float Float_t
Float 4 bytes (float)
Definition RtypesCore.h:72
constexpr Bool_t kFALSE
Definition RtypesCore.h:109
long long Long64_t
Portable signed long integer 8 bytes.
Definition RtypesCore.h:84
const char Option_t
Option string (const char)
Definition RtypesCore.h:81
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Option_t Option_t option
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void pxm
Option_t Option_t TPoint TPoint const char text
#define gPad
Abstract base class for elements drawn in the editor.
Definition TAttBBox2D.h:19
Double_t GetYCoord(const Int_t y, Bool_t is_ndc=kFALSE, Bool_t is_absolute=kFALSE)
Can return ndc or normal values Also one can specify to use absolute coordinates for input parameter ...
Double_t GetXCoord(const Int_t x, Bool_t is_ndc=kFALSE, Bool_t is_absolute=kFALSE)
Return user X coordinate for pixel X value Can return ndc or normal values Also one can specify to us...
Marker Attributes class.
Definition TAttMarker.h:22
virtual void SaveMarkerAttributes(std::ostream &out, const char *name, Int_t coldef=1, Int_t stydef=1, Int_t sizdef=1)
Save line attributes as C++ statement(s) on output stream out.
virtual void Modify()
Change current marker attributes if necessary.
virtual Style_t GetMarkerStyle() const
Return the marker style.
Definition TAttMarker.h:35
virtual Color_t GetMarkerColor() const
Return the marker color.
Definition TAttMarker.h:34
virtual Size_t GetMarkerSize() const
Return the marker size.
Definition TAttMarker.h:36
void Copy(TAttMarker &attmarker) const
Copy this marker attributes to a new TAttMarker.
virtual void SetMarkerStyle(Style_t mstyle=1)
Set the marker style.
virtual void SetMarkerSize(Size_t msize=1)
Set the marker size.
virtual void Streamer(TBuffer &)
Size_t fMarkerSize
Marker size.
Definition TAttMarker.h:27
Style_t fMarkerStyle
Marker style.
Definition TAttMarker.h:26
Buffer base class used for serializing objects.
Definition TBuffer.h:43
Manages Markers.
Definition TMarker.h:22
void Streamer(TBuffer &) override
Stream an object of class TMarker.
Definition TMarker.cxx:365
Double_t fX
X position of marker (left,center,etc..)
Definition TMarker.h:25
void ExecuteEvent(Int_t event, Int_t px, Int_t py) override
Execute action corresponding to one event.
Definition TMarker.cxx:222
void ls(Option_t *option="") const override
List this marker with its attributes.
Definition TMarker.cxx:291
virtual void SetX(Double_t x)
Definition TMarker.h:53
void SetBBoxCenterY(const Int_t y) override
Set Y coordinate of the center of the BoundingBox.
Definition TMarker.cxx:417
virtual void SetNDC(Bool_t isNDC=kTRUE)
Set NDC mode on if isNDC = kTRUE, off otherwise.
Definition TMarker.cxx:356
void SavePrimitive(std::ostream &out, Option_t *option="") override
Save primitive as a C++ statement(s) on output stream out.
Definition TMarker.cxx:344
void Draw(Option_t *option="") override
Draw this marker with its current attributes.
Definition TMarker.cxx:197
~TMarker() override
Marker default destructor.
Definition TMarker.cxx:73
TMarker()
Marker default constructor.
Definition TMarker.cxx:53
Double_t fY
Y position of marker (left,center,etc..)
Definition TMarker.h:26
virtual void SetY(Double_t y)
Definition TMarker.h:54
void SetBBoxCenterX(const Int_t x) override
Set X coordinate of the center of the BoundingBox.
Definition TMarker.cxx:409
void SetBBoxY1(const Int_t y) override
Set top of BoundingBox to a value (resize in y direction on top)
Definition TMarker.cxx:443
void SetBBoxY2(const Int_t y) override
Set bottom of BoundingBox to a value (resize in y direction on bottom)
Definition TMarker.cxx:452
void Copy(TObject &marker) const override
Copy this marker to marker.
Definition TMarker.cxx:90
void Paint(Option_t *option="") override
Paint this marker with its current attributes.
Definition TMarker.cxx:300
virtual TMarker * DrawMarker(Double_t x, Double_t y)
Draw this marker with new coordinates.
Definition TMarker.cxx:205
virtual void PaintMarker(Double_t x, Double_t y)
Draw this marker with new coordinates.
Definition TMarker.cxx:313
Rectangle_t GetBBox() override
Return the bounding Box of the marker.
Definition TMarker.cxx:390
void SetBBoxX1(const Int_t x) override
Set left hand side of BoundingBox to a value (resize in x direction on left)
Definition TMarker.cxx:426
static TClass * Class()
static void DisplayMarkerLineWidths()
Display the table of markers with different line widths and their numbers.
Definition TMarker.cxx:132
void Print(Option_t *option="") const override
Dump this marker with its attributes.
Definition TMarker.cxx:332
Int_t DistancetoPrimitive(Int_t px, Int_t py) override
Compute distance from point px,py to a marker.
Definition TMarker.cxx:174
Double_t GetX() const
Definition TMarker.h:44
void SetBBoxX2(const Int_t x) override
Set right hand side of BoundingBox to a value (resize in x direction on right)
Definition TMarker.cxx:435
@ kMarkerNDC
Marker position is in NDC.
Definition TMarker.h:31
static void DisplayMarkerTypes()
Display the table of markers with their numbers.
Definition TMarker.cxx:101
virtual void PaintMarkerNDC(Double_t u, Double_t v)
Draw this marker with new coordinates in NDC.
Definition TMarker.cxx:322
Double_t GetY() const
Definition TMarker.h:45
Mother of all ROOT objects.
Definition TObject.h:42
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
Definition TObject.h:204
virtual void Streamer(TBuffer &)
Stream an object of class TObject.
Definition TObject.cxx:995
virtual void AppendPad(Option_t *option="")
Append graphics object to current pad.
Definition TObject.cxx:203
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
Definition TObject.cxx:886
virtual void Copy(TObject &object) const
Copy this to obj.
Definition TObject.cxx:158
static void SavePrimitiveDraw(std::ostream &out, const char *variable_name, Option_t *option=nullptr)
Save invocation of primitive Draw() method Skipped if option contains "nodraw" string.
Definition TObject.cxx:844
static void SavePrimitiveConstructor(std::ostream &out, TClass *cl, const char *variable_name, const char *constructor_agrs="", Bool_t empty_line=kTRUE)
Save object constructor in the output stream "out".
Definition TObject.cxx:776
void ResetBit(UInt_t f)
Definition TObject.h:203
@ kCanDelete
if object in a list can be deleted
Definition TObject.h:71
static void IndentLevel()
Functions used by ls() to indent an object hierarchy.
Definition TROOT.cxx:3067
Basic string class.
Definition TString.h:137
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
Definition TString.cxx:2460
Base class for several text objects.
Definition TText.h:22
Double_t y[n]
Definition legend1.C:17
Double_t x[n]
Definition legend1.C:17
Double_t Sqrt(Double_t x)
Returns the square root of x.
Definition TMath.h:675
Rectangle structure (maps to the X11 XRectangle structure)
Definition GuiTypes.h:362
Short_t fX
Definition GuiTypes.h:363