LCOV - code coverage report
Current view: top level - components/SpectralComponents - PCFSpectralElement.cc (source / functions) Hit Total Coverage
Test: casacpp_coverage.info Lines: 84 118 71.2 %
Date: 2024-11-06 17:42:47 Functions: 20 26 76.9 %

          Line data    Source code
       1             : //# SpectralElement.cc: Describes (a set of related) spectral lines
       2             : //# Copyright (C) 2001,2004
       3             : //# Associated Universities, Inc. Washington DC, USA.
       4             : //#
       5             : //# This library is free software; you can redistribute it and/or modify it
       6             : //# under the terms of the GNU Library General Public License as published by
       7             : //# the Free Software Foundation; either version 2 of the License, or (at your
       8             : //# option) any later version.
       9             : //#
      10             : //# This library is distributed in the hope that it will be useful, but WITHOUT
      11             : //# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
      12             : //# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
      13             : //# License for more details.
      14             : //#
      15             : //# You should have received a copy of the GNU Library General Public License
      16             : //# along with this library; if not, write to the Free Software Foundation,
      17             : //# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
      18             : //#
      19             : //# Correspondence concerning AIPS++ should be addressed as follows:
      20             : //#        Internet email: casa-feedback@nrao.edu.
      21             : //#        Postal address: AIPS++ Project Office
      22             : //#                        National Radio Astronomy Observatory
      23             : //#                        520 Edgemont Road
      24             : //#                        Charlottesville, VA 22903-2475 USA
      25             : //#
      26             : //# $Id: SpectralElement.cc 21024 2011-03-01 11:46:18Z gervandiepen $
      27             : 
      28             : //# Includes
      29             : #include <components/SpectralComponents/PCFSpectralElement.h>
      30             : 
      31             : #include <casacore/casa/BasicSL/Constants.h>
      32             : #include <casacore/scimath/Functionals/Gaussian1D.h>
      33             : #include <iostream>
      34             : 
      35             : using namespace casacore;
      36             : namespace casa { //# NAMESPACE CASA - BEGIN
      37             : 
      38             : 
      39             : //# Constructors
      40           0 : PCFSpectralElement::PCFSpectralElement()
      41           0 : : SpectralElement() {
      42           0 :         _initFunction();
      43           0 : }
      44             : 
      45           0 : PCFSpectralElement::PCFSpectralElement(
      46             :         SpectralElement::Types type
      47           0 : ) : SpectralElement(type, Vector<Double>(3, 1)) {
      48           0 :         _initFunction();
      49           0 :         setCenter(0);
      50           0 : }
      51             : 
      52           0 : PCFSpectralElement::PCFSpectralElement(
      53             :         SpectralElement::Types type, const Vector<Double>& param
      54           0 : ) : SpectralElement(type, param) {
      55           0 :         if (param.size() != 3) {
      56           0 :                 throw AipsError(
      57             :                         "PCFSpectralElement: PCF function must have "
      58             :                         "3 parameters"
      59           0 :             );
      60             :         }
      61           0 :         if (param[0] == 0) {
      62           0 :                 throw AipsError(
      63             :                         "PCFSpectralElement: PCF amplitude cannot equal 0"
      64           0 :                 );
      65             :         }
      66           0 :         _initFunction();
      67             : 
      68           0 : }
      69             : 
      70       16236 : PCFSpectralElement::PCFSpectralElement(
      71             :         SpectralElement::Types type, Double amp,
      72             :         Double center, Double width
      73       16236 : ) : SpectralElement(type, Vector<Double>(3)) {
      74       16236 :         _initFunction();
      75       16236 :         setAmpl(amp);
      76       16236 :         setCenter(center);
      77       16236 :         setWidth(width);
      78       16236 : }
      79             : 
      80      451770 : PCFSpectralElement::PCFSpectralElement(const PCFSpectralElement& other)
      81      451770 : : SpectralElement(other) {}
      82             : 
      83      468006 : PCFSpectralElement::~PCFSpectralElement() {}
      84             : 
      85      296500 : Double PCFSpectralElement::getAmpl() const {
      86      296500 :   return get()[AMP];
      87             : }
      88             : 
      89       46706 : Double PCFSpectralElement::getCenter() const {
      90       46706 :   return get()[CENTER];
      91             : }
      92             : 
      93       47002 : Double PCFSpectralElement::getWidth() const {
      94       47002 :         return get()[WIDTH];
      95             : }
      96             : 
      97       93406 : Double PCFSpectralElement::getAmplErr() const {
      98       93406 :         return getError()[AMP];
      99             : }
     100             : 
     101       46706 : Double PCFSpectralElement::getCenterErr() const {
     102       46706 :         return getError()[CENTER];
     103             : }
     104             : 
     105       46802 : Double PCFSpectralElement::getWidthErr() const {
     106       46802 :         return getError()[WIDTH];
     107             : }
     108             : 
     109       71245 : void PCFSpectralElement::setAmpl(const Double ampl) {
     110       71245 :         if (ampl == 0) {
     111           0 :                 throw AipsError("PCF amplitude cannot equal 0");
     112             :         }
     113       71245 :         Vector<Double> p = get();
     114       71245 :         p(0) = ampl;
     115       71245 :         _set(p);
     116       71245 :         Vector<Double> err = getError();
     117       71245 :         err[AMP] = 0;
     118       71245 :         setError(err);
     119       71245 : } 
     120             : 
     121       71245 : void PCFSpectralElement::setCenter(const Double center) {
     122       71245 :         Vector<Double> p = get();
     123       71245 :         p[1] = center;
     124       71245 :         _set(p);
     125       71245 :         Vector<Double> err = getError();
     126       71245 :         err[CENTER] = 0;
     127       71245 :         setError(err);
     128       71245 : }
     129             : 
     130       16236 : void PCFSpectralElement::setWidth(const Double width) {
     131             : 
     132       16236 :         Vector<Double> p = get();
     133       16236 :         p[2] = width > 0 ? width : -width;
     134       16236 :         _set(p);
     135       16236 :         Vector<Double> err = getError();
     136       16236 :         err[WIDTH] = 0;
     137       16236 :         setError(err);
     138       16236 : }
     139           1 : void PCFSpectralElement::fixAmpl(const Bool isFixed) {
     140           1 :         Vector<Bool> myFixed = fixed();
     141           1 :         myFixed[AMP] = isFixed;
     142           1 :         fix(myFixed);
     143           1 : }
     144             : 
     145           0 : void PCFSpectralElement::fixCenter(const Bool isFixed) {
     146           0 :         Vector<Bool> myFixed = fixed();
     147           0 :         myFixed[CENTER] = isFixed;
     148           0 :         fix(myFixed);
     149           0 : }
     150             : 
     151           0 : void PCFSpectralElement::fixWidth(const Bool isFixed) {
     152           0 :         Vector<Bool> myFixed = fixed();
     153           0 :         myFixed[WIDTH] = isFixed;
     154           0 :         fix(myFixed);
     155           0 : }
     156             : 
     157           1 : void PCFSpectralElement::fixByString(const String& s) {
     158           1 :         String fix(s);
     159           1 :         fix.downcase();
     160           1 :         if (fix.contains("p")) {
     161           1 :                 fixAmpl(true);
     162             :         }
     163           1 :         if (fix.contains("c")) {
     164           0 :                 fixCenter(true);
     165             :         }
     166           1 :         if (fix.contains("f")) {
     167           0 :                 fixWidth(true);
     168             :         }
     169           1 : }
     170             : 
     171          10 : Bool PCFSpectralElement::fixedAmpl() const {
     172          10 :         return fixed()[AMP];
     173             : }
     174             : 
     175          12 : Bool PCFSpectralElement::fixedCenter() const {
     176          12 :         return fixed()[CENTER];
     177             : }
     178             : 
     179           8 : Bool PCFSpectralElement::fixedWidth() const {
     180           8 :         return fixed()[WIDTH];
     181             : }
     182             : 
     183       64230 : void PCFSpectralElement::set(const Vector<Double>& params) {
     184       64230 :         if (params.nelements() != 3) {
     185           0 :                 throw AipsError(
     186             :                         "PCFSpectralElement: PCF must have "
     187             :                         "3 parameters"
     188           0 :                 );
     189             :         }
     190       64230 :         if (params[AMP] == 0) {
     191           3 :                 throw AipsError("PCF amplitude cannot equal 0");
     192             :         }
     193       64227 :         Vector<Double> p = params.copy();
     194       64227 :         if (p[WIDTH] < 0) {
     195        4850 :                 p[WIDTH] *= -1;
     196             :         }
     197       64227 :         _set(p);
     198       64227 : }
     199             : 
     200       46702 : Double PCFSpectralElement::getIntegralErr() const {
     201       46702 :         Double damp = getAmplErr()/getAmpl();
     202       46702 :         Double dwidth = getWidthErr()/getWidth();
     203       46702 :         return sqrt(damp*damp + dwidth*dwidth) * getIntegral();
     204             : }
     205             : 
     206       16236 : void PCFSpectralElement::_initFunction() {
     207             :         // Just need something we can instantiate, subclasses should set their
     208             :         // own functions in their constructors
     209       16236 :         _setFunction(
     210       32472 :                 std::shared_ptr<Function<Double> >(
     211       16236 :                         new Gaussian1D<Double>()
     212             :                 )
     213             :         );
     214       16236 : }
     215             : 
     216             : 
     217             : 
     218             : } //# NAMESPACE CASA - END
     219             : 

Generated by: LCOV version 1.16