Interface CorrectorKickData
-
- All Superinterfaces:
MeasuredData<MonitorValue>,ReadingData
- All Known Implementing Classes:
CorrectorKickDataImpl
public interface CorrectorKickData extends ReadingData
this is the interface for a dataset, which is specially dedicated for a kick-response.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BeamNumbergetBeamNumber()java.lang.StringgetCorrectorKey()java.lang.StringgetCorrectorName()booleanisHorizontal()determines if the file corresponds to a horizontal active CorrectorbooleanisMinus()determines if the file corresponds to a 'minus' measurement.booleanisPlus()determines if the file corresponds to a 'plus' measurement.booleanisVertical()determines if the file corresponds to a vertical active Corrector-
Methods inherited from interface cern.accsoft.steering.util.meas.data.yasp.MeasuredData
getMonitorValue, getMonitorValues
-
Methods inherited from interface cern.accsoft.steering.util.meas.data.yasp.ReadingData
getCorrectorValue, getCorrectorValues, getCorrectorValues, getHeader, getMonitorValues
-
-
-
-
Method Detail
-
getCorrectorKey
java.lang.String getCorrectorKey()
- Returns:
- the key of the corrector, which was kicked.
-
getCorrectorName
java.lang.String getCorrectorName()
- Returns:
- the name of the corrector, which was kicked.
-
isVertical
boolean isVertical()
determines if the file corresponds to a vertical active Corrector- Returns:
- true if vertical corrector
-
isHorizontal
boolean isHorizontal()
determines if the file corresponds to a horizontal active Corrector- Returns:
- true if horizontal corrector
-
isPlus
boolean isPlus()
determines if the file corresponds to a 'plus' measurement.- Returns:
- true, if 'plus' measurement.
-
isMinus
boolean isMinus()
determines if the file corresponds to a 'minus' measurement.- Returns:
- true, if 'minus' measurement.
-
getBeamNumber
BeamNumber getBeamNumber()
- Returns:
- the beam number to which this data belongs to
-
-