source: trunk/src/STFitter.cpp @ 2099

Last change on this file since 2099 was 2047, checked in by WataruKawasaki, 13 years ago

New Development: Yes

JIRA Issue: Yes CAS-2847

Ready for Test: Yes

Interface Changes: No

What Interface Changed:

Test Programs:

Put in Release Notes: Yes

Module(s): scantable

Description: added {auto_}sinusoid_baseline() for sinusoidal baseline fitting. also minor bug fixes for asapfitter.


  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 12.7 KB
RevLine 
[91]1//#---------------------------------------------------------------------------
[890]2//# Fitter.cc: A Fitter class for spectra
[91]3//#--------------------------------------------------------------------------
4//# Copyright (C) 2004
[125]5//# ATNF
[91]6//#
7//# This program is free software; you can redistribute it and/or modify it
8//# under the terms of the GNU General Public License as published by the Free
9//# Software Foundation; either version 2 of the License, or (at your option)
10//# any later version.
11//#
12//# This program is distributed in the hope that it will be useful, but
13//# WITHOUT ANY WARRANTY; without even the implied warranty of
14//# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
15//# Public License for more details.
16//#
17//# You should have received a copy of the GNU General Public License along
18//# with this program; if not, write to the Free Software Foundation, Inc.,
19//# 675 Massachusetts Ave, Cambridge, MA 02139, USA.
20//#
21//# Correspondence concerning this software should be addressed as follows:
22//#        Internet email: Malte.Marquarding@csiro.au
23//#        Postal address: Malte Marquarding,
24//#                        Australia Telescope National Facility,
25//#                        P.O. Box 76,
26//#                        Epping, NSW, 2121,
27//#                        AUSTRALIA
28//#
[891]29//# $Id: STFitter.cpp 2047 2011-03-15 07:31:04Z WataruKawasaki $
[91]30//#---------------------------------------------------------------------------
[125]31#include <casa/aips.h>
[91]32#include <casa/Arrays/ArrayMath.h>
33#include <casa/Arrays/ArrayLogical.h>
[1819]34#include <casa/Logging/LogIO.h>
[91]35#include <scimath/Fitting.h>
36#include <scimath/Fitting/LinearFit.h>
37#include <scimath/Functionals/CompiledFunction.h>
38#include <scimath/Functionals/CompoundFunction.h>
39#include <scimath/Functionals/Gaussian1D.h>
[1819]40#include "Lorentzian1D.h"
[2047]41#include <scimath/Functionals/Sinusoid1D.h>
[91]42#include <scimath/Functionals/Polynomial.h>
43#include <scimath/Mathematics/AutoDiff.h>
44#include <scimath/Mathematics/AutoDiffMath.h>
45#include <scimath/Fitting/NonLinearFitLM.h>
46#include <components/SpectralComponents/SpectralEstimate.h>
47
[894]48#include "STFitter.h"
49
[91]50using namespace asap;
[125]51using namespace casa;
[91]52
[890]53Fitter::Fitter()
[91]54{
55}
56
[890]57Fitter::~Fitter()
[91]58{
[517]59  reset();
[91]60}
61
[890]62void Fitter::clear()
[91]63{
[517]64  for (uInt i=0;i< funcs_.nelements();++i) {
65    delete funcs_[i]; funcs_[i] = 0;
66  }
[612]67  funcs_.resize(0,True);
[517]68  parameters_.resize();
[1232]69  fixedpar_.resize();
[517]70  error_.resize();
71  thefit_.resize();
72  estimate_.resize();
73  chisquared_ = 0.0;
[91]74}
[517]75
[890]76void Fitter::reset()
[91]77{
[517]78  clear();
79  x_.resize();
80  y_.resize();
81  m_.resize();
[91]82}
83
84
[890]85bool Fitter::computeEstimate() {
[517]86  if (x_.nelements() == 0 || y_.nelements() == 0)
87    throw (AipsError("No x/y data specified."));
[91]88
[517]89  if (dynamic_cast<Gaussian1D<Float>* >(funcs_[0]) == 0)
90    return false;
91  uInt n = funcs_.nelements();
92  SpectralEstimate estimator(n);
93  estimator.setQ(5);
94  Int mn,mx;
95  mn = 0;
96  mx = m_.nelements()-1;
97  for (uInt i=0; i<m_.nelements();++i) {
98    if (m_[i]) {
99      mn = i;
100      break;
[108]101    }
[517]102  }
103  for (uInt j=m_.nelements()-1; j>=0;--j) {
104    if (m_[j]) {
105      mx = j;
106      break;
[108]107    }
[517]108  }
[1067]109  //mn = 0+x_.nelements()/10;
110  //mx = x_.nelements()-x_.nelements()/10;
[517]111  estimator.setRegion(mn,mx);
112  //estimator.setWindowing(True);
113  SpectralList listGauss = estimator.estimate(x_, y_);
114  parameters_.resize(n*3);
115  Gaussian1D<Float>* g = 0;
116  for (uInt i=0; i<n;i++) {
117    g = dynamic_cast<Gaussian1D<Float>* >(funcs_[i]);
118    if (g) {
119      (*g)[0] = listGauss[i].getAmpl();
120      (*g)[1] = listGauss[i].getCenter();
121      (*g)[2] = listGauss[i].getFWHM();
[91]122    }
[517]123  }
124  estimate_.resize();
125  listGauss.evaluate(estimate_,x_);
126  return true;
[91]127}
128
[890]129std::vector<float> Fitter::getEstimate() const
[91]130{
[517]131  if (estimate_.nelements() == 0)
132    throw (AipsError("No estimate set."));
133  std::vector<float> stlout;
134  estimate_.tovector(stlout);
135  return stlout;
[91]136}
137
138
[890]139bool Fitter::setExpression(const std::string& expr, int ncomp)
[91]140{
[517]141  clear();
142  if (expr == "gauss") {
143    if (ncomp < 1) throw (AipsError("Need at least one gaussian to fit."));
144    funcs_.resize(ncomp);
[1932]145    funcnames_.clear();
146    funccomponents_.clear();
[517]147    for (Int k=0; k<ncomp; ++k) {
148      funcs_[k] = new Gaussian1D<Float>();
[1932]149      funcnames_.push_back(expr);
150      funccomponents_.push_back(3);
[517]151    }
[1819]152  } else if (expr == "lorentz") {
153    if (ncomp < 1) throw (AipsError("Need at least one lorentzian to fit."));
154    funcs_.resize(ncomp);
[1932]155    funcnames_.clear();
156    funccomponents_.clear();
[1819]157    for (Int k=0; k<ncomp; ++k) {
158      funcs_[k] = new Lorentzian1D<Float>();
[1932]159      funcnames_.push_back(expr);
160      funccomponents_.push_back(3);
[1819]161    }
[2047]162  } else if (expr == "sinusoid") {
163    if (ncomp < 1) throw (AipsError("Need at least one sinusoid to fit."));
164    funcs_.resize(ncomp);
165    funcnames_.clear();
166    funccomponents_.clear();
167    for (Int k=0; k<ncomp; ++k) {
168      funcs_[k] = new Sinusoid1D<Float>();
169      funcnames_.push_back(expr);
170      funccomponents_.push_back(3);
171    }
172  } else if (expr == "poly") {
173    funcs_.resize(1);
174    funcnames_.clear();
175    funccomponents_.clear();
176    funcs_[0] = new Polynomial<Float>(ncomp);
177      funcnames_.push_back(expr);
178      funccomponents_.push_back(ncomp);
[517]179  } else {
[1819]180    LogIO os( LogOrigin( "Fitter", "setExpression()", WHERE ) ) ;
181    os << LogIO::WARN << " compiled functions not yet implemented" << LogIO::POST;
[517]182    //funcs_.resize(1);
183    //funcs_[0] = new CompiledFunction<Float>();
184    //funcs_[0]->setFunction(String(expr));
185    return false;
186  }
187  return true;
[91]188}
189
[890]190bool Fitter::setData(std::vector<float> absc, std::vector<float> spec,
[91]191                       std::vector<bool> mask)
192{
193    x_.resize();
194    y_.resize();
195    m_.resize();
196    // convert std::vector to casa Vector
197    Vector<Float> tmpx(absc);
198    Vector<Float> tmpy(spec);
199    Vector<Bool> tmpm(mask);
200    AlwaysAssert(tmpx.nelements() == tmpy.nelements(), AipsError);
201    x_ = tmpx;
202    y_ = tmpy;
203    m_ = tmpm;
204    return true;
205}
206
[890]207std::vector<float> Fitter::getResidual() const
[91]208{
209    if (residual_.nelements() == 0)
210        throw (AipsError("Function not yet fitted."));
211    std::vector<float> stlout;
212    residual_.tovector(stlout);
213    return stlout;
214}
215
[890]216std::vector<float> Fitter::getFit() const
[91]217{
218    Vector<Float> out = thefit_;
219    std::vector<float> stlout;
220    out.tovector(stlout);
221    return stlout;
222
223}
224
[890]225std::vector<float> Fitter::getErrors() const
[91]226{
227    Vector<Float> out = error_;
228    std::vector<float> stlout;
229    out.tovector(stlout);
230    return stlout;
231}
232
[890]233bool Fitter::setParameters(std::vector<float> params)
[91]234{
235    Vector<Float> tmppar(params);
236    if (funcs_.nelements() == 0)
237        throw (AipsError("Function not yet set."));
238    if (parameters_.nelements() > 0 && tmppar.nelements() != parameters_.nelements())
239        throw (AipsError("Number of parameters inconsistent with function."));
[1232]240    if (parameters_.nelements() == 0) {
[91]241        parameters_.resize(tmppar.nelements());
[1232]242        if (tmppar.nelements() != fixedpar_.nelements()) {
243            fixedpar_.resize(tmppar.nelements());
244            fixedpar_ = False;
245        }
246    }
[91]247    if (dynamic_cast<Gaussian1D<Float>* >(funcs_[0]) != 0) {
248        uInt count = 0;
249        for (uInt j=0; j < funcs_.nelements(); ++j) {
250            for (uInt i=0; i < funcs_[j]->nparameters(); ++i) {
251                (funcs_[j]->parameters())[i] = tmppar[count];
252                parameters_[count] = tmppar[count];
253                ++count;
254            }
255        }
[1819]256    } else if (dynamic_cast<Lorentzian1D<Float>* >(funcs_[0]) != 0) {
257        uInt count = 0;
258        for (uInt j=0; j < funcs_.nelements(); ++j) {
259            for (uInt i=0; i < funcs_[j]->nparameters(); ++i) {
260                (funcs_[j]->parameters())[i] = tmppar[count];
261                parameters_[count] = tmppar[count];
262                ++count;
263            }
264        }
[2047]265    } else if (dynamic_cast<Sinusoid1D<Float>* >(funcs_[0]) != 0) {
266        uInt count = 0;
267        for (uInt j=0; j < funcs_.nelements(); ++j) {
268            for (uInt i=0; i < funcs_[j]->nparameters(); ++i) {
269                (funcs_[j]->parameters())[i] = tmppar[count];
270                parameters_[count] = tmppar[count];
271                ++count;
272            }
273        }
274    } else if (dynamic_cast<Polynomial<Float>* >(funcs_[0]) != 0) {
275        for (uInt i=0; i < funcs_[0]->nparameters(); ++i) {
276            parameters_[i] = tmppar[i];
277            (funcs_[0]->parameters())[i] =  tmppar[i];
278        }
[91]279    }
[1232]280    // reset
281    if (params.size() == 0) {
282        parameters_.resize();
283        fixedpar_.resize();
284    }
[91]285    return true;
286}
287
[890]288bool Fitter::setFixedParameters(std::vector<bool> fixed)
[91]289{
290    if (funcs_.nelements() == 0)
291        throw (AipsError("Function not yet set."));
[1232]292    if (fixedpar_.nelements() > 0 && fixed.size() != fixedpar_.nelements())
[91]293        throw (AipsError("Number of mask elements inconsistent with function."));
[1232]294    if (fixedpar_.nelements() == 0) {
295        fixedpar_.resize(parameters_.nelements());
296        fixedpar_ = False;
297    }
[91]298    if (dynamic_cast<Gaussian1D<Float>* >(funcs_[0]) != 0) {
299        uInt count = 0;
300        for (uInt j=0; j < funcs_.nelements(); ++j) {
301            for (uInt i=0; i < funcs_[j]->nparameters(); ++i) {
[1232]302                funcs_[j]->mask(i) = !fixed[count];
303                fixedpar_[count] = fixed[count];
[91]304                ++count;
305            }
306        }
[1819]307    } else if (dynamic_cast<Lorentzian1D<Float>* >(funcs_[0]) != 0) {
308      uInt count = 0;
309        for (uInt j=0; j < funcs_.nelements(); ++j) {
310            for (uInt i=0; i < funcs_[j]->nparameters(); ++i) {
311                funcs_[j]->mask(i) = !fixed[count];
312                fixedpar_[count] = fixed[count];
313                ++count;
314            }
315        }
[2047]316    } else if (dynamic_cast<Sinusoid1D<Float>* >(funcs_[0]) != 0) {
317      uInt count = 0;
318        for (uInt j=0; j < funcs_.nelements(); ++j) {
319            for (uInt i=0; i < funcs_[j]->nparameters(); ++i) {
320                funcs_[j]->mask(i) = !fixed[count];
321                fixedpar_[count] = fixed[count];
322                ++count;
323            }
324        }
325    } else if (dynamic_cast<Polynomial<Float>* >(funcs_[0]) != 0) {
326        for (uInt i=0; i < funcs_[0]->nparameters(); ++i) {
327            fixedpar_[i] = fixed[i];
328            funcs_[0]->mask(i) =  !fixed[i];
329        }
[91]330    }
331    return true;
332}
333
[890]334std::vector<float> Fitter::getParameters() const {
[91]335    Vector<Float> out = parameters_;
336    std::vector<float> stlout;
337    out.tovector(stlout);
338    return stlout;
339}
340
[890]341std::vector<bool> Fitter::getFixedParameters() const {
[108]342  Vector<Bool> out(parameters_.nelements());
343  if (fixedpar_.nelements() == 0) {
[1232]344    return std::vector<bool>();
[108]345    //throw (AipsError("No parameter mask set."));
346  } else {
347    out = fixedpar_;
348  }
349  std::vector<bool> stlout;
350  out.tovector(stlout);
351  return stlout;
[91]352}
353
[890]354float Fitter::getChisquared() const {
[91]355    return chisquared_;
356}
357
[890]358bool Fitter::fit() {
[517]359  NonLinearFitLM<Float> fitter;
360  CompoundFunction<Float> func;
[612]361
362  uInt n = funcs_.nelements();
[517]363  for (uInt i=0; i<n; ++i) {
364    func.addFunction(*funcs_[i]);
365  }
[612]366
[517]367  fitter.setFunction(func);
368  fitter.setMaxIter(50+n*10);
369  // Convergence criterium
370  fitter.setCriteria(0.001);
[612]371
[517]372  // Fit
373  Vector<Float> sigma(x_.nelements());
374  sigma = 1.0;
[890]375
[517]376  parameters_.resize();
377  parameters_ = fitter.fit(x_, y_, sigma, &m_);
[1067]378  if ( !fitter.converged() ) {
379     return false;
380  }
[517]381  std::vector<float> ps;
382  parameters_.tovector(ps);
383  setParameters(ps);
[612]384
[517]385  error_.resize();
386  error_ = fitter.errors();
[612]387
[517]388  chisquared_ = fitter.getChi2();
[890]389
[517]390  residual_.resize();
391  residual_ =  y_;
392  fitter.residual(residual_,x_);
393  // use fitter.residual(model=True) to get the model
394  thefit_.resize(x_.nelements());
395  fitter.residual(thefit_,x_,True);
396  return true;
397}
[483]398
[1391]399bool Fitter::lfit() {
400  LinearFit<Float> fitter;
401  CompoundFunction<Float> func;
[483]402
[1391]403  uInt n = funcs_.nelements();
404  for (uInt i=0; i<n; ++i) {
405    func.addFunction(*funcs_[i]);
406  }
407
408  fitter.setFunction(func);
409  //fitter.setMaxIter(50+n*10);
410  // Convergence criterium
411  //fitter.setCriteria(0.001);
412
413  // Fit
414  Vector<Float> sigma(x_.nelements());
415  sigma = 1.0;
416
417  parameters_.resize();
418  parameters_ = fitter.fit(x_, y_, sigma, &m_);
419  std::vector<float> ps;
420  parameters_.tovector(ps);
421  setParameters(ps);
422
423  error_.resize();
424  error_ = fitter.errors();
425
426  chisquared_ = fitter.getChi2();
427
428  residual_.resize();
429  residual_ =  y_;
430  fitter.residual(residual_,x_);
431  // use fitter.residual(model=True) to get the model
432  thefit_.resize(x_.nelements());
433  fitter.residual(thefit_,x_,True);
434  return true;
435}
436
[890]437std::vector<float> Fitter::evaluate(int whichComp) const
438{
[517]439  std::vector<float> stlout;
[890]440  uInt idx = uInt(whichComp);
[517]441  Float y;
442  if ( idx < funcs_.nelements() ) {
443    for (uInt i=0; i<x_.nelements(); ++i) {
444      y = (*funcs_[idx])(x_[i]);
445      stlout.push_back(float(y));
446    }
447  }
448  return stlout;
449}
[483]450
[1932]451STFitEntry Fitter::getFitEntry() const
452{
453  STFitEntry fit;
454  fit.setParameters(getParameters());
455  fit.setErrors(getErrors());
456  fit.setComponents(funccomponents_);
457  fit.setFunctions(funcnames_);
458  fit.setParmasks(getFixedParameters());
459  return fit;
460}
Note: See TracBrowser for help on using the repository browser.