Last change
on this file since 719 was 466, checked in by ercodmgr, 26 years ago |
Changement nom /func en /autoc
Nouvelles commandes PAW-like n/plot,...,reset,h/plot/2d etc..
Creation de helpfit pour commenatires fit,fitlin,fitw,crfitfun etc..
cmv 14/10/99
|
File size:
1.0 KB
|
Rev | Line | |
---|
[463] | 1 | // This may look like C code, but it is really -*- C++ -*-
|
---|
| 2 | // Classe d ajustement pour piapp
|
---|
| 3 | // cmv 98-99
|
---|
| 4 | // CEA-DAPNIA LAL-IN2P3/CNRS
|
---|
| 5 |
|
---|
| 6 | #ifndef PAWEXECUTOR_H_SEEN
|
---|
| 7 | #define PAWEXECUTOR_H_SEEN
|
---|
| 8 |
|
---|
| 9 | #include "machdefs.h"
|
---|
| 10 | #include <string>
|
---|
| 11 | #include <vector>
|
---|
| 12 |
|
---|
| 13 | #include "anydataobj.h"
|
---|
| 14 | #include "piacmd.h"
|
---|
| 15 |
|
---|
| 16 | class PAWExecutor : public CmdExecutor {
|
---|
| 17 | public:
|
---|
| 18 | PAWExecutor(PIACmd* piac, PIStdImgApp* app);
|
---|
| 19 | virtual ~PAWExecutor();
|
---|
| 20 | virtual int Execute(string& keyw, vector<string>& args);
|
---|
| 21 | protected:
|
---|
[466] | 22 | void reset(vector<string>& tokens);
|
---|
| 23 | void n_plot(vector<string>& tokens);
|
---|
| 24 | void n_proj(vector<string>& tokens);
|
---|
| 25 | void h_integ(vector<string>& tokens);
|
---|
| 26 | void h_deriv(vector<string>& tokens);
|
---|
| 27 | void h_rebin(vector<string>& tokens);
|
---|
| 28 | void h_cadd(vector<string>& tokens);
|
---|
| 29 | void h_cmult(vector<string>& tokens);
|
---|
| 30 | void h_plot_2d(vector<string>& tokens);
|
---|
| 31 | int decodepawstring(string tokens,string& nameobj
|
---|
| 32 | ,string& xexp,string& yexp,string& zexp);
|
---|
[463] | 33 | PIStdImgApp* mApp;
|
---|
| 34 | };
|
---|
| 35 |
|
---|
| 36 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.