CLHEP 2.4.6.4
C++ Class Library for High Energy Physics
Loading...
Searching...
No Matches
Genfun::RKIntegrator::RKData::Data Struct Reference

#include <RKIntegrator.hh>

Public Member Functions

 Data (int size)
 
bool operator< (const Data &right) const
 
bool operator== (const Data &right) const
 

Public Attributes

std::vector< doublevariable
 
std::vector< doublefirstDerivative
 
double time
 

Detailed Description

Definition at line 108 of file RKIntegrator.hh.

Constructor & Destructor Documentation

◆ Data()

Genfun::RKIntegrator::RKData::Data::Data ( int  size)
inline

Definition at line 114 of file RKIntegrator.hh.

114: variable(size), firstDerivative(size), time(0) {}
std::vector< double > firstDerivative
std::vector< double > variable

Member Function Documentation

◆ operator<()

bool Genfun::RKIntegrator::RKData::Data::operator< ( const Data right) const
inline

Definition at line 115 of file RKIntegrator.hh.

115{ return time < right.time; }

◆ operator==()

bool Genfun::RKIntegrator::RKData::Data::operator== ( const Data right) const
inline

Definition at line 116 of file RKIntegrator.hh.

116{ return time==right.time; }

Member Data Documentation

◆ firstDerivative

std::vector<double> Genfun::RKIntegrator::RKData::Data::firstDerivative
mutable

◆ time

◆ variable


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