Search Results for

    Show / Hide Table of Contents

    Class SingleLayerParameters

    One layer or group of DRR calculation parameters.

    Inheritance
    System.Object
    SingleLayerParameters
    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 SingleLayerParameters

    Properties

    CTFrom

    Lower end of the CT window. Value must be between -1024.0 and 6000.0.

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

    CTTo

    Upper end of the CT window. Value must be between -1024.0 and 6000.0.

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

    GeoClipping

    Image volume type on which the DRR calculation is based. If calculation is based on partial image volume as specified by GeoFrom and GeoTo distances, the value is true. If calculation is based on full image volume, the value is false.

    Declaration
    public bool GeoClipping { get; set; }
    Property Value
    Type Description
    System.Boolean

    GeoFrom

    Starting distance from the isocenter. Value must be between -10000 and 10000 mm.

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

    GeoTo

    Ending distance from the isocenter. Value must be between -10000 and 10000 mm.

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

    LayerOn

    Defines whether the layer of parameters are selected.

    Declaration
    public bool LayerOn { get; set; }
    Property Value
    Type Description
    System.Boolean

    Weight

    Weight factor of the DRR layer. Value must be between -100.0 and 100.0.

    Declaration
    public double Weight { get; set; }
    Property Value
    Type Description
    System.Double
    In This Article
    Back to top