File indexing completed on 2024-12-22 04:18:13
0001 /*************************************************************************** 0002 * * 0003 * copyright : (C) 2007 The University of Toronto * 0004 * netterfield@astro.utoronto.ca * 0005 * copyright : (C) 2005 University of British Columbia * 0006 * dscott@phas.ubc.ca * 0007 * * 0008 * This program is free software; you can redistribute it and/or modify * 0009 * it under the terms of the GNU General Public License as published by * 0010 * the Free Software Foundation; either version 2 of the License, or * 0011 * (at your option) any later version. * 0012 * * 0013 ***************************************************************************/ 0014 0015 #ifndef FITLORENTZIANUNWEIGHTEDPLUGIN_H 0016 #define FITLORENTZIANUNWEIGHTEDPLUGIN_H 0017 0018 #include <QFile> 0019 0020 #include <basicplugin.h> 0021 #include <dataobjectplugin.h> 0022 0023 class FitLorentzianUnweightedSource : public Kst::BasicPlugin { 0024 Q_OBJECT 0025 0026 public: 0027 virtual QString _automaticDescriptiveName() const; 0028 0029 Kst::VectorPtr vectorX() const; 0030 Kst::VectorPtr vectorY() const; 0031 0032 virtual void change(Kst::DataObjectConfigWidget *configWidget); 0033 0034 void setupOutputs(); 0035 virtual bool algorithm(); 0036 0037 virtual QStringList inputVectorList() const; 0038 virtual QStringList inputScalarList() const; 0039 virtual QStringList inputStringList() const; 0040 virtual QStringList outputVectorList() const; 0041 virtual QStringList outputScalarList() const; 0042 virtual QStringList outputStringList() const; 0043 0044 virtual void saveProperties(QXmlStreamWriter &s); 0045 0046 protected: 0047 FitLorentzianUnweightedSource(Kst::ObjectStore *store); 0048 ~FitLorentzianUnweightedSource(); 0049 0050 virtual QString parameterName(int index) const; 0051 0052 friend class Kst::ObjectStore; 0053 0054 0055 }; 0056 0057 0058 class FitLorentzianUnweightedPlugin : public QObject, public Kst::DataObjectPluginInterface { 0059 Q_OBJECT 0060 Q_INTERFACES(Kst::DataObjectPluginInterface) 0061 Q_PLUGIN_METADATA(IID "com.kst.DataObjectPluginInterface/2.0") 0062 public: 0063 virtual ~FitLorentzianUnweightedPlugin() {} 0064 0065 virtual QString pluginName() const; 0066 virtual QString pluginDescription() const; 0067 0068 virtual DataObjectPluginInterface::PluginTypeID pluginType() const { return Fit; } 0069 0070 virtual bool hasConfigWidget() const { return true; } 0071 0072 virtual Kst::DataObject *create(Kst::ObjectStore *store, Kst::DataObjectConfigWidget *configWidget, bool setupInputsOutputs = true) const; 0073 0074 virtual Kst::DataObjectConfigWidget *configWidget(QSettings *settingsObject) const; 0075 }; 0076 0077 #endif 0078 // vim: ts=2 sw=2 et