Jpp  19.1.0
the software that should make you happy
Public Member Functions | Public Attributes | List of all members
JROOT::JGraphErrors_t Struct Reference

Data structure for graph data. More...

#include <JGraphErrors.hh>

Public Member Functions

void put (const Double_t x, const Double_t y, const Double_t ex, const Double_t ey)
 Put data. More...
 

Public Attributes

std::vector< Double_t > X
 abscissa values More...
 
std::vector< Double_t > Y
 ordinate values More...
 
std::vector< Double_t > DX
 abscissa errors More...
 
std::vector< Double_t > DY
 ordinate errors More...
 

Detailed Description

Data structure for graph data.

Definition at line 21 of file JGraphErrors.hh.

Member Function Documentation

◆ put()

void JROOT::JGraphErrors_t::put ( const Double_t  x,
const Double_t  y,
const Double_t  ex,
const Double_t  ey 
)
inline

Put data.

Parameters
xabscissa value
yordinate value
exabscissa error
eyordinate error

Definition at line 30 of file JGraphErrors.hh.

32  {
33  X .push_back(x);
34  Y .push_back(y);
35  DX.push_back(ex);
36  DY.push_back(ey);
37  }
std::vector< Double_t > DX
abscissa errors
Definition: JGraphErrors.hh:41
std::vector< Double_t > Y
ordinate values
Definition: JGraphErrors.hh:40
std::vector< Double_t > DY
ordinate errors
Definition: JGraphErrors.hh:42
std::vector< Double_t > X
abscissa values
Definition: JGraphErrors.hh:39

Member Data Documentation

◆ X

std::vector<Double_t> JROOT::JGraphErrors_t::X

abscissa values

Definition at line 39 of file JGraphErrors.hh.

◆ Y

std::vector<Double_t> JROOT::JGraphErrors_t::Y

ordinate values

Definition at line 40 of file JGraphErrors.hh.

◆ DX

std::vector<Double_t> JROOT::JGraphErrors_t::DX

abscissa errors

Definition at line 41 of file JGraphErrors.hh.

◆ DY

std::vector<Double_t> JROOT::JGraphErrors_t::DY

ordinate errors

Definition at line 42 of file JGraphErrors.hh.


The documentation for this struct was generated from the following file: