diff --git a/Results/Output/SensusTestInfo.cs b/Results/Output/SensusTestInfo.cs index f33f73483..b1325a2d7 100644 --- a/Results/Output/SensusTestInfo.cs +++ b/Results/Output/SensusTestInfo.cs @@ -14,6 +14,7 @@ namespace Results.Output Just_Q3Q2adjQ1, /// pNrs = -1,3,2,1 Just_Q3Q2adjQ1_Alt, /// pNrs = -1,5,2,1 JustA0A4_Q3Q2adjQ1, /// pNrs = -2,-1,3,2,1 (Australia 169 MHz, raw data pNrs: -2,-1,4,3,2,1) + JustA0A4_Q3Q2Q1, /// pNrs = -2,-1,3,2,1 (Australia 169 MHz smart, raw data pNrs: -2,-1,3,2,1) DEWA, /// Q4, Q3, Q2adj, Q2, Q1 DEWA_wo_Q2, /// Q4, Q3, Q2adj, Q1 Suez, /// Two directions, with Q2 and Q2ac @@ -278,6 +279,17 @@ namespace Results.Output new SensusTestInfo("Q2", 2, "Q2", 2, "02", 2, "Q2", Range.R100_110), new SensusTestInfo("Q1", 1, "Q1", 1, "01", 1, "Q1", Range.R100_110), }; + + case LogType.JustA0A4_Q3Q2Q1: /// Australia 169 MHz with default Q2 corrections and conditional update at the end of cycle + return new SensusTestInfo[] + { + /// TBF Oracle DB Opto RAW LU logfiles + new SensusTestInfo("Qjust_A0", -1, "Just", -1, "-1", -1, "Q-1", Range.R95_105), + new SensusTestInfo("Qjust_A4", -2, "Just", -2, "-2", -2, "Q-2", Range.R95_105), + new SensusTestInfo("Q3", 3, "Q3", 3, "03", 3, "Q3", Range.R90_100), + new SensusTestInfo("Q2", 2, "Q2", 2, "02", 2, "Q2", Range.R100_110), + new SensusTestInfo("Q1", 1, "Q1", 1, "01", 1, "Q1", Range.R100_110), + }; case LogType.DEWA: /// DEWA (with Q4 and Q2 after correction) return new SensusTestInfo[] diff --git a/TBF/Properties/AssemblyInfo.cs b/TBF/Properties/AssemblyInfo.cs index 98fb63cc9..61c51cc04 100644 --- a/TBF/Properties/AssemblyInfo.cs +++ b/TBF/Properties/AssemblyInfo.cs @@ -29,5 +29,5 @@ using System.Runtime.InteropServices; // Build Number // Revision // -[assembly: AssemblyVersion("2.26.1722.0")] -[assembly: AssemblyFileVersion("2.26.1722.0")] +[assembly: AssemblyVersion("2.26.1723.0")] +[assembly: AssemblyFileVersion("2.26.1723.0")]