Analysis.TOFAccumulator.GetResult C# (CSharp) Method

GetResult() public method

public GetResult ( ) : TOFWithError
return Data.TOFWithError
        public TOFWithError GetResult()
        {
            TOFWithError temp =  new TOFWithError();
                temp.Calibration = calibration;
                temp.ClockPeriod = clockPeriod;
                temp.GateStartTime = gateStartTime;
                temp.Data = Data;
                temp.Errors = Errors;
                return temp;
        }
TOFAccumulator