source: Sophya/trunk/SophyaPI/PIext/servnobjm.h@ 1067

Last change on this file since 1067 was 1067, checked in by ercodmgr, 25 years ago

piafitting.cc: GeneralData::GetMinMax -> GeneralData::GetMnMx
autres fichiers: intro de gdfrvec (FillGFDfrVec)

cmv 12/07/00

File size: 6.5 KB
Line 
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
9#include "machdefs.h"
10#include <string>
11#include <list>
12#include <map>
13#include <functional>
14
15#include "pdlmgr.h"
16#include "dlftypes.h"
17#include "anydataobj.h"
18
19#ifdef SANS_EVOLPLANCK
20class NTuple;
21class Histo;
22class Histo2D;
23class HProf;
24#else
25namespace SOPHYA {
26class NTuple;
27class Histo;
28class Histo2D;
29class HProf;
30}
31#endif
32
33class NamedObjMgr;
34class PIStdImgApp;
35class NObjMgrAdapter;
36
37class Services2NObjMgr {
38public:
39 Services2NObjMgr(NamedObjMgr* omg, string& tmpdir);
40 virtual ~Services2NObjMgr();
41
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
47 inline void SetImgApp(PIStdImgApp* app) {mImgapp = app; }
48
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,
67 string& expcut, string dopt="", string loop="");
68 virtual void DisplayPoints3D(string & nom, string& expx, string& expy, string& expz,
69 string& expcut, string dopt="", string loop="");
70 virtual void DisplayPoints2DW(string & nom, string& expx, string& expy,
71 string& expwt, string& expcut, string dopt="", string loop="");
72// Projection d'expressions dans histogramme, vecteur/matrices (et trace)
73 virtual void ProjectH1(string & nom, string& expx, string& expwt, string& expcut,
74 string& nomh1, string dopt="", string loop="");
75 virtual void ProjectH2(string & nom, string& expx, string& expy, string& expwt,
76 string& expcut, string& nomh2, string dopt="", string loop="");
77 virtual void ProjectHProf(string & nom, string& expx, string& expy, string& expwt,
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="");
88 virtual void NtFromASCIIFile(string& nom,string& filename,double def_val=0.);
89 virtual void FillNT(string & nom, string& expx, string& expy, string& expz,
90 string& expt, string& expcut, string& nomnt, string loop="");
91 virtual void FillGFD(string & nom, string& expx, string& expy, string& expz,
92 string& experr, string& expcut, string& nomgfd, string loop="");
93 virtual void FillGFDfrVec(string nomgfd,string namx,string namy,string namz,string name);
94 virtual void FillNTFrCFile(string & nom, string const & fname,
95 string const & funcname, string & nomnt, string loop="");
96 virtual void PrepareNTExpressionCFile(string & nomobj, string const & fname,
97 string const & funcname);
98
99// Calcul d'expressions d'interface NTuple pour les objets
100 void ComputeExpressions(NObjMgrAdapter* obja, string& expx, string& expy,
101 string& expz, string& expt, string& expcut, string& loop,
102 NTuple* nt=NULL, Histo* h1=NULL,
103 Histo2D* h2=NULL, HProf* hp=NULL);
104 PlotExprFunc LinkExprFunc(string& vardec, string& expx, string& expy,
105 string& expz, string& expt, string& cut);
106 DlFunction LinkFunctionFromFile(string const & fname, string const & funcname);
107 void CloseDLL();
108
109// Utilitaires divers
110 static void DecodeLoopParameters(string& loop, int& i1, int& i2, int& di);
111 int DecodeDispOption(string& dopt, bool& fgsrgr);
112 static bool GetStatsOption(string& dopt);
113 static void SetDefaultStatsOption(bool opt);
114 string FileName2Name(string const & fn);
115 char* PClassIdToClassName(int cid);
116
117protected:
118 void InitGrAttNames();
119
120// Pour enregister les objets et leurs adaptateurs pour NamedObjMgr
121 struct dataobj_adapter {
122 AnyDataObj* obj; NObjMgrAdapter* obja;
123 };
124 typedef list<dataobj_adapter> ObjAdaptList;
125 ObjAdaptList objadaplist;
126
127// Variables membre , en public pour le moment
128 struct gratt_item {
129 int a1, a2;
130 };
131 typedef map<string, gratt_item, less<string> > GrAttNames;
132
133// Pour les changements d'attributs graphiques / de visualisation
134 GrAttNames GrAcolors;
135 GrAttNames GrAlines;
136 GrAttNames GrAmarkers;
137 GrAttNames GrAfonts;
138 GrAttNames GrAcmap;
139 GrAttNames GrAzoom;
140 GrAttNames GrAaxes;
141
142 PDynLinkMgr * dynlink; // shared-lib lib.so
143 string TmpDir; // Pour fichiers temporaires
144
145 PIStdImgApp* mImgapp;
146 NamedObjMgr* mOmg;
147
148};
149
150
151#endif
Note: See TracBrowser for help on using the repository browser.