Search Results for

    Show / Hide Table of Contents

    Class ProtonBeamMachineParameters

    The parameters for the proton beam treatment unit.

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

    Constructors

    ProtonBeamMachineParameters(String, String, String)

    Assigns the parameters to the properties for proton beams.

    Declaration
    public ProtonBeamMachineParameters(string machineId, string techniqueId, string toleranceId)
    Parameters
    Type Name Description
    System.String machineId

    The treatment unit identifier.

    System.String techniqueId

    Technique identifier. "MODULAT_SCANNING" or "UNIFORM_SCANNING" for proton beams.

    System.String toleranceId

    Tolerance identifier.

    Properties

    MachineId

    The treatment unit identifier.

    Declaration
    public string MachineId { get; set; }
    Property Value
    Type Description
    System.String

    TechniqueId

    Technique identifier. For example, "MODULAT_SCANNING", or "UNIFORM_SCANNING".

    Declaration
    public string TechniqueId { get; set; }
    Property Value
    Type Description
    System.String

    ToleranceId

    Tolerance identifier.

    Declaration
    public string ToleranceId { get; set; }
    Property Value
    Type Description
    System.String
    In This Article
    Back to top