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 SummaryAll 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.ResultgetResultType
 
- 
 
- 
- 
- 
Method Detail- 
isSuccessfulboolean isSuccessful() - Returns:
- trueif the matching Job reached the desired tolerance
 
 - 
getFinalPenaltydouble getFinalPenalty() - Returns:
- the Value of the Final Penalty Function (TAR) which describes the reached tolerance during matching
 
 - 
getVaryParameterResultsjava.util.List<MadxVaryResult> getVaryParameterResults() - Returns:
- the resulting Values (MadxVaryResults) of the Matching Job for the definedMadxVaryParameters
 
 - 
getConstraintParameterResultsjava.util.List<MatchConstraintResult> getConstraintParameterResults() - Returns:
- the final Values (MatchConstraintResults) of the Matching Job for the definedMatchConstraints
 
 
- 
 
-