Initial commit almost identical to SVN-repo rev.340
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using TBF.Entities;
|
||||
|
||||
namespace TBF.BenchControl
|
||||
{
|
||||
/// <summary>
|
||||
/// This class keeps the current values used or measured by the test bench.
|
||||
/// </summary>
|
||||
public class Current
|
||||
{
|
||||
/// <summary>
|
||||
/// Procedure, Tests and TestResults data
|
||||
/// </summary>
|
||||
public static Procedure Procedure;
|
||||
|
||||
public static Test Test;
|
||||
public static int TestId = 0;
|
||||
|
||||
public static TestResult TestResult;
|
||||
public static int TestResultId = 0;
|
||||
|
||||
/// <summary>
|
||||
/// Measured data
|
||||
/// </summary>
|
||||
public static double StartMass;
|
||||
public static double StopMass;
|
||||
|
||||
static Current()
|
||||
{
|
||||
}
|
||||
|
||||
/// Constructor
|
||||
public Current()
|
||||
{
|
||||
/// There should always be some raw data
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Processes current 'tick' data during measurement.
|
||||
/// </summary>
|
||||
public static void ProcessTickData()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user