Class AlignmentValueImpl
- java.lang.Object
-
- cern.accsoft.steering.aloha.meas.data.align.AlignmentValueImpl
-
- All Implemented Interfaces:
AlignmentValue
public class AlignmentValueImpl extends java.lang.Object implements AlignmentValue
The implementation of a alignment value
-
-
Constructor Summary
Constructors Constructor Description AlignmentValueImpl(java.lang.String elementName, AlignmentValueType type)the constructor, which needs the name of the element and the type of this value
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetDeltaS()doublegetDeltaTilt()doublegetDeltaX()doublegetDeltaY()java.lang.StringgetElementName()doublegetS()AlignmentValueTypegetType()voidsetDeltaS(double deltaS)voidsetDeltaTilt(double deltaTilt)voidsetDeltaX(double deltaX)voidsetDeltaY(double deltaY)voidsetS(java.lang.Double s)
-
-
-
Constructor Detail
-
AlignmentValueImpl
public AlignmentValueImpl(java.lang.String elementName, AlignmentValueType type)the constructor, which needs the name of the element and the type of this value- Parameters:
elementName- the name of the element
-
-
Method Detail
-
getDeltaX
public final double getDeltaX()
- Specified by:
getDeltaXin interfaceAlignmentValue- Returns:
- the deltaX
-
setDeltaX
public final void setDeltaX(double deltaX)
- Specified by:
setDeltaXin interfaceAlignmentValue- Parameters:
deltaX- the deltaX to set
-
getDeltaY
public final double getDeltaY()
- Specified by:
getDeltaYin interfaceAlignmentValue- Returns:
- the deltaY
-
setDeltaY
public final void setDeltaY(double deltaY)
- Specified by:
setDeltaYin interfaceAlignmentValue- Parameters:
deltaY- the deltaY to set
-
getS
public final double getS()
- Specified by:
getSin interfaceAlignmentValue- Returns:
- the deltaS
-
setS
public final void setS(java.lang.Double s)
- Specified by:
setSin interfaceAlignmentValue- Parameters:
s- the s to set
-
getElementName
public java.lang.String getElementName()
- Specified by:
getElementNamein interfaceAlignmentValue- Returns:
- the name of the element, which this alignment-value corresponds to
-
getType
public AlignmentValueType getType()
- Specified by:
getTypein interfaceAlignmentValue- Returns:
- the type of this value (E/S)
-
setDeltaS
public void setDeltaS(double deltaS)
- Specified by:
setDeltaSin interfaceAlignmentValue- Parameters:
deltaS- the deltaS to set
-
getDeltaS
public double getDeltaS()
- Specified by:
getDeltaSin interfaceAlignmentValue- Returns:
- the deltaS
-
setDeltaTilt
public void setDeltaTilt(double deltaTilt)
- Specified by:
setDeltaTiltin interfaceAlignmentValue- Parameters:
deltaTilt- the deltaTilt to set
-
getDeltaTilt
public double getDeltaTilt()
- Specified by:
getDeltaTiltin interfaceAlignmentValue- Returns:
- the deltaTilt
-
-