Interface MatchResult
-
- All Superinterfaces:
Result
- All Known Implementing Classes:
MatchResultImpl
public interface MatchResult extends Result
This interface represents the result of a matching task in madx
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<MatchConstraintResult>getConstraintParameterResults()doublegetFinalPenalty()java.util.List<MadxVaryResult>getVaryParameterResults()booleanisSuccessful()-
Methods inherited from interface cern.accsoft.steering.jmad.domain.result.Result
getResultType
-
-
-
-
Method Detail
-
isSuccessful
boolean isSuccessful()
- Returns:
trueif the matching Job reached the desired tolerance
-
getFinalPenalty
double getFinalPenalty()
- Returns:
- the Value of the Final Penalty Function (TAR) which describes the reached tolerance during matching
-
getVaryParameterResults
java.util.List<MadxVaryResult> getVaryParameterResults()
- Returns:
- the resulting Values (
MadxVaryResults) of the Matching Job for the definedMadxVaryParameters
-
getConstraintParameterResults
java.util.List<MatchConstraintResult> getConstraintParameterResults()
- Returns:
- the final Values (
MatchConstraintResults) of the Matching Job for the definedMatchConstraints
-
-