33 lines
630 B
C#
33 lines
630 B
C#
///
|
|
/// Copyright (c) 2017-2021 Sensus Slovensko a.s.
|
|
///
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace TBF.Rig.TestMethods.iPerlCommunication
|
|
{
|
|
public enum Q2CorrType
|
|
{
|
|
None,
|
|
Standard,
|
|
Dewa,
|
|
Greece,
|
|
RL,
|
|
LR,
|
|
Standard_incl_05,
|
|
Dewa_incl_05,
|
|
Greece_incl_05,
|
|
RL_incl_05,
|
|
LR_incl_05,
|
|
Update,
|
|
ConditionalUpdate,
|
|
ConditionalUpdateRL,
|
|
ConditionalUpdateLR,
|
|
UpdateBothQ2FactorsTestRLDir,
|
|
UpdateBothQ2FactorsTestLRDir,
|
|
Count,
|
|
}
|
|
}
|