Data.TOF.Random C# (CSharp) Method

Random() public static method

public static Random ( ) : TOF
return TOF
        public static TOF Random()
        {
            TOF t = new TOF();
            t.Data = new double[RANDOM_TOF_SIZE];
            for (int i = 0; i < RANDOM_TOF_SIZE; i++) t.Data[i] = r.NextDouble();
            t.Calibration = 1.0;
            t.ClockPeriod = 10;
            t.GateStartTime = 1800;
            return t;
        }