Changeset 385 in Sophya for trunk/SophyaPI/PIext/piafitting.h
- Timestamp:
- Aug 13, 1999, 12:51:54 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/piafitting.h
r384 r385 24 24 class PIStdImgApp; 25 25 class PIAFitterWind; 26 class GeneralFunction; 26 class GeneralFunction; class GeneralFunc; class GeneralFit; 27 27 class GeneralFitData; 28 class GeneralFit; 29 class Histo; 30 class Matrix; class Histo2D; class RzImage; 28 class Histo; class Matrix; class Histo2D; class RzImage; 31 29 32 30 class PIAFitter : public CmdExecutor { … … 35 33 virtual ~PIAFitter(); 36 34 virtual int Execute(string& keyw, vector<string>& args); 37 virtual void LinkFitFunc(string const & fname, string const & funcname, int nvar, int npar); 38 virtual void PrepareFitFuncCFile(string const & fname, string const & funcname, int nvar, int npar); 35 virtual void LinkFitFunc(string const& fname, string const& funcname 36 ,int nvar,int npar); 37 virtual void PrepareFitFuncCFile(string const& fname, string const& funcname 38 ,int nvar,int npar); 39 39 40 40 friend class PIAFitterWind; … … 68 68 void LinFit(void); 69 69 70 // Graphique 70 71 PIStdImgApp* mApp; // Do not delete 71 PIAFitterWind* FWindFit; 72 PIAFitterWind* FWindFit; // Fenetre de config interactive 73 // Objet a fitter 72 74 string mNObj; AnyDataObj* mObj; // Do not delete 73 GeneralFunction* mFunc; string mFName; 75 // Structure de data pour le fit, parametres et options 74 76 GeneralFitData* mGData; 75 77 int mNPar,mNVar,mNBinX,mNBinY,mNData; … … 79 81 DFOPTIONS mOpt; 80 82 DFOPTIONS mOptSave; 81 // Objets a fitter83 // Possibles objets a fitter 82 84 Vector* mV; Histo* mH; // Do not delete 83 85 Matrix* mM; Histo2D* mH2; RzImage* mIm; // Do not delete 84 86 GeneralFitData* mG; // Do not delete 85 86 // Gestion de fonction de fit user 87 // Gestion des fonctions de fit predefinies 88 GeneralFunction* mFunction; string mFName; 89 // Gestion de fonction de fit definie par l'utilisateur 90 GeneralFunc* mFunc; 87 91 PDynLinkMgr* mDlUFunc; 88 92 string mNameFitFunc;
Note:
See TracChangeset
for help on using the changeset viewer.