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()
double
getFinalPenalty()
java.util.List<MadxVaryResult>
getVaryParameterResults()
boolean
isSuccessful()
-
Methods inherited from interface cern.accsoft.steering.jmad.domain.result.Result
getResultType
-
-
-
-
Method Detail
-
isSuccessful
boolean isSuccessful()
- Returns:
true
if 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 (
MadxVaryResult
s) of the Matching Job for the definedMadxVaryParameter
s
-
getConstraintParameterResults
java.util.List<MatchConstraintResult> getConstraintParameterResults()
- Returns:
- the final Values (
MatchConstraintResult
s) of the Matching Job for the definedMatchConstraint
s
-
-