示例#1
0
 internal NormValues(DateTimeOffset _dto)
 {
     dto  = _dto;
     test = NormTest.Cf252Doubles;
 }
示例#2
0
 private static ushort NewToOldBiasTestId(NormTest id)
 {
     ushort nt = INCC.IDC_BIAS_SINGLES;
     switch (id)
     {
         case NormTest.AmLiSingles:
             nt = INCC.IDC_BIAS_SINGLES;
             break;
         case NormTest.Cf252Doubles:
             nt = INCC.IDC_BIAS_DOUBLES;
             break;
         case NormTest.Collar:
             nt = INCC.IDC_BIAS_COLLAR;
             break;
         case NormTest.Cf252Singles:
             nt = INCC.IDC_BIAS_CF252_SINGLES;
             break;
     }
     return nt;
 }