##// END OF EJS Templates
tmstatistics updated
leroy -
r74:98a2ff79bb0a default
parent child
Show More
@@ -442,6 +442,8 void TMStatistics::resetStatistics()
442 label_BURST_CWF_F2_nb->setText("-");
442 label_BURST_CWF_F2_nb->setText("-");
443 label_BURST_BP1_F0_nb->setText("-");
443 label_BURST_BP1_F0_nb->setText("-");
444 label_BURST_BP2_F0_nb->setText("-");
444 label_BURST_BP2_F0_nb->setText("-");
445 label_BURST_BP1_F1_nb->setText("-");
446 label_BURST_BP2_F1_nb->setText("-");
445 //
447 //
446 label_SBM1_CWF_F1_nb->setText("-");
448 label_SBM1_CWF_F1_nb->setText("-");
447 label_SBM1_BP1_F0_nb->setText("-");
449 label_SBM1_BP1_F0_nb->setText("-");
@@ -450,6 +452,8 void TMStatistics::resetStatistics()
450 label_SBM2_CWF_F2_nb->setText("-");
452 label_SBM2_CWF_F2_nb->setText("-");
451 label_SBM2_BP1_F0_nb->setText("-");
453 label_SBM2_BP1_F0_nb->setText("-");
452 label_SBM2_BP2_F0_nb->setText("-");
454 label_SBM2_BP2_F0_nb->setText("-");
455 label_SBM2_BP1_F1_nb->setText("-");
456 label_SBM2_BP2_F1_nb->setText("-");
453 //
457 //
454 label_PID_is->setText("-");
458 label_PID_is->setText("-");
455 label_CAT_is->setText("-");
459 label_CAT_is->setText("-");
@@ -569,7 +573,7 void TMStatistics::updateStatistics(unsi
569 NORM_CWF_F3_nb = NORM_CWF_F3_nb + 1;
573 NORM_CWF_F3_nb = NORM_CWF_F3_nb + 1;
570 label_NORM_CWF_F3_nb->setText(QString::number(NORM_CWF_F3_nb));
574 label_NORM_CWF_F3_nb->setText(QString::number(NORM_CWF_F3_nb));
571 }
575 }
572 if (sid == SID_NORM_CWF_LONG_F3)
576 else if (sid == SID_NORM_CWF_LONG_F3)
573 {
577 {
574 NORM_CWF_LONG_F3_nb = NORM_CWF_LONG_F3_nb + 1;
578 NORM_CWF_LONG_F3_nb = NORM_CWF_LONG_F3_nb + 1;
575 label_NORM_CWF_LONG_F3_nb->setText(QString::number(NORM_CWF_LONG_F3_nb));
579 label_NORM_CWF_LONG_F3_nb->setText(QString::number(NORM_CWF_LONG_F3_nb));
@@ -649,6 +653,16 void TMStatistics::updateStatistics(unsi
649 BURST_BP2_F0_nb = BURST_BP2_F0_nb + 1;
653 BURST_BP2_F0_nb = BURST_BP2_F0_nb + 1;
650 label_BURST_BP2_F0_nb->setText(QString::number(BURST_BP2_F0_nb));
654 label_BURST_BP2_F0_nb->setText(QString::number(BURST_BP2_F0_nb));
651 }
655 }
656 else if (sid == SID_BURST_BP1_F1)
657 {
658 BURST_BP1_F1_nb = BURST_BP1_F1_nb + 1;
659 label_BURST_BP1_F1_nb->setText(QString::number(BURST_BP1_F1_nb));
660 }
661 else if (sid == SID_BURST_BP2_F1)
662 {
663 BURST_BP2_F1_nb = BURST_BP2_F1_nb + 1;
664 label_BURST_BP2_F1_nb->setText(QString::number(BURST_BP2_F1_nb));
665 }
652 else if (sid == SID_SBM1_CWF_F1)
666 else if (sid == SID_SBM1_CWF_F1)
653 {
667 {
654 SBM1_CWF_F1_nb = SBM1_CWF_F1_nb + 1;
668 SBM1_CWF_F1_nb = SBM1_CWF_F1_nb + 1;
@@ -679,6 +693,16 void TMStatistics::updateStatistics(unsi
679 SBM2_BP2_F0_nb = SBM2_BP2_F0_nb + 1;
693 SBM2_BP2_F0_nb = SBM2_BP2_F0_nb + 1;
680 label_SBM2_BP2_F0_nb->setText(QString::number(SBM2_BP2_F0_nb));
694 label_SBM2_BP2_F0_nb->setText(QString::number(SBM2_BP2_F0_nb));
681 }
695 }
696 else if (sid == SID_SBM2_BP1_F1)
697 {
698 SBM2_BP1_F1_nb = SBM2_BP1_F1_nb + 1;
699 label_SBM2_BP1_F1_nb->setText(QString::number(SBM2_BP1_F1_nb));
700 }
701 else if (sid == SID_SBM2_BP2_F1)
702 {
703 SBM2_BP2_F1_nb = SBM2_BP2_F1_nb + 1;
704 label_SBM2_BP2_F1_nb->setText(QString::number(SBM2_BP2_F1_nb));
705 }
682 else
706 else
683 {
707 {
684 incrementUnknown();
708 incrementUnknown();
General Comments 0
You need to be logged in to leave comments. Login now