Ignore:
Timestamp:
08/07/09 15:49:27 (15 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: Yes CAS-729, CAS-1147

Ready to Release: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...

Use LogIO instead of std::cout and std::cerr.


File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/alma/src/STFitter.cpp

    r1387 r1616  
    3232#include <casa/Arrays/ArrayMath.h>
    3333#include <casa/Arrays/ArrayLogical.h>
     34#include <casa/Logging/LogIO.h>
    3435#include <scimath/Fitting.h>
    3536#include <scimath/Fitting/LinearFit.h>
     
    147148    funcs_[0] = new Polynomial<Float>(ncomp);
    148149  } else {
    149     cerr << " compiled functions not yet implemented" << endl;
     150    //cerr << " compiled functions not yet implemented" << endl;
     151    LogIO os( LogOrigin( "Fitter", "setExpression()", WHERE ) ) ;
     152    os << LogIO::WARN << " compiled functions not yet implemented" << LogIO::POST;
    150153    //funcs_.resize(1);
    151154    //funcs_[0] = new CompiledFunction<Float>();
Note: See TracChangeset for help on using the changeset viewer.