Changeset 17368 for trunk/FACT++/src


Ignore:
Timestamp:
11/23/13 18:28:10 (11 years ago)
Author:
tbretz
Message:
Do not display 1e2 for the currents if they exceed 100uA
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/smartfact.cc

    r17364 r17368  
    28862886            else
    28872887            {
    2888                 out << setprecision(2);
    28892888                out << col << '\t';
     2889                out << setprecision(fBiasControlCurrentMed<100?2:3);
    28902890                out << (bias_off ? 0 : fBiasControlCurrentMed) << '\t';
    28912891                if (bias_oc)
     
    28942894                {
    28952895                    if (cal)
     2896                    {
     2897                        out << setprecision(fBiasControlCurrentMax<100?2:3);
    28962898                        out << (bias_off ? 0 : fBiasControlCurrentMax);
     2899                    }
    28972900                    else
    28982901                        out << "&mdash; ";
Note: See TracChangeset for help on using the changeset viewer.