Interface MatchConstraint
-
- All Known Implementing Classes:
MatchConstraintGlobal
,MatchConstraintLocal
public interface MatchConstraint
Thi interface which represents a general matching constraint for madx
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.Double>
getParameterSettings()
java.util.List<java.lang.String>
getReadoutNames()
boolean
isGlobal()
-
-
-
Method Detail
-
isGlobal
boolean isGlobal()
- Returns:
- true, if it is a global constraint
-
getParameterSettings
java.util.Map<java.lang.String,java.lang.Double> getParameterSettings()
- Returns:
- MadxName-Value Pairs for all defined Parameters of this constraint
-
getReadoutNames
java.util.List<java.lang.String> getReadoutNames()
- Returns:
- Madx values-command names to read the resulting value of the constraints after matching...
for local matching, if a range is specified, only names for first and last element of the range are returned
-
-