- fixed a bug in displayng results and progress controls when two tests had the same name - some work on data entry forms for FixedStartMassCollection method - not finished yet
36 lines
732 B
C#
36 lines
732 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using log4net;
|
|
using TBF.BenchControl.Sequences;
|
|
|
|
namespace TBF.BenchControl.Operations
|
|
{
|
|
public class ProcessDataLoggingOp : IOperation
|
|
{
|
|
ILog logger;
|
|
SequenceBase sequenceBase;
|
|
|
|
public ProcessDataLoggingOp(ILog logger, SequenceBase sequenceBase)
|
|
{
|
|
this.logger = logger;
|
|
this.sequenceBase = sequenceBase;
|
|
}
|
|
|
|
public void Start()
|
|
{
|
|
sequenceBase.LogProcessData(logger);
|
|
}
|
|
|
|
public Event Run()
|
|
{
|
|
sequenceBase.LogProcessData(logger);
|
|
return Event.None;
|
|
}
|
|
|
|
public void Stop()
|
|
{
|
|
}
|
|
}
|
|
}
|