Interface DynapResult
-
- All Superinterfaces:
Result
- All Known Implementing Classes:
DynapResultImpl
public interface DynapResult extends Result
This interface allow to manage informations contained in the output of a dynap task. Information in the summary are discarded.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(MadxDynapVariable variable, java.lang.Double value)
store a value associated to the variablevoid
clear()
clear the resultjava.util.List<java.lang.Double>
get(MadxDynapVariable variable)
retrieve data associated to the variable.-
Methods inherited from interface cern.accsoft.steering.jmad.domain.result.Result
getResultType
-
-
-
-
Method Detail
-
clear
void clear()
clear the result
-
add
void add(MadxDynapVariable variable, java.lang.Double value)
store a value associated to the variable- Parameters:
variable
-value
-
-
get
java.util.List<java.lang.Double> get(MadxDynapVariable variable)
retrieve data associated to the variable.- Parameters:
variable
-- Returns:
- all values for the variable
-
-