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

Data structure for graph data. More...

#include <JGraph2D.hh>

Public Member Functions

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

Public Attributes

std::vector< Double_t > X
 abscissa values More...
 
std::vector< Double_t > Y
 abscissa values More...
 
std::vector< Double_t > Z
 ordinate values More...
 

Detailed Description

Data structure for graph data.

Definition at line 21 of file JGraph2D.hh.

Member Function Documentation

◆ put()

void JROOT::JGraph2D_t::put ( const Double_t  x,
const Double_t  y,
const Double_t  z 
)
inline

Put data.

Parameters
xabscissa value
yabscissa value
zordinate value

Definition at line 29 of file JGraph2D.hh.

30  {
31  X.push_back(x);
32  Y.push_back(y);
33  Z.push_back(z);
34  }
std::vector< Double_t > Y
abscissa values
Definition: JGraph2D.hh:37
std::vector< Double_t > X
abscissa values
Definition: JGraph2D.hh:36
std::vector< Double_t > Z
ordinate values
Definition: JGraph2D.hh:38

Member Data Documentation

◆ X

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

abscissa values

Definition at line 36 of file JGraph2D.hh.

◆ Y

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

abscissa values

Definition at line 37 of file JGraph2D.hh.

◆ Z

std::vector<Double_t> JROOT::JGraph2D_t::Z

ordinate values

Definition at line 38 of file JGraph2D.hh.


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