Search Results for

    Show / Hide Table of Contents

    Class ImagingBeamSetupParameters

    Setup parameters for imaging fields.

    Inheritance
    System.Object
    ImagingBeamSetupParameters
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: VMS.TPS.Common.Model.Types
    Assembly: VMS.TPS.Common.Model.Types.dll
    Syntax
    public class ImagingBeamSetupParameters

    Constructors

    ImagingBeamSetupParameters(ImagingSetup, Double, Double, Double, Double, Double, Double)

    Constructor for imaging beam setup parameters.

    Declaration
    public ImagingBeamSetupParameters(ImagingSetup imagingSetup, double fitMarginX1_mm, double fitMarginX2_mm, double fitMarginY1_mm, double fitMarginY2_mm, double fieldSizeX_mm, double fieldSizeY_mm)
    Parameters
    Type Name Description
    ImagingSetup imagingSetup

    Setup technique

    System.Double fitMarginX1_mm

    Fit margin left side (in mm)

    System.Double fitMarginX2_mm

    Fit margin right side (in mm)

    System.Double fitMarginY1_mm

    Fit margin top (in mm)

    System.Double fitMarginY2_mm

    Fit margin bottom (in mm)

    System.Double fieldSizeX_mm

    Field size in x direction (in mm)

    System.Double fieldSizeY_mm

    Field size in y direction (in mm)

    Properties

    FieldSizeX

    Field size in x-direction in mm.

    Declaration
    public double FieldSizeX { get; set; }
    Property Value
    Type Description
    System.Double

    FieldSizeY

    Field size in y-direction in mm.

    Declaration
    public double FieldSizeY { get; set; }
    Property Value
    Type Description
    System.Double

    FitMarginX1

    Fit margin in x-direction in mm.

    Declaration
    public double FitMarginX1 { get; set; }
    Property Value
    Type Description
    System.Double

    FitMarginX2

    Fit margin in x-direction in mm.

    Declaration
    public double FitMarginX2 { get; set; }
    Property Value
    Type Description
    System.Double

    FitMarginY1

    Fit margin in y-direction in mm.

    Declaration
    public double FitMarginY1 { get; set; }
    Property Value
    Type Description
    System.Double

    FitMarginY2

    Fit margin in y-direction in mm.

    Declaration
    public double FitMarginY2 { get; set; }
    Property Value
    Type Description
    System.Double

    ImagingSetup

    Identifier for the imaging setup.

    Declaration
    public ImagingSetup ImagingSetup { get; set; }
    Property Value
    Type Description
    ImagingSetup
    In This Article
    Back to top