Changeset 2644


Ignore:
Timestamp:
08/29/12 17:48:47 (12 years ago)
Author:
WataruKawasaki
Message:

New Development: No

JIRA Issue: No

Ready for Test: Yes

Interface Changes: No

What Interface Changed:

Test Programs:

Put in Release Notes: No

Module(s): sd.scantable

Description: modified to not output an empty line in formatPiecewiseBaselineParams().


File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/Scantable.cpp

    r2641 r2644  
    39213921      }
    39223922    } else {
    3923       oss << endl;
    39243923      oss << "Results of baseline fit" << endl;
    39253924      oss << "  rms = " << setprecision(6) << rms << endl;
     
    39803979    if (csvformat) {
    39813980      oss << ",";
     3981    } else {
     3982      oss << endl;
    39823983    }
    39833984    oss << formatBaselineParamsFooter(rms, nClipped, verbose, csvformat);
     
    40234024        oss << left << setw(wRange) << ss.str();
    40244025        oss << formatBaselineParams(params, fixed, rms, 0, masklist, whichrow, false, csvformat, i*nParam, nParam, true);
    4025         oss << endl;
     4026        //oss << endl;
    40264027      }
    40274028    }
Note: See TracChangeset for help on using the changeset viewer.