2017-06-15 17:08:26 +00:00
|
|
|
|
///
|
2021-02-24 11:08:04 +00:00
|
|
|
|
/// Copyright (c) 2017-2021 Sensus Slovensko a.s.
|
2017-06-15 17:08:26 +00:00
|
|
|
|
///
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.TestMethods.iPerlCommunication
|
|
|
|
|
|
{
|
2019-03-28 08:33:17 +00:00
|
|
|
|
public enum Q2CorrType
|
|
|
|
|
|
{
|
2018-09-17 10:52:55 +00:00
|
|
|
|
None,
|
2019-03-28 08:33:17 +00:00
|
|
|
|
Standard,
|
|
|
|
|
|
Dewa,
|
|
|
|
|
|
Greece,
|
2018-09-17 10:52:55 +00:00
|
|
|
|
RL,
|
|
|
|
|
|
LR,
|
2020-11-27 08:03:31 +00:00
|
|
|
|
Standard_incl_05,
|
|
|
|
|
|
Dewa_incl_05,
|
|
|
|
|
|
Greece_incl_05,
|
|
|
|
|
|
RL_incl_05,
|
|
|
|
|
|
LR_incl_05,
|
2019-03-28 08:33:17 +00:00
|
|
|
|
Update,
|
|
|
|
|
|
ConditionalUpdate,
|
2021-07-29 11:03:08 +00:00
|
|
|
|
ConditionalUpdateRL,
|
|
|
|
|
|
ConditionalUpdateLR,
|
2021-02-24 11:08:04 +00:00
|
|
|
|
UpdateBothQ2FactorsTestRLDir,
|
|
|
|
|
|
UpdateBothQ2FactorsTestLRDir,
|
2019-03-28 08:33:17 +00:00
|
|
|
|
Count,
|
|
|
|
|
|
}
|
2017-06-15 17:08:26 +00:00
|
|
|
|
}
|