Loading [MathJax]/jax/output/HTML-CSS/config.js
ROOT
6.14/05
Reference Guide
ROOT Home
Main Page
Tutorials
Functional Parts
+
Namespaces
Namespace List
+
Namespace Members
+
All
<
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
<
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
u
w
x
+
Enumerations
a
e
f
g
m
p
t
v
w
y
+
Enumerator
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
w
+
All Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
+
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
w
y
+
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Properties
f
+
Related Functions
:
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Files
File List
+
File Members
+
All
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Enumerations
c
e
f
i
l
m
p
r
u
x
+
Enumerator
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
u
v
w
+
Macros
1
2
3
4
5
6
7
8
9
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Release Notes
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
graf2d
graf
inc
TPoints.h
Go to the documentation of this file.
1
// @(#)root/graf:$Id$
2
// Author: Rene Brun 23/02/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
#ifndef ROOT_TPoints
13
#define ROOT_TPoints
14
15
16
#include "
Rtypes.h
"
17
18
19
class
TPoints
{
20
21
private
:
22
Double_t
fX
;
///< X world coordinate
23
Double_t
fY
;
///< Y world coordinate
24
25
public
:
26
TPoints
() : fX(0), fY(0) { }
27
TPoints
(
Double_t
xy
) : fX(xy), fY(xy) { }
28
TPoints
(
Double_t
x
,
Double_t
y
) : fX(x), fY(y) { }
29
virtual
~TPoints
() { }
30
Double_t
GetX
()
const
{
return
fX
; }
31
Double_t
GetY
()
const
{
return
fY
; }
32
void
SetX
(
Double_t
x
) { fX =
x
; }
33
void
SetY
(
Double_t
y
) { fY =
y
; }
34
35
ClassDef
(
TPoints
,0)
//2-D graphics point
36
};
37
38
#endif
TPoints::SetY
void SetY(Double_t y)
Definition:
TPoints.h:33
Rtypes.h
TPoints::fX
Double_t fX
X world coordinate.
Definition:
TPoints.h:22
TPoints::GetX
Double_t GetX() const
Definition:
TPoints.h:30
x
Double_t x[n]
Definition:
legend1.C:17
ClassDef
#define ClassDef(name, id)
Definition:
Rtypes.h:320
TPoints::TPoints
TPoints(Double_t x, Double_t y)
Definition:
TPoints.h:28
TPoints::~TPoints
virtual ~TPoints()
Definition:
TPoints.h:29
xy
XPoint xy[kMAXMK]
Definition:
TGX11.cxx:122
TPoints::TPoints
TPoints()
Definition:
TPoints.h:26
TPoints::TPoints
TPoints(Double_t xy)
Definition:
TPoints.h:27
TPoints
2-D graphics point (world coordinates).
Definition:
TPoints.h:19
Double_t
double Double_t
Definition:
RtypesCore.h:55
TPoints::fY
Double_t fY
Y world coordinate.
Definition:
TPoints.h:23
y
Double_t y[n]
Definition:
legend1.C:17
TPoints::SetX
void SetX(Double_t x)
Definition:
TPoints.h:32
TPoints::GetY
Double_t GetY() const
Definition:
TPoints.h:31