This commit is contained in:
2013-06-18 14:35:26 +00:00
parent 91c7da8300
commit 767ebeec41
2 changed files with 20 additions and 8 deletions

View File

@@ -164,11 +164,19 @@ namespace fmtxml
fmtdata.StepData[9].TabData.Ident="*{numeric} ";
fmtdata.StepData[9].TabData.RNOIdentEdit="* ";
fmtdata.StepData[9].TabData.RNOIdent = "* ";
// the following change was made because the code that supports the TStepNoFlag was not
// written when Ginna was delivered and the difference in the transition text for ranges
// did not match the 16bit but was not caught in compares. As per Paul Linn on 6/18/13
// keep the transition text the same as for the delivery, which means that TStepNoFlag
// should be = true (the default).
fmtdata.TransData.TStepNoFlag = "True";
}
private void AddRGEDEVFmt(ref FormatData fmtdata)
{
// RGE is now call CEG
fmtdata.Name = "CEG Ginna Deviation Format";
fmtdata.TransData.TStepNoFlag = "True"; // see comment in RgeCommonAdjustments
}
private void AddRGEBCKFmt(ref FormatData fmtdata)
{
@@ -179,6 +187,7 @@ namespace fmtxml
{
// RGE is now call CEG
fmtdata.Name = "CEG Ginna Background Subformat";
fmtdata.TransData.TStepNoFlag = "True"; // see comment in RgeCommonAdjustments
}
private void AddWCN2Fmt(ref FormatData fmtdata)
{