# HG changeset patch # User Paul LEROY # Date 2014-04-28 13:33:53 # Node ID 98a2ff79bb0aabc6f6119dfdd47575684cc87271 # Parent b66d3d3bbd08aecc7a3138c6bde5e4e9b5025b94 tmstatistics updated diff --git a/common/paulcommon/src/tmstatistics.cpp b/common/paulcommon/src/tmstatistics.cpp --- a/common/paulcommon/src/tmstatistics.cpp +++ b/common/paulcommon/src/tmstatistics.cpp @@ -442,6 +442,8 @@ void TMStatistics::resetStatistics() label_BURST_CWF_F2_nb->setText("-"); label_BURST_BP1_F0_nb->setText("-"); label_BURST_BP2_F0_nb->setText("-"); + label_BURST_BP1_F1_nb->setText("-"); + label_BURST_BP2_F1_nb->setText("-"); // label_SBM1_CWF_F1_nb->setText("-"); label_SBM1_BP1_F0_nb->setText("-"); @@ -450,6 +452,8 @@ void TMStatistics::resetStatistics() label_SBM2_CWF_F2_nb->setText("-"); label_SBM2_BP1_F0_nb->setText("-"); label_SBM2_BP2_F0_nb->setText("-"); + label_SBM2_BP1_F1_nb->setText("-"); + label_SBM2_BP2_F1_nb->setText("-"); // label_PID_is->setText("-"); label_CAT_is->setText("-"); @@ -569,7 +573,7 @@ void TMStatistics::updateStatistics(unsi NORM_CWF_F3_nb = NORM_CWF_F3_nb + 1; label_NORM_CWF_F3_nb->setText(QString::number(NORM_CWF_F3_nb)); } - if (sid == SID_NORM_CWF_LONG_F3) + else if (sid == SID_NORM_CWF_LONG_F3) { NORM_CWF_LONG_F3_nb = NORM_CWF_LONG_F3_nb + 1; label_NORM_CWF_LONG_F3_nb->setText(QString::number(NORM_CWF_LONG_F3_nb)); @@ -649,6 +653,16 @@ void TMStatistics::updateStatistics(unsi BURST_BP2_F0_nb = BURST_BP2_F0_nb + 1; label_BURST_BP2_F0_nb->setText(QString::number(BURST_BP2_F0_nb)); } + else if (sid == SID_BURST_BP1_F1) + { + BURST_BP1_F1_nb = BURST_BP1_F1_nb + 1; + label_BURST_BP1_F1_nb->setText(QString::number(BURST_BP1_F1_nb)); + } + else if (sid == SID_BURST_BP2_F1) + { + BURST_BP2_F1_nb = BURST_BP2_F1_nb + 1; + label_BURST_BP2_F1_nb->setText(QString::number(BURST_BP2_F1_nb)); + } else if (sid == SID_SBM1_CWF_F1) { SBM1_CWF_F1_nb = SBM1_CWF_F1_nb + 1; @@ -679,6 +693,16 @@ void TMStatistics::updateStatistics(unsi SBM2_BP2_F0_nb = SBM2_BP2_F0_nb + 1; label_SBM2_BP2_F0_nb->setText(QString::number(SBM2_BP2_F0_nb)); } + else if (sid == SID_SBM2_BP1_F1) + { + SBM2_BP1_F1_nb = SBM2_BP1_F1_nb + 1; + label_SBM2_BP1_F1_nb->setText(QString::number(SBM2_BP1_F1_nb)); + } + else if (sid == SID_SBM2_BP2_F1) + { + SBM2_BP2_F1_nb = SBM2_BP2_F1_nb + 1; + label_SBM2_BP2_F1_nb->setText(QString::number(SBM2_BP2_F1_nb)); + } else { incrementUnknown();