Changeset 1525 in Sophya for trunk/SophyaPI/PIext/basexecut.cc
- Timestamp:
- Jun 13, 2001, 5:05:38 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/basexecut.cc
r1504 r1525 410 410 tokens[6], tokens[7], tokens[8], tokens[9], true); 411 411 } 412 else if (kw == "vecplot") { 413 if (tokens.size() < 2) { 414 cout << "Usage: vecplot nameVecX nameVecY [opt]" << endl; 415 } 416 while (tokens.size() < 3) tokens.push_back(""); 417 mObjMgr->DisplayVector(tokens[0], tokens[1], tokens[2]); 418 } 412 419 413 420 // Obsolete : ne pas virer SVP, cmv 26/7/99 … … 915 922 kw = "disp"; 916 923 usage = "Displays an object \n Usage: disp nameobj [graphic_attributes]"; 917 usage += "\n Related commands: surf nt2d nt3d ";924 usage += "\n Related commands: surf nt2d nt3d vecplot"; 918 925 mpiac->RegisterCommand(kw, usage, this, "Obj. Display"); 919 926 kw = "imag"; 920 927 usage = "Displays an object as an image \n Usage: imag nameobj [graphic_attributes]"; 921 usage += "\n Related commands: disp surf nt2d nt3d ";928 usage += "\n Related commands: disp surf nt2d nt3d vecplot"; 922 929 mpiac->RegisterCommand(kw, usage, this, "Obj. Display"); 923 930 kw = "surf"; 924 931 usage = "Displays an object as a 3D surface \n Usage: surf nameobj [graphic_attributes]"; 925 usage += "\n Related commands: disp nt2d nt3d ";932 usage += "\n Related commands: disp nt2d nt3d vecplot"; 926 933 mpiac->RegisterCommand(kw, usage, this, "Obj. Display"); 927 934 kw = "nt2d"; 928 935 usage = "Displays Points (X-Y) [with error-bar / Weight / Label ] from an NTuple "; 929 936 usage += "\n Usage : nt2d nameobj varx vary [errx erry wt label graphic_attributes]"; 930 usage += "\n Related commands: disp surf nt3d gfd2d ";937 usage += "\n Related commands: disp surf nt3d gfd2d vecplot"; 931 938 mpiac->RegisterCommand(kw, usage, this, "Obj. Display"); 932 939 kw = "nt3d"; … … 934 941 usage += "\n Usage : nt3d nameobj varx vary varz [errx erry errz wt label graphic_attributes]"; 935 942 usage += "\n Related commands: disp surf nt2d gfd3d "; 943 mpiac->RegisterCommand(kw, usage, this, "Obj. Display"); 944 kw = "vecplot"; 945 usage = "Displays Points (X-Y) with coordinates defined by two vectors "; 946 usage += "\n Usage : vecplot nameVecX nameVecY [graphic_attributes]"; 947 usage += "\n Related commands: disp nt2d "; 936 948 mpiac->RegisterCommand(kw, usage, this, "Obj. Display"); 937 949
Note:
See TracChangeset
for help on using the changeset viewer.