Line data Source code
1 : /** 2 : Bojan Nikolic <bojan@bnikolic.co.uk> 3 : Initial version April 2009 4 : 5 : This file is part of BNMin1 and is licensed under GNU General 6 : Public License version 2. 7 : 8 : \file linemodel.cxx 9 : Renamed to linemodel.cc 2023 10 : 11 : */ 12 : 13 : #include "linemodel.h" 14 : 15 : 16 : namespace Minim { 17 : 18 0 : void LineMod::AddParams(std::vector< Minim::DParamCtr > &pars) 19 : { 20 : ParamCtr<double> pa(&a, 21 : "a", 22 : true, 23 0 : "Linear term"); 24 : ParamCtr<double> pb(&b, 25 : "b", 26 : true, 27 0 : "Constant term"); 28 0 : pars.push_back(pa); 29 0 : pars.push_back(pb); 30 0 : } 31 : 32 : } 33 : 34 :