Main Page
Class Categories
Classes
Namespaces
File List
File Members
exper-sw
cosmosw
AugerSW
Offline
source
main
Utilities
STL
Pair.h
Go to the documentation of this file.
1
9
#ifndef _utl_Pair_h_
10
#define _utl_Pair_h_
11
12
13
namespace
utl {
14
25
class
Pair
{
26
27
public
:
28
Pair
() { }
29
Pair
(
const
double
x,
const
double
y) :
fX
(x),
fY
(y) { }
30
31
double
X
()
const
{
return
fX
; }
32
double
Y
()
const
{
return
fY
; }
33
34
private
:
35
double
fX
= 0;
36
double
fY
= 0;
37
38
};
39
40
}
41
42
43
#endif
utl::Pair::Pair
Pair(const double x, const double y)
Definition:
Pair.h:29
utl::Pair::X
double X() const
Definition:
Pair.h:31
utl::Pair::Pair
Pair()
Definition:
Pair.h:28
utl::Pair::fY
double fY
Definition:
Pair.h:36
utl::Pair
a pair of graph points (x,y)
Definition:
Pair.h:25
utl::Pair::Y
double Y() const
Definition:
Pair.h:32
utl::Pair::fX
double fX
Definition:
Pair.h:35
, generated on Tue Sep 26 2023.