BakeoutController-Basic  0.1
A Controller for the Omicron vacuum chamber
Public Member Functions | List of all members
kernel.models.variables.VoltageDataPoint Class Reference
Inheritance diagram for kernel.models.variables.VoltageDataPoint:
Inheritance graph
[legend]
Collaboration diagram for kernel.models.variables.VoltageDataPoint:
Collaboration graph
[legend]

Public Member Functions

 VoltageDataPoint (Date date, Double value)
 
Date getDate ()
 
Double getValue ()
 
- Public Member Functions inherited from kernel.views.variables.Variable< Double >
Date getDate ()
 
getValue ()
 

Detailed Description

Describes a data point to measure voltage as a function of time

Definition at line 9 of file VoltageDataPoint.java.

Constructor & Destructor Documentation

kernel.models.variables.VoltageDataPoint.VoltageDataPoint ( Date  date,
Double  value 
)
Parameters
dateThe date at which the voltage was recorded
valueThe value of the recorded voltage

Definition at line 26 of file VoltageDataPoint.java.

26  {
27  this.date = date;
28  this.value = value;
29  }

Member Function Documentation

Date kernel.models.variables.VoltageDataPoint.getDate ( )
Returns
The date

Definition at line 36 of file VoltageDataPoint.java.

36  {
37  return this.date;
38  }
Double kernel.models.variables.VoltageDataPoint.getValue ( )
Returns
The value

Definition at line 45 of file VoltageDataPoint.java.

45  {
46  return this.value;
47  }

The documentation for this class was generated from the following file:
Git Repo