Jpp 19.3.0-rc.1
the software that should make you happy
Loading...
Searching...
No Matches
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.
 

Public Attributes

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

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
std::vector< Double_t > Y
ordinate values
std::vector< Double_t > DY
ordinate errors
std::vector< Double_t > X
abscissa values

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: