[165] | 1 | // This may look like C code, but it is really -*- C++ -*-
|
---|
| 2 | // Classe de services destinee a NamedObjMgr pour piapp
|
---|
| 3 | // Reza Aout 98
|
---|
| 4 | // CEA-DAPNIA LAL-IN2P3/CNRS
|
---|
| 5 |
|
---|
| 6 | #ifndef SERVNOBJM_H_SEEN
|
---|
| 7 | #define SERVNOBJM_H_SEEN
|
---|
| 8 |
|
---|
[293] | 9 | #include "machdefs.h"
|
---|
[165] | 10 | #include <string>
|
---|
[295] | 11 | #include <list>
|
---|
| 12 | #include <map>
|
---|
[351] | 13 | #include <functional>
|
---|
[165] | 14 |
|
---|
[171] | 15 | #include "pdlmgr.h"
|
---|
[165] | 16 | #include "dlftypes.h"
|
---|
[330] | 17 | #include "anydataobj.h"
|
---|
[165] | 18 |
|
---|
[495] | 19 | #ifdef SANS_EVOLPLANCK
|
---|
[165] | 20 | class NTuple;
|
---|
| 21 | class Histo;
|
---|
| 22 | class Histo2D;
|
---|
| 23 | class HProf;
|
---|
[495] | 24 | #else
|
---|
| 25 | namespace PlanckDPC {
|
---|
| 26 | class NTuple;
|
---|
| 27 | class Histo;
|
---|
| 28 | class Histo2D;
|
---|
| 29 | class HProf;
|
---|
| 30 | }
|
---|
| 31 | #endif
|
---|
| 32 |
|
---|
[333] | 33 | class NamedObjMgr;
|
---|
[165] | 34 | class PIStdImgApp;
|
---|
[330] | 35 | class NObjMgrAdapter;
|
---|
[165] | 36 |
|
---|
| 37 | class Services2NObjMgr {
|
---|
| 38 | public:
|
---|
[333] | 39 | Services2NObjMgr(NamedObjMgr* omg, string& tmpdir);
|
---|
[327] | 40 | virtual ~Services2NObjMgr();
|
---|
[165] | 41 |
|
---|
[295] | 42 | // Pour enregistrer les objets de donnees et leurs adaptateurs
|
---|
| 43 | void RegisterClass(AnyDataObj* o, NObjMgrAdapter* oa);
|
---|
| 44 | // Pour recuperer l'adaptateur pour un objet o
|
---|
| 45 | NObjMgrAdapter* GetAdapter(AnyDataObj* o);
|
---|
| 46 |
|
---|
[165] | 47 | inline void SetImgApp(PIStdImgApp* app) {mImgapp = app; }
|
---|
| 48 |
|
---|
[333] | 49 | // Trace de fonctions 1-D , 2-D
|
---|
| 50 | virtual void PlotFunc(string const & expfunc, string & nom, double xmin, double xmax,
|
---|
| 51 | int np=100, string dopt="");
|
---|
| 52 | virtual void PlotFunc2D(string const & expfunc, string & nom, double xmin, double xmax,
|
---|
| 53 | double ymin, double ymax, int npx=50, int npy=50, string dopt="");
|
---|
| 54 | virtual void PlotFuncFrCFile(string const & fname, string const & func, string & nom,
|
---|
| 55 | double xmin, double xmax, int np=100, string dopt="");
|
---|
| 56 | virtual void PlotFunc2DFrCFile(string const & fname, string const & func, string & nom,
|
---|
| 57 | double xmin, double xmax, double ymin, double ymax,
|
---|
| 58 | int npx=50, int npy=50, string dopt="");
|
---|
| 59 | virtual void PlotFunc(DlFunctionOfX f, string & nom, double xmin, double xmax,
|
---|
| 60 | int np=100, string dopt="");
|
---|
| 61 | virtual void PlotFunc2D(DlFunctionOfXY f, string & nom, double xmin, double xmax,
|
---|
| 62 | double ymin, double ymax, int npx=50, int npy=50, string dopt="");
|
---|
| 63 |
|
---|
| 64 | // Trace d'expression de NTuple, et d'autres objets
|
---|
| 65 | virtual void DisplayPoints2D(string & nom, string& expx, string& expy,
|
---|
| 66 | string& experrx, string& experry,
|
---|
[357] | 67 | string& expcut, string dopt="", string loop="");
|
---|
[333] | 68 | virtual void DisplayPoints3D(string & nom, string& expx, string& expy, string& expz,
|
---|
[357] | 69 | string& expcut, string dopt="", string loop="");
|
---|
[333] | 70 | virtual void DisplayPoints2DW(string & nom, string& expx, string& expy,
|
---|
[357] | 71 | string& expwt, string& expcut, string dopt="", string loop="");
|
---|
| 72 | // Projection d'expressions dans histogramme, vecteur/matrices (et trace)
|
---|
[333] | 73 | virtual void ProjectH1(string & nom, string& expx, string& expwt, string& expcut,
|
---|
[357] | 74 | string& nomh1, string dopt="", string loop="");
|
---|
[333] | 75 | virtual void ProjectH2(string & nom, string& expx, string& expy, string& expwt,
|
---|
[357] | 76 | string& expcut, string& nomh2, string dopt="", string loop="");
|
---|
[333] | 77 | virtual void ProjectHProf(string & nom, string& expx, string& expy, string& expwt,
|
---|
[357] | 78 | string& expcut, string& nomprof, string dopt="", string loop="");
|
---|
| 79 |
|
---|
| 80 | // Remplissage de vecteurs, ntuples, GFD
|
---|
| 81 | virtual void FillVect(string & nom, string& expx, string& expv, string& expcut,
|
---|
| 82 | string& nomvec, string dopt="", string loop="");
|
---|
| 83 | virtual void FillMatx(string & nom, string& expx, string& expy, string& expv,
|
---|
| 84 | string& expcut, string& nommtx, string dopt="", string loop="");
|
---|
| 85 |
|
---|
| 86 | virtual void ExpressionToVector(string & nom, string& expx, string& expcut,
|
---|
| 87 | string& nomvec, string dopt="", string loop="");
|
---|
[447] | 88 | virtual void NtFromASCIIFile(string& nom,string& filename,double def_val=0.);
|
---|
[333] | 89 | virtual void FillNT(string & nom, string& expx, string& expy, string& expz,
|
---|
[357] | 90 | string& expt, string& expcut, string& nomnt, string loop="");
|
---|
[333] | 91 | virtual void FillGFD(string & nom, string& expx, string& expy, string& expz,
|
---|
[357] | 92 | string& experr, string& expcut, string& nomgfd, string loop="");
|
---|
[333] | 93 | virtual void FillNTFrCFile(string & nom, string const & fname,
|
---|
[357] | 94 | string const & funcname, string & nomnt, string loop="");
|
---|
[333] | 95 | virtual void PrepareNTExpressionCFile(string & nomobj, string const & fname,
|
---|
| 96 | string const & funcname);
|
---|
| 97 |
|
---|
| 98 | // Calcul d'expressions d'interface NTuple pour les objets
|
---|
| 99 | void ComputeExpressions(NObjMgrAdapter* obja, string& expx, string& expy,
|
---|
[357] | 100 | string& expz, string& expt, string& expcut, string& loop,
|
---|
[333] | 101 | NTuple* nt=NULL, Histo* h1=NULL,
|
---|
| 102 | Histo2D* h2=NULL, HProf* hp=NULL);
|
---|
| 103 | PlotExprFunc LinkExprFunc(string& vardec, string& expx, string& expy,
|
---|
| 104 | string& expz, string& expt, string& cut);
|
---|
[326] | 105 | DlFunction LinkFunctionFromFile(string const & fname, string const & funcname);
|
---|
[165] | 106 | void CloseDLL();
|
---|
| 107 |
|
---|
[326] | 108 | // Utilitaires divers
|
---|
[357] | 109 | static void DecodeLoopParameters(string& loop, int& i1, int& i2, int& di);
|
---|
| 110 | int DecodeDispOption(string& dopt, bool& fgsrgr);
|
---|
[165] | 111 | string FileName2Name(string const & fn);
|
---|
[333] | 112 | char* PClassIdToClassName(int cid);
|
---|
[165] | 113 |
|
---|
[295] | 114 | protected:
|
---|
[165] | 115 | void InitGrAttNames();
|
---|
| 116 |
|
---|
[295] | 117 | // Pour enregister les objets et leurs adaptateurs pour NamedObjMgr
|
---|
| 118 | struct dataobj_adapter {
|
---|
| 119 | AnyDataObj* obj; NObjMgrAdapter* obja;
|
---|
| 120 | };
|
---|
| 121 | typedef list<dataobj_adapter> ObjAdaptList;
|
---|
| 122 | ObjAdaptList objadaplist;
|
---|
| 123 |
|
---|
[165] | 124 | // Variables membre , en public pour le moment
|
---|
| 125 | struct gratt_item {
|
---|
| 126 | int a1, a2;
|
---|
| 127 | };
|
---|
| 128 | typedef map<string, gratt_item, less<string> > GrAttNames;
|
---|
[295] | 129 |
|
---|
[165] | 130 | // Pour les changements d'attributs graphiques / de visualisation
|
---|
| 131 | GrAttNames GrAcolors;
|
---|
| 132 | GrAttNames GrAlines;
|
---|
| 133 | GrAttNames GrAmarkers;
|
---|
| 134 | GrAttNames GrAfonts;
|
---|
| 135 | GrAttNames GrAcmap;
|
---|
| 136 | GrAttNames GrAzoom;
|
---|
[203] | 137 | GrAttNames GrAaxes;
|
---|
[165] | 138 |
|
---|
[171] | 139 | PDynLinkMgr * dynlink; // shared-lib lib.so
|
---|
| 140 | string TmpDir; // Pour fichiers temporaires
|
---|
[165] | 141 |
|
---|
| 142 | PIStdImgApp* mImgapp;
|
---|
[333] | 143 | NamedObjMgr* mOmg;
|
---|
[165] | 144 |
|
---|
| 145 | };
|
---|
| 146 |
|
---|
| 147 |
|
---|
| 148 | #endif
|
---|