Changeset 486 in Sophya for trunk/SophyaPI/PIext/nobjmgr.cc


Ignore:
Timestamp:
Oct 21, 1999, 2:22:56 PM (26 years ago)
Author:
ercodmgr
Message:

Adapatation a NTupleInterface::GetCelltoString() et ajout trace Label ds PINTuple/3D et Wt ds PINtuple3D - Reza 21/10/99

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PIext/nobjmgr.cc

    r466 r486  
    10211021/* --Methode-- */
    10221022void NamedObjMgr::DisplayNT(string& nom, string& nmx, string& nmy, string& nmz,
    1023                             string& erx, string& ery, string& erz, string dopt, bool fg3d)
     1023                            string& erx, string& ery, string& erz, string& wt,
     1024                            string& label, string dopt, bool fg3d)
    10241025{
    10251026AnyDataObj* obj=GetObj(nom);
     
    10491050  PINTuple3D* pin = new PINTuple3D(nt, false);
    10501051  pin->SelectXYZ(nmx.c_str(), nmy.c_str(), nmz.c_str());
     1052  pin->SelectWt(wt.c_str());
     1053  pin->SelectLabel(label.c_str());
    10511054  pin->SelectErrBar(erx.c_str(), ery.c_str(), erz.c_str());
    10521055  string titre = nmz + "%" + nmy + "%" + nmz;
     
    10561059  PINTuple* pin = new PINTuple(nt, false);
    10571060  pin->SelectXY(nmx.c_str(), nmy.c_str());
     1061  pin->SelectWt(wt.c_str());
     1062  pin->SelectLabel(label.c_str());
    10581063  pin->SelectErrBar(erx.c_str(), ery.c_str());
    1059   if ( nmz.length()>0 ) pin->SelectWt(nmz.c_str());
    10601064  string titre = nmy + "%" + nmx;
    10611065  wrsid = myImgApp->DispScDrawer( (PIDrawer*)pin, n1, opt, titre);
Note: See TracChangeset for help on using the changeset viewer.