#include "piacmd.h" #include #include #include #include "basexecut.h" #include "pdlmgr.h" #include "ctimer.h" #include "strutilxx.h" #include "pistdimgapp.h" #include "nobjmgr.h" #include "servnobjm.h" #include "nomgadapter.h" #include "piyfxdrw.h" #include "pibargraph.h" #include "pitxtdrw.h" #include "histos.h" #include "histos2.h" #include "hisprof.h" #include "ntuple.h" #include "generaldata.h" #ifdef SANS_EVOLPLANCK #include "cvector.h" #else #include "tvector.h" #endif /* --Methode-- */ PIABaseExecutor::PIABaseExecutor(PIACmd* piac, NamedObjMgr* omg, PIStdImgApp* app) { mpiac = piac; mObjMgr = omg; mImgApp = app; dynlink = NULL; dynlink2 = NULL; RegisterCommands(); } PIABaseExecutor::~PIABaseExecutor() { if (dynlink) delete dynlink; if (dynlink2) delete dynlink2; } /* Macro pour tester si flag normalized coordinate est present */ #define _CkBoolNC_(_jk_) ((tokens.size()>_jk_) && (tokens[_jk_] == "true")) ? true : false; /* --Methode-- */ int PIABaseExecutor::Execute(string& kw, vector& tokens, string& toks) { Services2NObjMgr* srvo = mObjMgr->GetServiceObj(); // >>>>> Chargement de modules if (kw == "loadmodule") { if (tokens.size() < 2) { cout << "Usage: loadmodule fnameso modulename" << endl; return(0); } mpiac->LoadModule(tokens[0], tokens[1]); } // >>>>>>>>>>> Fenetre graphique , changement d'attributs graphiques else if (kw == "zone") { while (tokens.size() < 2) tokens.push_back("1"); int nx, ny; nx = ny = 1; nx = atoi(tokens[0].c_str()); ny = atoi(tokens[1].c_str()); if (mImgApp) { mImgApp->LockMutex(); // global event loop synchronisation mImgApp->SetZone(nx, ny); mImgApp->UnlockMutex(true); // global event loop synchronisation } } else if (kw == "newwin") { int nx=1, ny=1; int sx=0, sy=0; //if(tokens.size() < 2) { cout << "Usage: newwin nx ny" << endl; return(0); } if(tokens.size() > 0) nx = atoi(tokens[0].c_str()); if(tokens.size() > 1) ny = atoi(tokens[1].c_str()); if(tokens.size() > 3) { sx = atoi(tokens[2].c_str()); sy = atoi(tokens[3].c_str()); } if (mImgApp) { mImgApp->LockMutex(); // global event loop synchronisation mImgApp->CreateGraphWin(nx, ny, sx, sy); mImgApp->UnlockMutex(true); // global event loop synchronisation } } else if (kw == "stacknext") { mImgApp->LockMutex(); // global event loop synchronisation mImgApp->StackWinNext(); mImgApp->UnlockMutex(true); // global event loop synchronisation } else if (kw == "graphicatt") { if (tokens.size() < 1) { cout << "Usage: graphicatt attributes_list (att=def->defaut)" << endl; return(0); } string opts = tokens[0]; if (tokens.size() > 1) for(unsigned int kt=1; ktSetDefaultGraphicAttributes(opts); } else if (kw == "setaxesatt") { if (tokens.size() < 1) { cout << "Usage: setaxesatt attributes_list " << endl; return(0); } string opts = tokens[0]; if (tokens.size() > 1) for(unsigned int kt=1; ktSetDefaultAxesAttributes(opts); } else if (kw == "setinsetlimits") { if (tokens.size() < 4) { cout << "Usage: setinsetlimits xmin xmax ymin ymax" << endl; return(0); } double xmin = atof(tokens[0].c_str()); double xmax = atof(tokens[1].c_str()); double ymin = atof(tokens[2].c_str()); double ymax = atof(tokens[3].c_str()); mImgApp->SetInsetLimits(xmin, xmax, ymin, ymax); } else if (kw == "drpanel") { if (tokens.size() < 4) { cout << "Usage: drpanel xmin xmax ymin ymax [gratt] [name]" << endl; return(0); } double xmin = atof(tokens[0].c_str()); double xmax = atof(tokens[1].c_str()); double ymin = atof(tokens[2].c_str()); double ymax = atof(tokens[3].c_str()); char buff[128]; sprintf(buff, "axesnone xylimits=%g,%g,%g,%g ", xmin, xmax, ymin, ymax); string sop = buff; if (tokens.size() > 4) sop += tokens[4]; string name; if (tokens.size() > 5) name = tokens[5]; PIFuncDrawer* gdr = new PIFuncDrawer(NULL); mImgApp->DispScDrawer(gdr, name, sop); } else if (kw == "addtext") { if (tokens.size() < 3) { cout << "Usage: addtext x y txt [colfontatt] [fgnc]" << endl; return(0); } double xp = atof(tokens[0].c_str()); double yp = atof(tokens[1].c_str()); string txt = tokens[2]; string sop; if (tokens.size() > 3) sop = tokens[3]; bool fgnc = _CkBoolNC_(4); mImgApp->AddText(txt, xp, yp, sop, fgnc); } else if (kw == "addctext") { if (tokens.size() < 5) { cout << "Usage: addctext x y txt s_up s_dn [colfontatt] [updnfatt] [fgnc] " << endl; return(0); } double xp = atof(tokens[0].c_str()); double yp = atof(tokens[1].c_str()); string sop; if (tokens.size() > 5) sop = tokens[5]; string sopfss; if (tokens.size() > 6) sopfss = tokens[6]; bool fgnc = _CkBoolNC_(7); mImgApp->AddCompText(tokens[2], tokens[3], tokens[4], xp, yp, sop, sopfss, fgnc); } else if ((kw == "addline") || (kw == "addrect") || (kw == "addfrect") || (kw == "addarrow") ) { if (tokens.size() < 4) { cout << "Usage: addline/addrect/addfrect x1 y1 x2 y2 [colatt] [fgnc]" << endl; return(0); } double xp1 = atof(tokens[0].c_str()); double yp1 = atof(tokens[1].c_str()); double xp2 = atof(tokens[2].c_str()); double yp2 = atof(tokens[3].c_str()); string sop; if (tokens.size() > 4) sop = tokens[4]; bool fgnc = _CkBoolNC_(5); if (kw == "addline") mImgApp->AddLine(xp1, yp1, xp2, yp2, sop, false, fgnc); else if (kw == "addarrow") mImgApp->AddLine(xp1, yp1, xp2, yp2, sop, true, fgnc); else { bool fgfill = (kw == "addrect") ? false : true; mImgApp->AddRectangle(xp1, yp1, xp2, yp2, sop, fgfill, fgnc); } } else if ((kw == "addcirc") || (kw == "addfcirc")) { if (tokens.size() < 3) { cout << "Usage: addcirc/addfcirc xc yc r [colatt] [fgnc]" << endl; return(0); } double xc = atof(tokens[0].c_str()); double yc = atof(tokens[1].c_str()); double rad = atof(tokens[2].c_str()); string sop; if (tokens.size() > 3) sop = tokens[3]; bool fgnc = _CkBoolNC_(4); bool fgfill = (kw == "addcirc") ? false : true; mImgApp->AddCircle(xc, yc, rad, sop, fgfill, fgnc); } else if ((kw == "addarca") || (kw == "addfarca")) { if (tokens.size() < 5) { cout << "Usage: addarca/addfarca xc yc r a da [colatt] [fgnc]" << endl; return(0); } double xc = atof(tokens[0].c_str()); double yc = atof(tokens[1].c_str()); double rad = atof(tokens[2].c_str()); double ang = atof(tokens[3].c_str()); double dang = atof(tokens[4].c_str()); string sop; if (tokens.size() > 5) sop = tokens[5]; bool fgnc = _CkBoolNC_(6); bool fgfill = (kw == "addarca") ? false : true; mImgApp->AddArc(xc, yc, rad, ang, dang, sop, fgfill, fgnc); } else if (kw == "addmarker") { if (tokens.size() < 2) { cout << "Usage: addmarker x y [gratt] [fgnc]" << endl; return(0); } double xm = atof(tokens[0].c_str()); double ym = atof(tokens[1].c_str()); string sop; if (tokens.size() > 2) sop = tokens[2]; bool fgnc = _CkBoolNC_(3); mImgApp->AddCircle(xm, ym, -1, sop, false, fgnc); } else if ((kw == "addarc") || (kw == "addfarc") ) { if (tokens.size() < 6) { cout << "Usage: addarc/addfarc x1 y1 x2 y2 x3 y3 [gratt] [fgnc]" << endl; return(0); } double x1 = atof(tokens[0].c_str()); double y1 = atof(tokens[1].c_str()); double x2 = atof(tokens[2].c_str()); double y2 = atof(tokens[3].c_str()); double x3 = atof(tokens[4].c_str()); double y3 = atof(tokens[5].c_str()); string sop; if (tokens.size() > 6) sop = tokens[6]; bool fgnc = _CkBoolNC_(7); bool fgfill = (kw == "addarc") ? false : true; mImgApp->AddArc(x1, y1, x2, y2, x3, y3, sop, fgfill, fgnc); } else if ((kw == "addpoly") || (kw == "addfpoly")) { if (tokens.size() < 1) { cout << "Usage: addpoly/addfpoly 'x1,y1 x2,y2 x3,y3 ...' [gratt] [fgnc]" << endl; return(0); } vector sxy; vector xpol, ypol; double xp, yp; FillVStringFrString(tokens[0], sxy); for(int jkk=0; jkk 1) sop = tokens[1]; bool fgnc = _CkBoolNC_(2); bool fgfill = (kw == "addpoly") ? false : true; mImgApp->AddPoly(xpol, ypol, sop, fgfill, fgnc); } else if ((kw == "settitle") || (kw == "addtitle")) { if (tokens.size() < 1) { cout << "Usage: settitle/addtitle TopTitle [BotTitle] [fontatt]" << endl; return(0); } if(tokens.size()<2) tokens.push_back(""); string gropt; if(tokens.size()>2) gropt = tokens[2]; mImgApp->SetTitle(tokens[0], tokens[1], gropt); } else if ((kw == "setaxelabels") || (kw == "addaxelabels")) { if (tokens.size() < 2) { cout << "Usage: setaxelabels/addaxelabels xLabel yLabel [fontatt]" << endl; return(0); } string gropt; if(tokens.size()>2) gropt = tokens[2]; mImgApp->SetAxeLabels(tokens[0], tokens[1], gropt); } // >>>>>>>>>>> Link dynamique de fonctions C++ else if (kw == "link" ) { if (tokens.size() < 2) { cout << "Usage: link fnameso f1 [f2 f3]" << endl; return(0); } string sph = ""; for(int gg=0; gg<5; gg++) tokens.push_back(sph); int rc = LinkUserFuncs(tokens[0], tokens[1], tokens[2], tokens[3]); if (rc == 0) cout << "PIABaseExecutor: Link from " << tokens[0] << " OK " << endl; } else if (kw == "linkff2" ) { if (tokens.size() < 2) { cout << "Usage: linkff2 fnameso f1 [f2 f3]" << endl; return(0); } string sph = ""; for(int gg=0; gg<5; gg++) tokens.push_back(sph); int rc = LinkUserFuncs2(tokens[0], tokens[1], tokens[2], tokens[3]); if (rc == 0) cout << "PIABaseExecutor: Link2 from " << tokens[0] << " OK " << endl; } else if (kw == "call" ) { if (tokens.size() < 1) { cout << "Usage: call userf [arg1 arg2 ...]" << endl; return(0); } UsFmap::iterator it; UsFmap::iterator it1 = usfmap.find(tokens[0]); UsFmap::iterator it2 = usfmap2.find(tokens[0]); if ((it1 == usfmap.end()) && (it2 == usfmap2.end()) ) { cerr << "PIABaseExecutor: No User Function " << tokens[0] << endl; return(0); } if (it1 == usfmap.end()) it = it2; else it = it1; cout << "PIABaseExecutor: Call " << tokens[0] << "( ... )" << endl; // on est oblige de faire un cast etant donne qu'on // utilise donc des DlFunction (Reza 20/08/98) voir commentaire ds .h (pb g++) DlUserProcFunction fuf = (DlUserProcFunction)(*it).second; /*DEL----- Plus besoin en multi-thread ? / Reza 06/01/2004 // On redirige la sortie sur le terminal bool red = mImgApp->HasRedirectedStdOutErr(); mImgApp->RedirectStdOutErr(false); --------DEL */ #ifdef SANS_EVOLPLANCK TRY { tokens.erase(tokens.begin()); fuf(tokens); } CATCH(merr) { fflush(stdout); string es = PeidaExc(merr); cerr << "\n PIABaseExecutor: Call UserFunc Exception :" << merr << es; cout << endl; } #else try { tokens.erase(tokens.begin()); fuf(tokens); } catch ( PThrowable & exc ) { cerr << "\n PIABaseExecutor: Call / Catched Exception :" << (string)typeid(exc).name() << " Msg= " << exc.Msg() << endl; cout << endl; } catch ( ... ) { cerr << "\n PIABaseExecutor: Call / Catched Exception ... " << endl; cout << endl; } #endif /*DEL----- Plus besoin en multi-thread ? / Reza 06/01/2004 mImgApp->RedirectStdOutErr(red); --------DEL */ } // >>>>>>>>>>> lecture/ecriture des objets, gestion des objets else if (kw == "openfits" ) { if (tokens.size() < 1) { cout << "Usage: openfits file " << endl; return(0); } else { string nomobj = ""; mObjMgr->ReadFits(tokens[0], nomobj); } } else if (kw == "savefits" ) { if (tokens.size() < 2) { cout << "Usage: savefits nameobj filename " << endl; return(0); } else mObjMgr->SaveFits(tokens[0], tokens[1]); } else if (kw == "openppf" ) { if (tokens.size() < 1) { cout << "Usage: openppf file " << endl; return(0); } mObjMgr->ReadAll(tokens[0]); } else if ((kw == "saveobjs") || (kw == "saveppf")) { if (tokens.size() < 2) { cout << "Usage: saveobjs patt filename " << endl; return(0); } mObjMgr->SaveObjects(tokens[0], tokens[1]); } else if (kw == "saveall" ) { if (tokens.size() < 1) { cout << "Usage: saveall file " << endl; return(0); } mObjMgr->SaveAll(tokens[0]); } else if (kw == "print" ) { if (tokens.size() < 1) { cout << "Usage: print nameobj " << endl; return(0); } mObjMgr->PrintObj(tokens[0]); } else if ( (kw == "rename" ) || (kw == "mv") ) { if (tokens.size() < 2) { cout << "Usage: rename/mv nameobj namenew" << endl; return(0); } mObjMgr->RenameObj(tokens[0], tokens[1]); } else if ( (kw == "del" ) || (kw == "rm") ) { if (tokens.size() < 1) { cout << "Usage: del nameobj [nameobj2 ...]" << endl; return(0); } if (tokens.size()>0) for(uint_4 i=0;iDelObj(tokens[i]); } else if (kw == "delobjs" ) { if (tokens.size() < 1) { cout << "Usage: delobjs nomobjpattern (*,?) " << endl; return(0); } mObjMgr->DelObjects(tokens[0]); } else if ( (kw == "listobjs") || (kw == "ls") ) { if (tokens.size() < 1) tokens.push_back("*"); if (tokens.size() < 2) mObjMgr->ListObjs(tokens[0]); else { vector olv; mObjMgr->GetObjList(tokens[0], olv); mpiac->SetVar(tokens[1], olv); } } // Gestion des repertoires else if (kw == "mkdir" ) { if (tokens.size() < 1) { cout << "Usage: mkdir dirname [true]" << endl; return(0); } bool crd = mObjMgr->CreateDir(tokens[0]); if ( crd && (tokens.size() > 1) && (tokens[1] == "true") ) mObjMgr->SetKeepOldDirAtt(tokens[0], true); } else if (kw == "rmdir" ) { if (tokens.size() < 1) { cout << "Usage: rmdir dirname " << endl; return(0); } mObjMgr->DeleteDir(tokens[0]); } else if (kw == "setdiratt" ) { if (tokens.size() < 2) { cout << "Usage: setdiratt dirname true/false" << endl; return(0); } if (tokens[1] == "true") mObjMgr->SetKeepOldDirAtt(tokens[0], true); else mObjMgr->SetKeepOldDirAtt(tokens[0], false); } else if (kw == "cd") { if (tokens.size() < 1) tokens.push_back("home"); mObjMgr->SetCurrentDir(tokens[0]); } else if (kw == "pwd") { string dirn; mObjMgr->GetCurrentDir(dirn); cout << "CurrentDirectory: " << dirn << endl; } else if (kw == "listdirs") { if (tokens.size() < 1) tokens.push_back("*"); mObjMgr->ListDirs(tokens[0]); } // >>>>>>>>>>> Creation d'histos 1D-2D else if (kw == "newh1d") { if (tokens.size() < 4) { cout << "Usage: newh1d name xmin xmax nbin" << endl; return(0); } int_4 nbx = 100; r_8 xmin = 0., xmax = 1.; nbx = atoi(tokens[3].c_str()); xmin = atof(tokens[1].c_str()); xmax = atof(tokens[2].c_str()); Histo* h = new Histo(xmin, xmax, nbx); mObjMgr->AddObj(h, tokens[0]); } else if (kw == "newh2d") { if (tokens.size() < 7) { cout << "Usage: newh2d name xmin xmax nbinx ymin ymax nbiny" << endl; return(0); } int_4 nbx = 50, nby = 50; r_8 xmin = 0., xmax = 1.; r_8 ymin = 0., ymax = 1.; nbx = atoi(tokens[3].c_str()); nby = atoi(tokens[6].c_str()); xmin = atof(tokens[1].c_str()); xmax = atof(tokens[2].c_str()); ymin = atof(tokens[4].c_str()); ymax = atof(tokens[5].c_str()); Histo2D* h = new Histo2D(xmin, xmax, nbx, ymin, ymax, nby); mObjMgr->AddObj(h, tokens[0]); } else if (kw == "newprof" || kw == "newprofe") { if (tokens.size() < 4) { cout << "Usage: newprof[e] name xmin xmax nbin [ymin ymax]" << endl; return(0); } int_4 nbx = 100; r_8 xmin = 0., xmax = 1., ymin = 1., ymax = -1.; if(tokens.size() > 5) {ymin = atof(tokens[4].c_str()); ymax = atof(tokens[5].c_str());} nbx = atoi(tokens[3].c_str()); xmin = atof(tokens[1].c_str()); xmax = atof(tokens[2].c_str()); HProf* h = new HProf(xmin, xmax, nbx, ymin, ymax); if(kw == "newprofe") h->SetErrOpt(false); mObjMgr->AddObj(h, tokens[0]); } // Creation de NTuple else if (kw == "newnt") { if(tokens.size() < 2) {cout<<"Usage: newnt name v1 v2 ... vn / newnt name nvar"< varname; int nvar = 0; const char *c = tokens[1].c_str(); if(isdigit(c[0])) { nvar = atoi(tokens[1].c_str()); if(nvar<=0 || nvar>=10000) {cout<<"newnt name nvar : nvar must be an positive integer<10000"<AddObj(nt,tokens[0]); } // Creation de GeneralFitData else if (kw == "newgfd") { if (tokens.size() < 3) { cout << "Usage: newgfd nvar nalloc [errx(0/1)]" << endl; return(0); } int nvar, nalloc, errx=0; if (tokens.size() > 3) { errx = atoi(tokens[3].c_str()); if(errx>0) errx=1; else errx = 0;} nvar = atoi(tokens[1].c_str()); nalloc = atoi(tokens[2].c_str()); if(nvar>0 && nalloc>0) { GeneralFitData* gfd = new GeneralFitData(nvar,nalloc,errx); mObjMgr->AddObj(gfd, tokens[0]); } } // Creation/remplissage de vecteur et de matrice else if (kw == "newvec") { if (tokens.size() < 2) { cout << "Usage: newvec name size [f(i) dopt] " << endl; return(0); } int n = atoi(tokens[1].c_str()); double xmin, xmax; xmin = 0.; xmax = n; if (tokens.size() < 3) { Vector* v = new Vector(n); mObjMgr->AddObj(v, tokens[0]); } else { if (tokens.size() < 4) tokens.push_back(""); mObjMgr->GetServiceObj()->PlotFunc(tokens[2], tokens[0], xmin, xmax, n, tokens[3]); } } else if (kw == "newmtx") { if (tokens.size() < 3) { cout << "Usage: newmtx name sizeX(Col) sizeY(Lines) [f(i,j) dopt] " << endl; return(0); } int nx = atoi(tokens[1].c_str()); int ny = atoi(tokens[2].c_str()); double xmin, xmax, ymin, ymax; xmin = 0.; xmax = nx; ymin = 0.; ymax = ny; if (tokens.size() < 4) { Matrix* mtx = new Matrix(ny,nx); mObjMgr->AddObj(mtx, tokens[0]); } else { if (tokens.size() < 5) tokens.push_back("next"); mObjMgr->GetServiceObj()->PlotFunc2D(tokens[3], tokens[0], xmin, xmax, ymin, ymax, nx, ny, tokens[4]); } } // ----- Vecteur/NTuple <> Lignes/variables interpreteur // Creation de vecteur depuis le contenu de la ligne else if (kw == "line2vec") { if (tokens.size() < 2) { cout << "Usage: line2vec vecname v0 v1 v2 ... " << endl; return(0); } int vsz = tokens.size()-1; Vector* v = new Vector(vsz); for(int kkv=0; kkvAddObj(v, tokens[0]); } // Remplissage de NTuple depuis la ligne else if (kw == "line2nt") { if (tokens.size() < 2) { cout << "Usage: line2nt ntname col0 col1 ..." << endl; return(0); } AnyDataObj* obj; obj = mObjMgr->GetObj(tokens[0]); if(obj == NULL) { cerr << "line2nt Error , No such object " << tokens[0] << endl; return(0); } NTuple* nt = dynamic_cast(obj); if(nt == NULL) { cerr << "line2nt Error " << tokens[0] << " not an NTuple ! " << endl; return(0); } if (nt->NbColumns() < 1) { cerr << "line2nt Error: NbColumns < 1" << endl; return(0); } r_4* xnt = new r_4[ nt->NbColumns() ]; int kkx; for(kkx=0; kkxNbColumns(); kkx++) { if (kkx < tokens.size()-1) xnt[kkx] = atof(tokens[kkx+1].c_str()); else xnt[kkx] = 0.; } nt->Fill(xnt); delete[] xnt; } // Contenu du vecteur vers variable interpreteur #define MAXNWORDSO2V 32768 else if (kw == "vec2var") { if (tokens.size() < 2) { cout << "Usage: vec2var vecname varname [loop_param start:end:step] " << endl; return(0); } AnyDataObj* obj; obj = mObjMgr->GetObj(tokens[0]); if(obj == NULL) { cerr << "vec2var Error , No such object " << tokens[0] << endl; return(0); } Vector* v = dynamic_cast(obj); if(v == NULL) { cerr << "vec2var Error " << tokens[0] << " not a Vector ! " << endl; return(0); } int_8 kks = 0; int_8 kke = v->NElts(); int_8 kkp = 1; if (tokens.size() > 2) Services2NObjMgr::DecodeLoopParameters(tokens[2], kks, kke, kkp); if (kks < 0) kks = 0; if (kke > (int_8)v->NElts()) kke = v->NElts(); if (kkp < 1) kkp = 1; int nelt = (kke-kks-1)/kkp; if (nelt > MAXNWORDSO2V) { nelt = MAXNWORDSO2V; cout << "vec2var Warning: Only " << nelt << " elements will be converted to string" << endl; kke = kks+nelt*kkp; } string v2str; char buff[64]; for(int kkv=kks; kkvSetVar(tokens[1], v2str); } // Une ligne du NTuple/NTupleInterface -> variable interpreteur else if ((kw == "ntline2var") || (kw == "ntcol2var")) { if (tokens.size() < 3) { cout << "Usage: ntline/col2var objname line_number varname" << endl; return(0); } NObjMgrAdapter* oa = mObjMgr->GetObjAdapter(tokens[0]); if(oa == NULL) { cerr << "ntline/col2var Error , No such object " << tokens[0] << endl; return(0); } bool adel = false; NTupleInterface* nti = oa->GetNTupleInterface(adel); if(nti == NULL) { cerr << "ntline/col2var Error: objet" << tokens[0] << " has no NTupleInterface" << endl; return(0); } if (nti->NbColumns() < 1 || nti->NbLines() < 1) { cerr << "ntline/col2var Error: NbColumns or NbLines < 1" << endl; return(0); } string v2str; char buff[64]; if (kw == "ntline2var") { int numline = atoi(tokens[1].c_str()); if ( (numline >= nti->NbLines()) || (numline < 0) ) { cerr << "ntline2var Error: numline" << tokens[1] << " out of bounds" << endl; return(0); } r_8* dline = nti->GetLineD(numline); for(int kkv=0; kkvNbColumns(); kkv++) { sprintf(buff, "%lg ", dline[kkv]); v2str += buff; } } else { int numcol = atoi(tokens[1].c_str()); if ( (numcol >= nti->NbColumns()) || (numcol < 0) ) { cerr << "ntcol2var Error: numcol" << tokens[1] << " out of bounds" << endl; return(0); } int_8 kks = 0; int_8 kke = nti->NbLines(); int_8 kkp = 1; if (tokens.size() > 3) Services2NObjMgr::DecodeLoopParameters(tokens[3], kks, kke, kkp); if (kks < 0) kks = 0; if (kke > (int_8)nti->NbLines()) kke = nti->NbLines(); if (kkp < 1) kkp = 1; int nelt = (kke-kks-1)/kkp; if (nelt > MAXNWORDSO2V) { nelt = MAXNWORDSO2V; cout << "ntcol2var Warning: Only " << nelt << " lines " << " will be converted to string" << endl; kke = kks+nelt*kkp; } r_8* dline; for(int kkl=kks; kklGetLineD(kkl); sprintf(buff, "%lg ", dline[numcol]); v2str += buff; } } mObjMgr->SetVar(tokens[2], v2str); if (adel) delete nti; } // ------------------------------------------------------- // Copie d'objets else if ( (kw == "copy") || (kw == "cp") ) { if(tokens.size()<2) { cout<<"Usage: copy name_from name_to"<CopyObj(tokens[0],tokens[1]); } // >>>>>>>>>>> Affichage des objets else if ( (kw == "disp") || (kw == "surf") || (kw == "imag") ) { if (tokens.size() < 1) { cout << "Usage: disp/surf/imag nameobj [opt]" << endl; return(0); } string opt = "next"; if (tokens.size() > 1) opt = tokens[1]; if (kw == "disp") mObjMgr->DisplayObj(tokens[0], opt); else if (kw == "surf") mObjMgr->DisplaySurf3D(tokens[0], opt); else if (kw == "imag") mObjMgr->DisplayImage(tokens[0], opt); } else if (kw == "nt2d") { if (tokens.size() < 3) { cout << "Usage: nt2d nameobj varx vary [errx erry wt label opt]" << endl; return(0); } while (tokens.size() < 8) tokens.push_back(""); string ph = ""; mObjMgr->DisplayNT(tokens[0], tokens[1], tokens[2], ph, tokens[3], tokens[4], ph, tokens[5], tokens[6], tokens[7], false); } else if (kw == "nt3d") { if (tokens.size() < 7) { cout << "Usage: nt3d nameobj varx vary varz [errx erry errz wt label opt]" << endl; return(0); } while (tokens.size() < 10) tokens.push_back(""); mObjMgr->DisplayNT(tokens[0], tokens[1], tokens[2], tokens[3], tokens[4], tokens[5], tokens[6], tokens[7], tokens[8], tokens[9], true); } else if (kw == "vecplot") { if (tokens.size() < 2) { cout << "Usage: vecplot nameVecX nameVecY [opt]" << endl; return(0); } while (tokens.size() < 3) tokens.push_back(""); mObjMgr->DisplayVector(tokens[0], tokens[1], tokens[2]); } else if (kw == "bargraph") { if (tokens.size() < 2) { cout << "Usage: bargraph gr_opt v1 [v2 ...]" << endl; return(0); } PIBarGraph* bgd = new PIBarGraph; for(int k=1; kAddBar(atof(tokens[k].c_str())); string grname = "BarGraph"; mImgApp->DispScDrawer(bgd, grname, tokens[0]); } else if (kw == "textdrawer") { if (tokens.size() < 2) { cout << "Usage: textdrawer gr_opt line1 [line2 ...]" << endl; return(0); } PITextDrawer* txd = new PITextDrawer; for(int k=1; kAddLine(tokens[k]); string grname = "TextDrawer"; tokens[0] += " inset"; mImgApp->DispScDrawer(txd, grname, tokens[0]); } // Obsolete : ne pas virer SVP, cmv 26/7/99 else if (kw == "gfd2d") { cout<<"----- gfd2d OBSOLETE: utilisez nt2d -----"<2) err = tokens[2]; if(tokens.size()>3) opt = tokens[3]; mObjMgr->DisplayGFD(tokens[0],tokens[1],numvary,err,opt); } else if (kw == "gfd3d") { cout<<"----- gfd3d OBSOLETE: utilisez nt3d -----"<3) err = tokens[3]; if(tokens.size()>4) opt = tokens[4]; mObjMgr->DisplayGFD(tokens[0],tokens[1],tokens[2],err,opt); } // >>>>>>>>>>> Trace de fonctions else if ( (kw == "func") ) { if(tokens.size()<3) {cout<<"Usage: func f(x) xmin xmax [npt opt]"< 3) np = atoi(tokens[3].c_str()); if (tokens.size() > 4) opt = tokens[4]; mObjMgr->GetServiceObj()->PlotFunc(tokens[0], nom, xmin, xmax, np, opt); } else if ( (kw == "funcff") ) { if (tokens.size()<4) {cout<<"Usage: funcff C-filename f(x)-name xmin xmax [npt opt]"<4) np = atoi(tokens[4].c_str()); if(tokens.size()>5) opt = tokens[5]; mObjMgr->GetServiceObj()->PlotFuncFrCFile(tokens[0], tokens[1], nom, xmin, xmax, np, opt); } else if ( (kw == "func2d") ) { if (tokens.size() < 7) { cout << "Usage: func2d f(x,y) xmin xmax nptx ymin ymax npty [opt]" << endl; return(0); } int npx, npy; double xmin, xmax; double ymin, ymax; npx = npy = 50; xmin = 0.; xmax = 1.; ymin = 0.; ymax = 1.; npx = atoi(tokens[3].c_str()); npy = atoi(tokens[6].c_str()); xmin = atof(tokens[1].c_str()); xmax = atof(tokens[2].c_str()); ymin = atof(tokens[4].c_str()); ymax = atof(tokens[5].c_str()); string opt = ""; if (tokens.size() > 7) opt = tokens[7]; string nom = ""; mObjMgr->GetServiceObj()->PlotFunc2D(tokens[0], nom, xmin, xmax, ymin, ymax, npx, npy, opt); } else if ( (kw == "func2dff") ) { if (tokens.size() < 8) { cout << "Usage: func2d C-filename F(x,y)-name xmax nptx ymin ymax npty [opt]" << endl; return(0); } int npx, npy; double xmin, xmax; double ymin, ymax; npx = npy = 50; xmin = 0.; xmax = 1.; ymin = 0.; ymax = 1.; npx = atoi(tokens[4].c_str()); npy = atoi(tokens[7].c_str()); xmin = atof(tokens[2].c_str()); xmax = atof(tokens[3].c_str()); ymin = atof(tokens[5].c_str()); ymax = atof(tokens[6].c_str()); string opt = ""; if (tokens.size() > 8) opt = tokens[8]; string nom = ""; mObjMgr->GetServiceObj()->PlotFunc2DFrCFile(tokens[0], tokens[1], nom, xmin, xmax, ymin, ymax, npx, npy, opt); } // >>>>>>>>>>> Trace d'expressions de N_Tuple, StarList, etc ... else if (kw == "plot2d" ) { if (tokens.size() < 3) { cout << "Usage: plot2d nameobj expx expy [expcut opt loop_par]" << endl; return(0); } string errx = ""; string erry = ""; if (tokens.size() < 4) tokens.push_back("1"); while (tokens.size() < 6) tokens.push_back(""); srvo->DisplayPoints2D(tokens[0],tokens[1],tokens[2],errx,erry,tokens[3],tokens[4],tokens[5]); } else if (kw == "plot2de" ) { // Plot2D avec les erreurs if (tokens.size() < 5) { cout << "Usage: plot2de nameobj expx expy experrx experry [expcut opt loop_par]" << endl; return(0); } if (tokens.size() < 6) tokens.push_back("1"); while (tokens.size() < 8) tokens.push_back(""); srvo->DisplayPoints2D(tokens[0],tokens[1],tokens[2],tokens[3],tokens[4], tokens[5],tokens[6],tokens[7]); } else if (kw == "plot2dw" ) { // Plot2d avec poids if (tokens.size() < 4) { cout << "Usage: plot2dw nomobj expx expy expwt [expcut opt loop_par]" << endl; return(0); } if (tokens.size() < 5) tokens.push_back("1"); while (tokens.size() < 7) tokens.push_back(""); srvo->DisplayPoints2DW(tokens[0],tokens[1],tokens[2],tokens[3], tokens[4], tokens[5], tokens[6]); } else if (kw == "plot3d" ) { if (tokens.size() < 4) { cout << "Usage: plot3d nomobj expx expy expz [expcut opt loop_par]" << endl; return(0); } if (tokens.size() < 5) tokens.push_back("1"); while (tokens.size() < 7) tokens.push_back(""); srvo->DisplayPoints3D(tokens[0],tokens[1],tokens[2],tokens[3], tokens[4], tokens[5], tokens[6]); } else if (kw == "projh1d" ) { if (tokens.size() < 3) { cout << "Usage: projh1d nomh1 nomobj expx [expwt expcut opt loop_par]" << endl; return(0); } if (tokens.size() < 4) tokens.push_back("1."); if (tokens.size() < 5) tokens.push_back("1"); while (tokens.size() < 7) tokens.push_back(""); srvo->ProjectH1(tokens[1], tokens[2], tokens[3], tokens[4], tokens[0], tokens[5], tokens[6] ); } // Projection dans histogrammes else if (kw == "projh2d" ) { if (tokens.size() < 4) { cout << "Usage: projh2d nomh2 nomobj expx expy [expwt expcut opt loop_par]" << endl; return(0); } if (tokens.size() < 5) tokens.push_back("1."); if (tokens.size() < 6) tokens.push_back("1"); while (tokens.size() < 8) tokens.push_back(""); srvo->ProjectH2(tokens[1], tokens[2], tokens[3], tokens[4], tokens[5], tokens[0], tokens[6], tokens[7] ); } else if (kw == "projprof" ) { if (tokens.size() < 4) { cout << "Usage: projprof nomprof nomobj expx expy [expwt expcut opt loop_par]" << endl; return(0); } if (tokens.size() < 5) tokens.push_back("1."); if (tokens.size() < 6) tokens.push_back("1"); while (tokens.size() < 8) tokens.push_back(""); srvo->ProjectHProf(tokens[1], tokens[2], tokens[3], tokens[4], tokens[5], tokens[0], tokens[6], tokens[7] ); } // Projection dans vector/matrix else if (kw == "fillvec" ) { if (tokens.size() < 4) { cout << "Usage: fillvec nomvec nomobj expx expv [expcut opt loop_par]" << endl; return(0); } if (tokens.size() < 5) tokens.push_back("1"); while (tokens.size() < 7) tokens.push_back(""); srvo->FillVect(tokens[1], tokens[2], tokens[3], tokens[4], tokens[0], tokens[5], tokens[6] ); } else if (kw == "fillmtx" ) { if (tokens.size() < 5) { cout << "Usage: fillmtx nommtx nomobj expx expy expv [expcut opt loop_par]" << endl; return(0); } if (tokens.size() < 6) tokens.push_back("1"); while (tokens.size() < 8) tokens.push_back(""); srvo->FillMatx(tokens[1], tokens[2], tokens[3], tokens[4], tokens[5], tokens[0], tokens[6], tokens[7] ); } // Remplissage NTuple,Vecteurs, ... , boucle de NTuple else if (kw == "ntfrascii" ) { if(tokens.size() < 2) { cout<<"Usage: ntfrascii nt_name file_name [def_init_val]"<=3) def_val = atof(tokens[2].c_str()); srvo->NtFromASCIIFile(tokens[0],tokens[1],def_val); } #ifndef SANS_EVOLPLANCK /* Lecture matrice/vecteur depuis fichier ASCII */ else if ((kw == "mtxfrascii") || (kw == "vecfrascii") ) { if(tokens.size() < 2) { cout<<"Usage: mtxfrascii/vecfrascii mtx/vec_name file_name [CommLine Separator]"< mtx; TVector vec; FILE* fip = fopen(tokens[1].c_str(), "r"); if (fip == NULL) { cout << "vec/mtxfrascii: can not open file " << tokens[1] << endl; return(0); } fclose(fip); ifstream is(tokens[1].c_str()); sa_size_t nr, nc; char clm = '#'; string sep = " \t"; if (tokens.size()>2) clm = tokens[2][0]; if (tokens.size()>3) sep = tokens[3]; if (kw == "mtxfrascii") { mtx.ReadASCII(is, nr, nc, clm, sep.c_str()); mObjMgr->AddObj(mtx, tokens[0]); cout << "mtxfrascii: TMatrix " << tokens[0] << " read from file " << tokens[1] << endl; } else { vec.ReadASCII(is, nr, nc, clm, sep.c_str()); mObjMgr->AddObj(vec, tokens[0]); cout << "vecfrascii: TVector " << tokens[0] << " read from file " << tokens[1] << endl; } } else if (kw == "arrtoascii") { if(tokens.size() < 2) { cout<<"Usage: arrtoascii array_name file_name "<GetObj(tokens[0]); if(obj == NULL) { cerr << "arrtoascii Error , No such object " << tokens[0] << endl; return(0); } BaseArray* ba = dynamic_cast(obj); if(ba == NULL) { cerr << "arrtoascii Error " << tokens[0] << " not a BaseArray ! " << endl; return(0); } ofstream os(tokens[1].c_str()); ba->WriteASCII(os); cout << "arrtoascii: Array " << tokens[0] << " written to file " << tokens[1] << endl; } #endif else if (kw == "fillnt" ) { if (tokens.size() < 5) { cout << "Usage: fillnt nameobj expx expy expz expt [expcut ntname loop_par]" << endl; return(0); } while (tokens.size() < 8) tokens.push_back(""); srvo->FillNT(tokens[0],tokens[1],tokens[2], tokens[3], tokens[4], tokens[5], tokens[6], tokens[7] ); } else if (kw == "ntloop" ) { if (tokens.size() < 3) { cout << "Usage: ntloop nameobj fname funcname [ntname loop_par ]" << endl; return(0); } while (tokens.size() < 5) tokens.push_back(""); srvo->FillNTFrCFile(tokens[0],tokens[1], tokens[2], tokens[3], tokens[4]); } else if (kw == "ntexpcfile" ) { if (tokens.size() < 3) { cout << "Usage: ntexpcfile nameobj fname funcname" << endl; return(0); } srvo->PrepareNTExpressionCFile(tokens[0],tokens[1], tokens[2]); } else if (kw == "exptovec" ) { if (tokens.size() < 3) { cout << "Usage: exptovec nomvec nameobj expx [expcut opt loop_par]" << endl; return(0); } while (tokens.size() < 6) tokens.push_back(""); srvo->ExpressionToVector(tokens[1],tokens[2],tokens[3],tokens[0],tokens[4],tokens[5]); } else if (kw == "fillgd1" ) { if (tokens.size() < 5) { cout << "Usage: fillgd1 nomgfd nomobj expx expy experry [expcut loop_par] " << endl; return(0); } if (tokens.size() < 6) tokens.push_back("1"); if (tokens.size() < 7) tokens.push_back(""); string expy = ""; srvo->FillGFD(tokens[1],tokens[2], expy, tokens[3], tokens[4], tokens[5], tokens[0]); } else if (kw == "fillgd2" ) { if (tokens.size() < 6) { cout << "Usage: fillgd2 nomgfd nomobj expx expy expz experrz [expcut loop_par]" << endl; return(0); } if (tokens.size() < 7) tokens.push_back("1"); if (tokens.size() < 8) tokens.push_back(""); srvo->FillGFD(tokens[1],tokens[2],tokens[3], tokens[4], tokens[5], tokens[6], tokens[0], tokens[7]); } else if (kw == "gdfrvec" ) { if(tokens.size()<3) { cout<<"Usage: gdfrvec namegfd X Y\n" <<" gdfrvec namegfd X Y" <<" gdfrvec namegfd X Y ! EY\n" <<" gdfrvec namegfd X Y Z\n" <<" gdfrvec namegfd X Y Z EZ"<FillGFDfrVec(tokens[0],tokens[1],tokens[2],tokens[3],tokens[4]); } // >>>>>>>>>>> Calcul d'expression arithmetique else if ( (kw == "eval") ) { if(tokens.size()<2) {cout<<"Usage: eval resultvarname arithmetic expression...."<GetServiceObj()->ExpVal(expval,resultvarname); } else { cerr << "PIABaseExecutor::Do() Erreur - Commande " << kw << " inconuue ! " << endl; return(-1); } return(0); } // Fonction pour enregistrer le Help des Widgets et Windows de piapp static void RegisterPIGraphicsHelp(PIACmd* piac); /* --Methode-- */ void PIABaseExecutor::RegisterCommands() { string kw, usage, grp; grp = "External Modules"; string gdesc = "Dynamic load (shared object modules) management command group"; mpiac->AddHelpGroup(grp, gdesc); kw = "loadmodule"; usage = "To load and initialize modules \n Usage: loadmodule fnameso modulename"; usage += "\n Related commands: link"; mpiac->RegisterCommand(kw, usage, this, grp); kw = "link"; usage = "Dynamic linking of compiled user functions \n Usage: link fnameso f1 [f2 f3]"; usage += "\n fnameso: Shared-object file name, f1,f2,f3 : User function names "; usage += "\n Related commands: call loadmodule linkff2"; mpiac->RegisterCommand(kw, usage, this, grp); kw = "linkff2"; usage = "Dynamic linking of compiled user functions (Set 2)\n Usage: linkff2 fnameso f1 [f2 f3]"; usage += "\n fnameso: Shared-object file name, f1,f2,f3 : User function names "; usage += "\n Related commands: call link loadmodule"; mpiac->RegisterCommand(kw, usage, this, grp); kw = "call"; usage = "Dynamically linked user function call \n Usage: call userf [arg1 arg2 ...]"; usage += "\n User function : f(vector& args)"; usage += "\n Related commands: link"; mpiac->RegisterCommand(kw, usage, this, grp); grp = "Graphics"; gdesc = "Basic graphics and object display commands"; mpiac->AddHelpGroup(grp, gdesc); kw = "zone"; usage = "To Divide the Graphic window \n Usage: zone [nx=1 ny=1]"; usage += "\n Related commands: newwin"; mpiac->RegisterCommand(kw, usage, this, grp); kw = "newwin"; usage = "To Create a New Graphic window, with zones \n"; usage += " Window size can be specified \n"; usage += " Usage: newwin [nx ny [sizeX sizeY]] "; usage += "\n Related commands: zone"; mpiac->RegisterCommand(kw, usage, this, grp); kw = "stacknext"; usage = "Displays the next widget on stack window \n Usage: stacknext"; mpiac->RegisterCommand(kw, usage, this, grp); kw = "graphicatt"; usage = "To change default graphic options \n Usage: graphicatt att_list \n"; usage += "att_list=def back to default values, Example: gratt 'red circlemarker5'"; usage += "\n ------------------ Graphic attribute list ------------------ \n"; usage += ">> Colors: defcol black white grey red blue green yellow \n"; usage += " magenta cyan turquoise navyblue orange siennared purple \n"; usage += " limegreen gold violet violetred blueviolet darkviolet \n"; usage += ">> Lines: defline normalline thinline thickline dashedline thindashedline \n"; usage += " thickdashedline dottedline thindottedline thickdottedline \n"; usage += ">> Font Att: deffontatt normalfont boldfont italicfont bolditalicfont \n"; usage += " smallfont smallboldfont smallitalicfont smallbolditalicfont \n"; usage += " bigfont bigboldfont bigitalicfont bigbolditalicfont \n"; usage += " hugefont hugeboldfont hugeitalicfont hugebolditalicfont \n"; usage += ">> Font Names: deffont courierfont helveticafont timesfont symbolfont \n"; usage += ">> Marker: dotmarker plusmarker crossmarker circlemarker \n"; usage += " fcirclemarker boxmarker fboxmarker trianglemarker \n"; usage += " ftrianglemarker starmarker fstarmarker \n"; usage += " with = 1 3 5 7 .. 15 , Example fboxmarker5 , plusmarker9 ... \n"; usage += ">> ArrowMarker: basicarrow trianglearrow ftrianglearrow \n"; usage += " arrowshapedarrow farrowshapedarrow \n"; usage += " with = 5 7 .. 15 , Example trianglearrow7 ... \n"; usage += ">> ColorTables: defcmap grey32 invgrey32 colrj32 colbr32 \n"; usage += " grey128 invgrey128 colrj128 colbr128 \n"; usage += " red32cm green32cm blue32cm yellow32cm \n"; usage += " orange32cm cyan32cm violet32cm \n"; usage += " midas_pastel midas_heat midas_rainbow3 midas_bluered\n"; usage += " midas_bluewhite midas_redwhite \n"; usage += " multicol16 multicol64 \n"; usage += " revcmap : This flag reverses ColorMap indexing \n"; usage += "--- For image displays: \n"; usage += ">> ZoomFactors zoomxN zoomx1 zoomx2 zoomx3 ... \n"; usage += " zoom/N zoom/2 zoom/3 zoom/4 ...\n"; usage += ">> imagecenter=ix,iy -> Position the image in widget \n"; usage += ">> lut=ltyp,min,max -> Sets LUT type and min/max for image display \n"; usage += " (ltyp=lin/log/sqrt/square) \n"; usage += ">> image axes configuration: invx invy exchxy \n"; usage += ">> Axes / Axe labels / LogScale / xylimits / defdrrect \n"; usage += " See setaxesatt command \n"; usage += ">> stat/nostat or stats/nostats -> Toggle statistic display flag \n"; usage += ">> title/notitle or tit/notit -> Toggle Auto AddTitle flag \n"; usage += ">> DisplayWindow: next same win stack inset \n"; usage += " Related commands: setaxesatt setinsetlimits "; mpiac->RegisterCommand(kw, usage, this, grp); kw = "setaxesatt"; usage = "To set default axes attributes \n Usage: setaxesatt att_list \n"; usage += "Color/Line/Font attributes and axes attributes \n"; usage += ">> Axes: axesnone stdaxes=defaxes=boxaxes boxaxesgrid \n"; usage += " fineaxes fineaxesgrid centeredaxes finecenteredaxes \n"; usage += " centeredaxesgrid finecenteredaxesgrid\n"; usage += " axescenter=x0,y0 (only with centered axes, default \"axescenter=\")\n"; usage += " grid nogrid labels nolabels \n"; usage += " ticks noticks minorticks nominorticks \n"; usage += " extticks intticks extintticks \n"; usage += " nbticks=X_NTicks,Y_NTicks \n"; usage += " tickslen=MajTickLenFrac,MinTickLenFrac \n"; usage += ">> Axe labels font size: fixedfontsize/autofontsize=fszf \n"; usage += " autofontsize=fsizef: Font size computed automatically \n"; usage += " fixedfontsize: Use font size attribute (BaseDrawer) \n"; usage += ">> LogScale : linx liny logx logy -> Lin/Log Scales for 2D plots \n"; usage += ">> xylimits=xmin,xmax,ymin,ymax -> Forces X-Y limits in 2-D plots \n"; usage += ">> defdrrect=xmin,xmax,ymin,ymax -> Defines drawing rectangle 2-D plots \n"; usage += " The rectangle is defined as a fraction of the widget size\n"; mpiac->RegisterCommand(kw, usage, this, grp); kw = "setinsetlimits"; usage = "Define the display rectangle for drawers added as insets \n"; usage += " over existing graphic objects - limits expressed as fraction \n"; usage += " graphic object size (0. .. 1.) Xmax at right, YMax top. "; usage += " Usage: setinsetlimits xmin xmax ymin ymax"; usage += "\n Related commands: graphicatt /inset"; mpiac->RegisterCommand(kw, usage, this, grp); kw = "drpanel"; usage = "Creates a new 2D drawing zone for addtext, addline \n"; usage += " Usage: drpanel xmin xmax ymin ymax [GrAtt] [Name]"; usage += "\n Related commands: addtext addline addrect addcirc ..."; mpiac->RegisterCommand(kw, usage, this, grp); kw = "addtext"; usage = "Adds a text string to the current graphic object"; usage += "\n at the specified position (+ color/font/pos/dir attributes) "; usage += "\n The Base/AxesDrawer is used to handle added text strings" ; usage += "\n Alt to remove the added element"; usage += "\n Usage: addtext x y TextString [ColFontPosAtt] [fgnc=false/true]"; usage += "\n (use quotes '' for multi word text strings) "; usage += "\n if fgnc==true : Normalized 0..1 coordinates specification (def=false)"; usage += "\n Text position/direction attribute: "; usage += "\n horizleft horizcenter horizright"; usage += "\n vertbottom vertcenter verttop "; usage += "\n textdirhoriz textdirvertup textdirvertdown "; usage += "\n Related commands: addctext addline addarrow addrect addfrect"; usage += "\n addcirc addfcirc addarc addfrac addpoly addfpoly settitle graphicatt"; mpiac->RegisterCommand(kw, usage, this, "Graphic-Elts"); kw = "addctext"; usage = "Adds a composite text string with superscript and subscripts "; usage += "\n at the specified position (+ color/font/pos/dir attributes) "; usage += "\n Usage: addctext x y Text sUp sDown [ColFontPosAtt] [UpDownFontAtt] [fgnc]"; usage += "\n if fgnc==true : Normalized 0..1 coordinates specification (def=false)"; usage += "\n Related commands: addtext addline addrect ..."; usage += "\n (See command addtext and graphicatt for more details)"; mpiac->RegisterCommand(kw, usage, this, "Graphic-Elts"); kw = "addline"; usage = "Adds a line to the current graphic object"; usage += "\n at the specified position (+ graphic attribute)"; usage += "\n The Base/AxesDrawer is used to handle added lines"; usage += "\n Alt to remove the added element"; usage += "\n Usage: addline x1 y1 x2 y2 [GraphicAtt] [fgnc=false/true]"; usage += "\n if fgnc==true : Normalized 0..1 coordinates specification (def=false)"; usage += "\n Related commands: addarrow addtext addrect addfrect "; usage += "\n addmarker addcirc addfcirc addarc addfarc addpoly addfpoly graphicatt"; mpiac->RegisterCommand(kw, usage, this, "Graphic-Elts"); kw = "addarrow"; usage = "Adds an arrow to the current graphic object"; usage += "\n at the specified position (+ graphic attribute)"; usage += "\n The Base/AxesDrawer is used to handle added lines"; usage += "\n Alt to remove the added element"; usage += "\n Usage: addarrow x1 y1 x2 y2 [GraphicAtt] [fgnc=false/true]"; usage += "\n if fgnc==true : Normalized 0..1 coordinates specification (def=false)"; usage += "\n Related commands: addline addtext addrect addfrect "; usage += "\n addmarker addcirc addfcirc addarc addfarc addpoly addfpoly graphicatt"; mpiac->RegisterCommand(kw, usage, this, "Graphic-Elts"); kw = "addarrow_nc"; kw = "addrect"; usage = "Adds a rectangle to the current graphic object"; usage += "\n between the specified positions (+ graphic attribute)"; usage += "\n The Base/AxesDrawer is used to handle added rectangle"; usage += "\n Alt to remove added element"; usage += "\n Usage: addrect x1 y1 x2 y2 [GraphicAtt] [fgnc=false/true]"; usage += "\n if fgnc==true : Normalized 0..1 coordinates specification (def=false)"; usage += "\n Related commands: addtext addline addarrow addfrect"; usage += "\n addcirc addfcirc addarc addfarc addpoly addfpoly graphicatt"; mpiac->RegisterCommand(kw, usage, this, "Graphic-Elts"); kw = "addfrect"; usage = "Adds a filled rectangle to the current graphic object"; usage += "\n between the specified positions (+ graphic attribute)"; usage += "\n The Base/AxesDrawer is used to handle added rectangle"; usage += "\n Alt to remove added element"; usage += "\n Usage: addfrect x1 y1 x2 y2 [GraphicAtt] [fgnc=false/true]"; usage += "\n if fgnc==true : Normalized 0..1 coordinates specification (def=false)"; usage += "\n Related commands: addtext addline addarrow addrect"; usage += "\n addcirc addfcirc addpoly addfpoly graphicatt"; mpiac->RegisterCommand(kw, usage, this, "Graphic-Elts"); kw = "addmarker"; usage = "Adds a marker to the current graphic object"; usage += "\n at the specified position (+ graphic attribute)"; usage += "\n The Base/AxesDrawer is used to handle added circles"; usage += "\n Alt to remove added element"; usage += "\n Usage: addmarker xpos ypos [GraphicAtt] [fgnc=false/true]"; usage += "\n if fgnc==true : Normalized 0..1 coordinates specification (def=false)"; usage += "\n Related commands: addtext addline addarrow addfrect addfrect"; usage += "\n addcirc addfcirc addarc addfarc addpoly addfpoly graphicatt"; mpiac->RegisterCommand(kw, usage, this, "Graphic-Elts"); kw = "addcirc"; usage = "Adds a circle to the current graphic object"; usage += "\n with the specified center and radius (+ graphic attribute)"; usage += "\n The Base/AxesDrawer is used to handle added circles"; usage += "\n Alt to remove added element"; usage += "\n Usage: addcirc xcenter ycenter radius [GraphicAtt] [fgnc=false/true]"; usage += "\n if fgnc==true : Normalized 0..1 coordinates specification (def=false)"; usage += "\n Related commands: addtext addline addarrow addfrect addfrect"; usage += "\n addfcirc addarc addfarc addpoly addfpoly graphicatt"; mpiac->RegisterCommand(kw, usage, this, "Graphic-Elts"); kw = "addfcirc"; usage = "Adds a filled circle to the current graphic object"; usage += "\n with the specified center and radius (+ graphic attribute)"; usage += "\n The Base/AxesDrawer is used to handle added circles"; usage += "\n Alt to remove added element"; usage += "\n Usage: addcirc xcenter ycenter radius [GraphicAtt] [fgnc=false/true]"; usage += "\n if fgnc==true : Normalized 0..1 coordinates specification (def=false)"; usage += "\n Related commands: addtext addline addarrow addfrect addfrect"; usage += "\n addcirc addarc addfarc addpoly addfpoly graphicatt"; mpiac->RegisterCommand(kw, usage, this, "Graphic-Elts"); kw = "addarca"; usage = "Adds an arc to the current graphic object"; usage += "\n defined by the circle (center+radius), start angle and angular extension"; usage += "\n Angles are specified in degrees"; usage += "\n Usage: addarca xc yc r a0deg dadeg [GraphicAtt] [fgnc=false/true]"; usage += "\n if fgnc==true : Normalized 0..1 coordinates specification (def=false)"; usage += "\n Related commands: addtext addline addfarca addarc ..."; mpiac->RegisterCommand(kw, usage, this, "Graphic-Elts"); kw = "addfarca"; usage = "Adds a filled arc to the current graphic object"; usage += "\n defined by the circle (center+radius), start angle and angular extension"; usage += "\n Angles are specified in degrees"; usage += "\n Usage: addfarca xc yc r a0deg dadeg [GraphicAtt] [fgnc=false/true]"; usage += "\n if fgnc==true : Normalized 0..1 coordinates specification (def=false)"; usage += "\n Related commands: addtext addline addarca addarc ..."; mpiac->RegisterCommand(kw, usage, this, "Graphic-Elts"); kw = "addarc"; usage = "Adds an arc to the current graphic object"; usage += "\n defined by 3 points (+ graphic attribute)"; usage += "\n The Base/AxesDrawer is used to handle added arcs"; usage += "\n Alt to remove the added element"; usage += "\n Usage: addarc x1 y1 x2 y2 x3 y3 [GraphicAtt] [fgnc=false/true]"; usage += "\n if fgnc==true : Normalized 0..1 coordinates specification (def=false)"; usage += "\n Related commands: addtext addline addarrow addfrect addfrect"; usage += "\n addcirc addfcirc addfarc addarca addpoly addfpoly graphicatt"; mpiac->RegisterCommand(kw, usage, this, "Graphic-Elts"); kw = "addfarc"; usage = "Adds a filled arc to the current graphic object"; usage += "\n defined by 3 points (+ graphic attribute)"; usage += "\n The Base/AxesDrawer is used to handle added arcs"; usage += "\n Alt to remove added element"; usage += "\n Usage: addarc x1 y1 x2 y2 x3 y3 [GraphicAtt] [fgnc=false/true]"; usage += "\n if fgnc==true : Normalized 0..1 coordinates specification (def=false)"; usage += "\n Related commands: addtext addline addarrow addfrect addfrect"; usage += "\n addcirc addfcirc addfarc addpoly addfpoly graphicatt"; mpiac->RegisterCommand(kw, usage, this, "Graphic-Elts"); kw = "addpoly"; usage = "Adds a polyline/polygon to the current graphic object"; usage += "\n Usage: addploy 'x1,y1 x2,y2 x3,y3 ...' [GraphicAtt] [fgnc=false/true]"; usage += "\n Coordinates specified as pairs x,y in a single word (use simple or double quotes"; usage += "\n if fgnc==true : Normalized 0..1 coordinates specification (def=false)"; usage += "\n Related commands: addtext addline addarrow addfrect addfrect"; usage += "\n addcirc addfcirc addfarc graphicatt"; mpiac->RegisterCommand(kw, usage, this, "Graphic-Elts"); kw = "addfpoly"; usage = "Adds a filled polygon to the current graphic object"; usage += "\n Usage: addploy 'x1,y1 x2,y2 x3,y3 ...' [GraphicAtt] [fgnc=false/true]"; usage += "\n Coordinates specified as pairs x,y in a single word (use simple or double quotes"; usage += "\n if fgnc==true : Normalized 0..1 coordinates specification (def=false)"; usage += "\n Related commands: addtext addline addarrow addfrect addfrect"; usage += "\n addcirc addfcirc addfarc graphicatt"; mpiac->RegisterCommand(kw, usage, this, "Graphic-Elts"); kw = "settitle"; usage = "Set the title string (top title / bottom title) for the current graphic object"; usage += "\n Usage: settitle TopTitle [BottomTitle] [fontAtt]"; usage += "\n Related commands: addtext graphicatt"; mpiac->RegisterCommand(kw, usage, this, grp); kw = "addtitle"; usage = "Set the title string (top title / bottom title) \n"; usage += " alias for settitle "; mpiac->RegisterCommand(kw, usage, this, grp); kw = "setaxelabels"; usage = "Set the X and Y axis labels for the current 2D graphic object \n"; usage += "\n Usage: setaxelabels xLabel yLabel [ColorFntAtt]"; usage += "\n Related commands: settitle addtext graphicatt"; mpiac->RegisterCommand(kw, usage, this, grp); kw = "addaxelabels"; usage = "Set the X and Y axis labels for the current 2D graphic object"; usage += " alias for setaxelabels "; mpiac->RegisterCommand(kw, usage, this, grp); RegisterPIGraphicsHelp(mpiac); kw = "openfits"; usage = "Loads a FITS file into an appropriate object \n Usage: openfits filename"; usage += "\n Related commands: savefits openppf"; mpiac->RegisterCommand(kw, usage, this, "FileIO"); kw = "savefits"; usage = "Save an object into a FITS file \n Usage: savefits nameobj filename"; usage += "\n Related commands: openfits saveobjs saveall"; mpiac->RegisterCommand(kw, usage, this, "FileIO"); kw = "openppf"; usage = "Reads all objects from a PPF file \n Usage: openppf filename"; usage += "\n Related commands: saveall openfits"; mpiac->RegisterCommand(kw, usage, this, "FileIO"); kw = "saveppf"; usage = "Saves objects with names matching a pattern into a\n"; usage += " PPF file (pattern: x?y*) - Alias saveppf\n"; usage += "Usage: saveppf nameobjpattern filename"; usage += "\n Related commands: saveobjs saveall openppf savefits"; mpiac->RegisterCommand(kw, usage, this, "FileIO"); kw = "saveobjs"; usage = "Saves objects with names matching a pattern into a\n"; usage += " PPF file (pattern: x?y*) - Alias saveppf\n"; usage += "Usage: saveobjs nameobjpattern filename"; usage += "\n Related commands: saveppf saveall openppf savefits"; mpiac->RegisterCommand(kw, usage, this, "FileIO"); kw = "saveall"; usage = "Saves all objects into a PPF file \n Usage: saveall filename"; usage += "\n Related commands: saveobj openppf savefits"; mpiac->RegisterCommand(kw, usage, this, "FileIO"); kw = "ntfrascii"; usage = "Fills an existing NTuple from ASCII table file"; usage += "\n Usage: ntfrascii nt_name file_name [def_init_val]"; usage += "\n Related commands: ntloop fillnt "; mpiac->RegisterCommand(kw, usage, this, "FileIO"); #ifndef SANS_EVOLPLANCK kw = "mtxfrascii"; usage = "Reads a matrix from an ASCII file (TMatrix)"; usage += "\n Usage: mtxfrascii mtx_name file_name [CommChar Separator]"; usage += "\n Related commands: arrtoascii vecfrascii ntfrascii "; mpiac->RegisterCommand(kw, usage, this, "FileIO"); kw = "vecfrascii"; usage = "Reads a vector from an ASCII file (TVector)"; usage += "\n Usage: vecfrascii vec_name file_name"; usage += "\n Related commands: arrtoascii mtxfrascii ntfrascii [CommChar Separator]"; mpiac->RegisterCommand(kw, usage, this, "FileIO"); kw = "arrtoascii"; usage = "Writes an array (TArray) to an ASCII file "; usage += "\n Usage: arrtoascii array_name file_name"; usage += "\n Related commands: mtxfrascii vecfrascii ntfrascii "; mpiac->RegisterCommand(kw, usage, this, "FileIO"); #endif kw = "print"; usage = "Prints an object \n Usage: print nameobj"; mpiac->RegisterCommand(kw, usage, this, "FileIO"); kw = "mkdir"; usage = "Create a directory"; usage += "\n Usage: mkdir dirname [true]"; usage += "\n if second argument==true, the directory's KeepOld attribute is set to true"; mpiac->RegisterCommand(kw, usage, this, "Object Management"); kw = "rmdir"; usage = "Removes an empty directory"; usage += "\n Usage: remove dirname"; mpiac->RegisterCommand(kw, usage, this, "Object Management"); kw = "setdiratt"; usage = "Sets directory attributes"; usage += "\n Usage: setdiratt dirname KeepOldFlag(=true/false)"; usage += "\n KeepOldFlag=true Object with the same name is moved to old"; usage += "\n when adding objects"; mpiac->RegisterCommand(kw, usage, this, "Object Management"); kw = "cd"; usage = "Change current directory"; usage += "\n Usage: cd [dirname]"; mpiac->RegisterCommand(kw, usage, this, "Object Management"); kw = "pwd"; usage = "Prints current directory"; usage += "\n Usage: pwd"; mpiac->RegisterCommand(kw, usage, this, "Object Management"); kw = "listdirs"; usage = "Prints the list of directories"; usage += "\n Usage: listdirs [patt=*] \n patt : * , ? "; mpiac->RegisterCommand(kw, usage, this, "Object Management"); kw = "listobjs"; usage = "Prints the list of objects (Alias: ls)"; usage += "\n Usage: listobjs [patt=*] \n patt : /*/x?y* ... "; mpiac->RegisterCommand(kw, usage, this, "Object Management"); kw = "rename"; usage = "Rename an object (Alias: mv) \n Usage: rename nameobj namenew"; usage += "\n Related commands: mv del delobjs"; mpiac->RegisterCommand(kw, usage, this, "Object Management"); kw = "mv"; usage = "Rename an object (Alias: rename) \n Usage: mv nameobj namenew"; usage += "\n Related commands: rename del delobjs"; mpiac->RegisterCommand(kw, usage, this, "Object Management"); kw = "copy"; usage = "Copy objects (Alias cp) \n"; usage +=" Usage: copy name_from name_to"; usage += "\n Related commands: cp new..."; mpiac->RegisterCommand(kw, usage, this, "Object Management"); kw = "cp"; usage = "Copy objects (Alias copy) \n"; usage +=" Usage: cp name_from name_to"; usage += "\n Related commands: copy new..."; mpiac->RegisterCommand(kw, usage, this, "Object Management"); kw = "del"; usage = "Deletes an object (Alias: rm) \n Usage: del nameobj [nameobj2 ...]"; usage += "\n Related commands: rm delobjs rename"; mpiac->RegisterCommand(kw, usage, this, "Object Management"); kw = "rm"; usage = "Deletes an object (Alias: del) \n Usage: rm nameobj [nameobj2 ...]"; usage += "\n Related commands: del delobjs rename"; mpiac->RegisterCommand(kw, usage, this, "Object Management"); kw = "delobjs"; usage = "Delete a set of objects with names matching a pattern (x?y*)"; usage += "\n Usage: delobjs nameobjpattern \n"; usage += "\n Related commands: del rename"; mpiac->RegisterCommand(kw, usage, this, "Object Management"); kw = "newh1d"; usage = "Creates a 1D histogramm \n Usage: newh1d name xmin xmax nbin"; usage += "\n Related commands: newh2d newprof[e] newnt newgfd "; mpiac->RegisterCommand(kw, usage, this, "Objects"); kw = "newh2d"; usage = "Creates a 2D histogramm \n Usage: newh2d name xmin xmax nbinx ymin ymax nbiny"; usage += "\n Related commands: newh1d newprof[e] newnt newgfd "; mpiac->RegisterCommand(kw, usage, this, "Objects"); kw = "newprof"; usage = "Creates a profile histogramm \n Usage: newprof name xmin xmax nbin [ymin ymax]"; usage += "\n Errors represent the data spread in the X bin "; usage += "\n Related commands: newh1d newh2d newprofe newnt newgfd "; mpiac->RegisterCommand(kw, usage, this, "Objects"); kw = "newprofe"; usage = "Creates a profile histogramm \n Usage: newprofe name xmin xmax nbin [ymin ymax]"; usage += "\n Errors represent the error on the data mean in the X bin "; usage += "\n Related commands: newh1d newh2d newprof newnt newgfd "; mpiac->RegisterCommand(kw, usage, this, "Objects"); kw = "newnt"; usage = "Creates a ntuple \n Usage: newnt name v1 v2 v3 .. vn"; usage += "\n newnt name nvar"; usage += "\n Related commands: newh1d newh2d newprof[e] newgfd "; mpiac->RegisterCommand(kw, usage, this, "Objects"); kw = "newgfd"; usage = "Creates GeneralFit Data object \n Usage: newgfd nvar nalloc [errx(0/1)]"; usage += "\n Related commands: newh1d newh2d newprof[e] newnt "; mpiac->RegisterCommand(kw, usage, this, "Objects"); kw = "newvec"; usage = "Creates (and optionaly fills) a vector \n Usage: newvec name size [f(i) [dopt] ] "; usage += "\n Related commands: newmtx line2vec"; mpiac->RegisterCommand(kw, usage, this, "Objects"); kw = "newmtx"; usage = "Creates (and optionaly fills) a matrix \n"; usage +=" Usage: newmtx name sizeX(Col) sizeY(Lines) [f(i,j) [dopt] ] "; usage += "\n Related commands: newvec"; mpiac->RegisterCommand(kw, usage, this, "Objects"); kw = "line2vec"; usage = "Creates a vector from the line \n"; usage += " Usage: line2vec vecname v0 v1 v2 ... \n"; usage += " Related commands: newvec line2nt"; mpiac->RegisterCommand(kw, usage, this, "Objects"); kw = "line2nt"; usage = "Fills (append) an NTuple from the line content \n"; usage += " Usage: line2nt ntname col0 col1 ... \n"; usage += " Related commands: newnt line2vec ntline2var ntcol2var"; mpiac->RegisterCommand(kw, usage, this, "Objects"); kw = "vec2var"; usage = "Vector content to an interpreter variable varname = 'v0 v1 v2 ...' \n"; usage += " Usage: line2vec vecname varname [LoopParam start:end[:step] ]\n"; usage += " Related commands: line2vec ntline2var"; mpiac->RegisterCommand(kw, usage, this, "Objects"); kw = "ntline2var"; usage = "Object NTupleInterface line to an interpreter variable \n"; usage += " Usage: ntline2var objname line_number varname \n"; usage += " Related commands: vec2var ntcol2var"; mpiac->RegisterCommand(kw, usage, this, "Objects"); kw = "ntcol2var"; usage = "Object NTupleInterface column to an interpreter variable \n"; usage += " Usage: ntline2var objname column_number varname [LoopParam start:end[:step] ] \n"; usage += " Related commands: vec2var ntline2var"; mpiac->RegisterCommand(kw, usage, this, "Objects"); kw = "disp"; usage = "Displays an object \n Usage: disp nameobj [graphic_attributes]"; usage += "\n Related commands: surf nt2d nt3d vecplot"; mpiac->RegisterCommand(kw, usage, this, "Obj. Display"); kw = "imag"; usage = "Displays an object as an image \n Usage: imag nameobj [graphic_attributes]"; usage += "\n Related commands: disp surf nt2d nt3d vecplot"; mpiac->RegisterCommand(kw, usage, this, "Obj. Display"); kw = "surf"; usage = "Displays an object as a 3D surface \n Usage: surf nameobj [graphic_attributes]"; usage += "\n Related commands: disp nt2d nt3d vecplot"; mpiac->RegisterCommand(kw, usage, this, "Obj. Display"); kw = "nt2d"; usage = "Displays Points (X-Y) [with error-bar / Weight / Label ] from an NTuple "; usage += "\n Usage : nt2d nameobj varx vary [errx erry wt label graphic_attributes]"; usage += "\n Related commands: disp surf nt3d gfd2d vecplot"; mpiac->RegisterCommand(kw, usage, this, "Obj. Display"); kw = "nt3d"; usage = "Displays 3D-Points (X-Y-Z) [with error-bars / Weight / Label ] from an NTuple "; usage += "\n Usage : nt3d nameobj varx vary varz [errx erry errz wt label graphic_attributes]"; usage += "\n Related commands: disp surf nt2d gfd3d "; mpiac->RegisterCommand(kw, usage, this, "Obj. Display"); kw = "vecplot"; usage = "Displays Points (X-Y) with coordinates defined by two vectors "; usage += "\n Usage : vecplot nameVecX nameVecY [graphic_attributes]"; usage += "\n Related commands: disp nt2d "; mpiac->RegisterCommand(kw, usage, this, "Obj. Display"); kw = "bargraph"; usage = "Bar-Graph view of a sequence of values (test)"; usage += "\n Usage : bargraph graphic_attributes v1 [v2 v3 ...] "; usage += "\n Related commands: disp nt2d vecplot"; mpiac->RegisterCommand(kw, usage, this, "Obj. Display"); kw = "textdrawer"; usage = "Multi line text darwer (test)"; usage += "\n Usage : textdrawer graphic_attributes line1 [line2 line3 ...] "; usage += "\n Related commands: disp "; mpiac->RegisterCommand(kw, usage, this, "Obj. Display"); // Ceci est maintenant obsolete, on garde pour info. kw = "gfd2d"; usage = "Displays Points (X-Y) with error-bars from a GeneralFit Data "; usage += "\n Usage : gfd2d nameobj numvarx erreur=(x y xy) [graphic_attributes]"; usage += "\n Related commands: gfd3d nt2d nt3d "; usage += "\n ----- OBSOLETE: utilisez nt2d -----"; mpiac->RegisterCommand(kw, usage, this, "Obj. Display"); kw = "gfd3d"; usage = "Displays 3D-Points (X-Y-Z) with error-bars from a GeneralFit Data "; usage += "\n Usage : gfd3d nameobj numvarx numvary erreur=(x y z xy xz yz xyz) [graphic_attributes]"; usage += "\n Related commands: gfd2d nt2d nt3d "; usage += "\n ----- OBSOLETE: utilisez nt3d -----"; mpiac->RegisterCommand(kw, usage, this, "Obj. Display"); kw = "func"; usage = "Displays a function y=f(x) (Fills a vector with function values)"; usage += "\n Usage: func f(x) xmin xmax [npt graphic_attributes]"; usage += "\n Related commands: funcff func2d func2dff "; mpiac->RegisterCommand(kw, usage, this, "Func Plot"); kw = "funcff"; usage = "Displays a function y=f(x) from a C-file (Fills a vector with function values)"; usage += "\n Usage: funcff C-FileName FunctionName xmin xmax [npt graphic_attributes]"; usage += "\n Related commands: func func2d func2dff "; mpiac->RegisterCommand(kw, usage, this, "Func Plot"); kw = "func2d"; usage = "Displays a function z=f(x,y) (Fills a matrix with function values)"; usage += "\n Usage: func2d f(x,y) xmin xmax nptx ymin ymax npty [graphic_attributes]"; usage += "\n Related commands: func"; mpiac->RegisterCommand(kw, usage, this, "Func Plot"); kw = "func2dff"; usage = "Displays a function z=f(x,y) from a C-file (Fills a matrix with function values)"; usage += "\n Usage: func2dff C-FileName FunctionName xmin xmax nptx ymin ymax npty [graphic_attributes]"; usage += "\n Related commands: func funcff func2d "; mpiac->RegisterCommand(kw, usage, this, "Func Plot"); kw = "ObjectExpressions"; usage = "Any mathematical expression (math.h) with object variables can be used"; usage += "\n ------ Object Variable names (double) -------- "; usage += "\n (_nl is the table line number or the sequential index)"; usage += "\n- NTuple: ntuple variable names,_nl"; usage += "\n- Histo1D/HProf: i,x,val,err,_nl"; usage += "\n- Histo2D: i,j,x,y,val,err,_nl"; usage += "\n- Vector/Matrix: n,r,c,val,real,imag,mod,phas,_nl"; usage += "\n- TArray: n,x,y,z,t,u,val,real,imag,mod,phas,_nl"; usage += "\n- Image: i,j,x,y,val(=pix),_nl"; usage += "\n- GeneralFitData: x0,ex0 x1,ex1 ... xn,exn y,ey ok ,_nl"; usage += "\n- LocalMap/SphereThetaPhi/SphereHEALPix: "; usage += "\n- i,k,val,real,imag,mod,phas,teta,phi,_nl"; usage += "\n- FITS Binary/ASCII table: fits column names,_nl"; #ifdef SANS_EVOLPLANCK usage += "\n ------ Eros Variable names (double) -------- "; usage += "\n- StarList: x,y,flux,fond,pixmax,flags,"; usage += "\n- xref,yref,fluxref,fondref,pixmaxref,_nl"; #endif usage += "\n ------ Other parameters -------- "; usage += "\nLoop parameters can be specified as I1[:I2[:DI]] for(int i=I1; iRegisterHelp(kw, usage, grp); kw = "plot2d"; usage = "Plots (2D) Y=g(Object) vs. X=f(Object) --- Object Variable names (double) :"; usage += "\n Usage: plot2d nameobj f_X() g_Y() [f_Cut() graphic_attributes loop_param]"; usage += "\n Related commands: plot2de plot2dw plot3d ObjectExpressions ..."; mpiac->RegisterCommand(kw, usage, this, "Expr. Plotting"); kw = "plot2de"; usage = "Plots (2D) Y=g(Object) vs. X=f(Object) with error bars eX/Y=f_ErrX/Y(Object) "; usage += "\n Usage: plot2de nameobj f_X() g_Y() f_ErrX() f_ErrY() [f_Cut() graphic_attributes loop_param]"; usage += "\n Related commands: plot2d plot2dw plot3d ObjectExpressions ..."; mpiac->RegisterCommand(kw, usage, this, "Expr. Plotting"); kw = "plot2dw"; usage = "Plots (2D) Y=g(Object) vs. X=f(Object) with Weight W=h(Object) "; usage += "\n Usage: plot2dw nameobj f_X() g_Y() h_Wt() [Cut() graphic_attributes loop_param]"; usage += "\n Related commands: plot2d plot2dw plot3d ObjectExpressions ..."; mpiac->RegisterCommand(kw, usage, this, "Expr. Plotting"); kw = "plot3d"; usage = "Plots (3D) Z=h(Object) vs. Y=g(Object) vs. X=f(Object) vs "; usage += "\n Usage: plot3d nameobj f_X() g_Y() h_Z() [Cut() graphic_attributes loop_param]"; usage += "\n Related commands: plot2d plot2dw plot2de plot3d ObjectExpressions ..."; mpiac->RegisterCommand(kw, usage, this, "Expr. Plotting"); kw = "projh1d"; usage = "Projects X=f(Object) with weight WT=h(Object) into a 1D histogram "; usage += "\n Usage: projh1d nameh1d nameobj f_X() [h_WT()=1. Cut() graphic_attributes loop_param]"; usage += "\n Histo1D nameh1d is created if necessary "; usage += "\n Related commands: projh2d projprof ObjectExpressions ..."; mpiac->RegisterCommand(kw, usage, this, "Expr. Plotting"); kw = "projh2d"; usage = "Projects (X=f(Object),Y=g(Object)) with weight WT=h(Object) into a 2D histogram "; usage += "\n Usage: projh2d nameh2d nameobj f_X() g_Y() [h_WT()=1. Cut() graphic_attributes loop_param]"; usage += "\n Histo2D nameh2d is created if necessary "; usage += "\n Related commands: projh1d projprof ObjectExpressions ..."; mpiac->RegisterCommand(kw, usage, this, "Expr. Plotting"); kw = "projprof"; usage = "Projects (X=f(Object),Y=g(Object)) with weight WT=h(Object) into a profile histogram "; usage += "\n Usage: projprof nameprof nameobj f_X() g_Y() [h_WT()=1. Cut() graphic_attributes loop_param]"; usage += "\n HProf nameprof is created if necessary "; usage += "\n Related commands: projh1d projh2d ObjectExpressions ..."; mpiac->RegisterCommand(kw, usage, this, "Expr. Plotting"); kw = "fillvec"; usage = "Fills a Vector V((int)(f_X(Object)+0.5)) = h_V(Object) "; usage += "\n Usage: fillvec namevec nameobj f_X() h_V() [Cut() graphic_attributes loop_param]"; usage += "\n Related commands: fillmtx fillnt ObjectExpressions ..."; mpiac->RegisterCommand(kw, usage, this, "Expr. Plotting"); kw = "fillmtx"; usage = "Fills a Matrix M(Line=g_Y(Object)+0.5, Col=f_X(Object)+0.5)) = h_V(Object) "; usage += "\n Usage: fillvec namevec nameobj f_X() g_Y() h_V() [Cut() graphic_attributes loop_param]"; usage += "\n Related commands: fillvec fillnt ObjectExpressions ..."; mpiac->RegisterCommand(kw, usage, this, "Expr. Plotting"); kw = "fillnt"; usage = "Creates and Fills an NTuple(x,y,z,t) with (X=f(Object),Y=g(...),Z=h(...),T=k(...))"; usage += "\n Usage: fillnt nameobj f_X() g_Y() h_Z() k_T() [Cut() nameNt loop_param]"; usage += "\n Related commands: ntloop plot2d projh1d projh2d projprof "; usage += "\n Related commands: fillvec fillmtx ntloop exptovec fillgd1 fillgd2 ObjectExpressions ..."; mpiac->RegisterCommand(kw, usage, this, "Expr. Plotting"); kw = "ntloop"; usage = "Loops over an Object NTupleInterface calling a function from a C-file \n"; usage += "and optionaly fills an NTuple(x,y,z,t) with (X=f(Object),Y=g(...),Z=h(...),T=k(...))"; usage += "\n Usage: ntloop nameobj CFileName FuncName [NtupleName loop_param]"; usage += "\n Related commands: fillvec fillmtx fillnt fillgd1 fillgd2 exptovec ObjectExpressions ..."; usage += "\n Related commands: ntexpcfile fillnt"; mpiac->RegisterCommand(kw, usage, this, "Expr. Plotting"); kw = "ntexpcfile"; usage = "Creates a C-File with declarations suitable to be used for ntloop"; usage += "\n Usage: ntexpcfile nameobj CFileName FuncName "; usage += "\n Related commands: ntloop"; mpiac->RegisterCommand(kw, usage, this, "Expr. Plotting"); kw = "exptovec"; usage = "Creates and Fills a Vector with X=f(Object)"; usage += "\n Usage: exptovec namevec nameobj f_X() [Cut() graphic_attributes loop_param]"; usage += "\n Related commands: ntloop fillnt ObjectExpressions ..."; mpiac->RegisterCommand(kw, usage, this, "Expr. Plotting"); kw = "fillgd1"; usage = "Creates and Fills a GeneralFitData with (X=f(Object), Y=g(...), ErrY=h(...))"; usage += "\n Usage: fillgd1 namegfd nameobj f_X() g_Y() h_ErrY() [Cut() loop_param]"; usage += "\n Related commands: ntloop fillnt ObjectExpressions ..."; mpiac->RegisterCommand(kw, usage, this, "Expr. Plotting"); kw = "fillgd2"; usage = "Creates and Fills a GeneralFitData with (X=f(Object), Y=g(...), Z=h(...)) ErrZ=k(...)"; usage += "\n Usage: fillgd1 namegfd nameobj f_X() g_Y() h_Z() k_ErrZ() [Cut() loop_param]"; usage += "\n Related commands: ntloop fillnt ObjectExpressions ..."; mpiac->RegisterCommand(kw, usage, this, "Expr. Plotting"); kw = "gdfrvec"; usage = "Fills a GeneralFitData with vectors X,Y,Z,EZ"; usage += "\n Usage: gdfrvec namegfd X Y"; usage += "\n Usage: gdfrvec namegfd X Y ! EY"; usage += "\n Usage: gdfrvec namegfd X Y Z"; usage += "\n Usage: gdfrvec namegfd X Y Z EZ"; usage += "\n Related commands: fillgd1 fillgd2 ..."; mpiac->RegisterCommand(kw, usage, this, "Expr. Plotting"); kw = "eval"; usage = "Compute arithmetic expression\n"; usage += "\n Usage: eval resultvarname arithmetic expression...."; usage += "\n resultvarname: store result in variable resultvarname"; usage += "\n - If first character is not alphabetic, just print result"; usage += "\n arithmetic expression:"; usage += "\n ex: x + sqrt(y)+z +3.14 (x,y,z are variables)"; usage += "\n ex: $x + sqrt($y)+$z +3.14 (x,y,z are variables)"; usage += "\n ex: 360 * M_PI / 180."; mpiac->RegisterCommand(kw, usage, this, "Expr. Arithmetic"); } /* --Methode-- */ int PIABaseExecutor::LinkUserFuncs(string& fnameso, string& func1, string& func2, string& func3) // string& func4, string& func5) { string cmd; if (dynlink) delete dynlink; dynlink = NULL; usfmap.clear(); dynlink = new PDynLinkMgr(fnameso, true); if (dynlink == NULL) { string sn = fnameso; cerr << "PIABaseExecutor/LinkUserFuncs_Erreur: Erreur ouverture SO " << sn << endl; return(2); } int nok=0; // on utilise donc des DlFunction (Reza 20/08/98) voir commentaire ds .h (pb g++) // DlUserProcFunction f = NULL; DlFunction f = NULL; if ((func1.length() < 1) || (func1 == "-") || (func1 == ".") ) goto fin; // f = (DlUserProcFunction) dlsym(dlhandle, func1.c_str()); f = dynlink->GetFunction(func1); if (f) { nok++; usfmap[func1] = f; } else cerr << "PIABaseExecutor/LinkUserFuncs_Erreur: Erreur linking " << func1 << endl; if ((func2.length() < 1) || (func2 == "-") || (func2 == ".") ) goto fin; // f = (DlUserProcFunction) dlsym(dlhandle, func2.c_str()); f = dynlink->GetFunction(func2); if (f) { nok++; usfmap[func2] = f; } else cerr << "PIABaseExecutor/LinkUserFuncs_Erreur: Erreur linking " << func2 << endl; if ((func3.length() < 1) || (func3 == "-") || (func3 == ".") ) goto fin; // f = (DlUserProcFunction) dlsym(dlhandle, func3.c_str()); f = dynlink->GetFunction(func3); if (f) { nok++; usfmap[func3] = f; } else cerr << "PIABaseExecutor/LinkUserFuncs_Erreur: Erreur linking " << func3 << endl; /* Pb compile g++ 2.7.2 if ((func4.length() < 1) || (func4 == "-") || (func4 == ".") ) goto fin; // f = (DlUserProcFunction) dlsym(dlhandle, func4.c_str()); f = dynlink->GetFunction(func4); if (f) { nok++; usfmap[func4] = f; } else cerr << "PIABaseExecutor/LinkUserFuncs_Erreur: Erreur linking " << func4 << endl; if ((func5.length() < 1) || (func5 == "-") || (func5 == ".") ) goto fin; // f = (DlUserProcFunction) dlsym(dlhandle, func5.c_str()); f = dynlink->GetFunction(func5); if (f) { nok++; usfmap[func5] = f; } else cerr << "PIABaseExecutor/LinkUserFuncs_Erreur: Erreur linking " << func5 << endl; */ fin: if (nok < 1) { if (dynlink) delete dynlink; dynlink = NULL; return(3); } else return(0); } /* --Methode-- */ int PIABaseExecutor::LinkUserFuncs2(string& fnameso, string& func1, string& func2, string& func3) { string cmd; if (dynlink2) delete dynlink2; dynlink2 = NULL; usfmap2.clear(); dynlink2 = new PDynLinkMgr(fnameso, true); if (dynlink2 == NULL) { string sn = fnameso; cerr << "PIABaseExecutor/LinkUserFuncs2_Erreur: Erreur ouverture SO " << sn << endl; return(2); } int nok=0; // on utilise donc des DlFunction (Reza 20/08/98) voir commentaire ds .h (pb g++) // DlUserProcFunction f = NULL; DlFunction f = NULL; if ((func1.length() < 1) || (func1 == "-") || (func1 == ".") ) goto fin; f = dynlink2->GetFunction(func1); if (f) { nok++; usfmap2[func1] = f; } else cerr << "PIABaseExecutor/LinkUserFuncs2_Erreur: Erreur linking " << func1 << endl; if ((func2.length() < 1) || (func2 == "-") || (func2 == ".") ) goto fin; f = dynlink2->GetFunction(func2); if (f) { nok++; usfmap2[func2] = f; } else cerr << "PIABaseExecutor/LinkUserFuncs2_Erreur: Erreur linking " << func2 << endl; if ((func3.length() < 1) || (func3 == "-") || (func3 == ".") ) goto fin; f = dynlink2->GetFunction(func3); if (f) { nok++; usfmap2[func3] = f; } else cerr << "PIABaseExecutor/LinkUserFuncs2_Erreur: Erreur linking " << func3 << endl; fin: if (nok < 1) { if (dynlink2) delete dynlink2; dynlink2 = NULL; return(3); } else return(0); } /* Nouvelle-Fonction */ void RegisterPIGraphicsHelp(PIACmd* piac) { string kw,grp,usage; grp = "Graphics"; kw = "PIImage"; usage = "Manages the display of a 2-D array (P2DArrayAdapter) as an image \n"; usage += "and controls a zoom widget, as well as a global image view widget \n"; usage += ">>>> Mouse controls : \n"; usage += "o Button-1: Display current coordinates and pixel value\n"; usage += " Position the cursor an refresh the zoom widget\n"; usage += "o Button-2: Defines an image zone and positions the cursor \n"; usage += "o Button-3: Moves the viewed portion of the array inside the window \n"; usage += ">>>> Keyboard controls : \n"; usage += "o R : Refresh display \n"; usage += "o O : Shows the PIImageTools (image display parameter controls) \n"; usage += "o G : Show the PIDrawerTools (Graphic attributes of overlayed graphics (Drawers)) \n"; usage += "o D : Shows the drawer manipulation pop-up menu \n"; usage += "o V : Copy/Paste / Text paste at the current cursor position \n"; usage += "o C : Copy/Paste / Copies the selected regions content as text in the copy/paste buffer \n"; usage += "o X : Show/Hide the Cut Window \n"; usage += "o Z : Removes added graphic elements (handled by BaseDrawer - 0) \n"; usage += "o E : Removes the last added graphic element \n"; usage += "o + or + : Zoom in \n"; usage += "o - or - : Zoom out \n"; usage += "o Cursor keys : Moves the image cursor \n"; piac->RegisterHelp(kw, usage, grp); kw = "PIScDrawWdg"; usage = "Manages display of 2-D drawers with interactive zoom \n"; usage += ">>>> Mouse controls : \n"; usage += "o Button-1: Display current coordinates \n"; usage += "o Button-2: Defines a rectangle for zoom \n"; usage += "o Button-3: Defines a rectangle for Text-Info (I) \n"; usage += ">>>> Keyboard controls : \n"; usage += "o R : Refresh display \n"; usage += "o O : Displays a specific control window (default: PIDrawerTools) \n"; usage += " (2-D histograms, contour plot ...) \n"; usage += "o G : Show the PIDrawerTools (Graphic attributes of displayed Drawers) \n"; usage += " Drawer 0 manages the axes, as well as the added text \n"; usage += "o D : Shows the drawer manipulation pop-up menu \n"; usage += "o V : Copy/Paste / Text paste at the current position \n"; usage += "o Z : Removes added graphic elements (handled by BaseDrawer - 0) \n"; usage += "o E : Removes the last added graphic element \n"; usage += "o I : Shows (or updates) a text info window on the selected rectangle \n"; usage += "o M : Activate/Deactivate a measurement cursor on Button-1\n"; usage += "o L : Deactivate DX,DY print (see below)\n"; usage += ">>>> Mouse + Keyboard controls : \n"; usage += "o Button-1 + K : Set (reset) the reference point for DX,DY print \n"; piac->RegisterHelp(kw, usage, grp); kw = "PIDraw3DWdg"; usage = "Manages display of 3-D objects (drawers) \n"; usage += ">>>> Mouse controls : \n"; usage += "o Button-2: Rotates the observer (camera) around object \n"; usage += "o Shift-Button-2: Rotates object with camera fixed \n"; usage += " The object rotation mode can be assigned to Button-2 with S \n"; usage += "o Button-3: Zoom control (Camera distance And/Or view angle) \n"; usage += ">>>> Keyboard controls : \n"; usage += "o R : Resets the 3-D view and refreshes the display \n"; usage += "o O : Displays a specific control window (default: PIDrawerTools) \n"; usage += " (2-D histograms, contour plot ...) \n"; usage += "o G : Show the PIDrawerTools (Graphic attributes of displayed Drawers) \n"; usage += " Drawer 0 manages the axes, as well as the added text \n"; usage += "o D : Shows the drawer manipulation pop-up menu \n"; usage += "o V : Copy/Paste / Text paste at the current position (Drawer 0)\n"; usage += "o Z : Removes added graphic elements (handled by BaseDrawer - 0) \n"; usage += "o E : Removes the last added graphic element \n"; usage += "o A : Activate/Deactivate axes drawing \n"; usage += "o S : Activate/Deactivate object rotation mode on Button-2 \n"; piac->RegisterHelp(kw, usage, grp); kw = "Windows"; usage = "Objects can be displayed in different windows, or overlayed on the \n"; usage += "previous display. The graphics attributes next,win,stack,same control \n"; usage += "the display window. \n"; usage += "o GraphicWindow : This is the default mode (gr_att=next)\n"; usage += " Graphic windows can be divided int zones. Object is displayed \n"; usage += " in the next available position, removing a previously displayed \n"; usage += " widget if necessary \n"; usage += "o Window : An object is displayed in its own window (gr_att= win) \n"; usage += "o StackWindow : multpile widgets can be stacked in a StackWindow (gr_att= stack) \n"; usage += " A single widget is displayed a any time. Different widgets in a StackWindow \n"; usage += " can be displayed using the stacknext command, as well as the StackTools item \n"; usage += " in the Tools menu (from Menubar). An automatic cyclic display mode can also \n"; usage += " be activated using the StackTools menu (Blink) \n"; usage += "o Most objects can be also be displayed overlayed \n"; usage += " on the last displayed widget (gr_att= same) \n"; usage += "o The overlay can be on a selected rectangle of the \n"; usage += " last displayed widget (gr_att= inset) - See setinsetlimits\n"; usage += "\n Related commands: newwin zone stacknext graphicatt setinsetlimits"; piac->RegisterHelp(kw, usage, grp); kw = "PIConsole"; usage = "Text output area and command editing window (console) \n"; usage += ">>>> Mouse controls : \n"; usage += "o Button-1: Rectangle selection for copy/paste \n"; usage += "o Button-2: Paste text in the command editing line \n"; usage += "o Button-3: activate display option menu \n"; usage += ">>>> Keyboard controls : \n"; usage += "o O : activate display option menu \n"; usage += "o V : Paste text in the command editing line \n"; usage += "o A : Selection of the whole window for copy \n"; usage += "o L : Command history (List of command history buffer) \n"; usage += "o A : Command editing -> Goto the beginning of line \n"; usage += "o E : Command editing -> Goto the end of line \n"; usage += "o K : Command editing -> Clear to the end of line \n"; usage += "o C : Command editing -> Clear the line \n"; usage += "o Cursor left,right : Command editing -> Move cursor \n"; usage += "o Cursor Up,Down : recall command from history buffer \n"; usage += "o Backspace,Del : Command editing \n"; usage += "o , : Execute command \n"; piac->RegisterHelp(kw, usage, grp); }