Changeset 3149 in Sophya for trunk/SophyaPI/PIext/nomhistadapter.cc
- Timestamp:
- Jan 18, 2007, 7:21:49 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/nomhistadapter.cc
r3145 r3149 14 14 15 15 #include "servnobjm.h" 16 #include "strutilxx.h" 16 17 17 18 #ifndef SANS_EVOLPLANCK … … 331 332 PIDrawer* NOMAdapter_Histo2D::GetDrawer(string & dopt) 332 333 { 333 dopt = "thinline " + dopt; // $CHECK$ CMV : faut-il ajouter thinline334 dopt = "thinline " + dopt; 334 335 return( new PIHisto2D(new Histo2DWrapper(mHis, false), true) ); 335 336 } … … 338 339 P2DArrayAdapter* NOMAdapter_Histo2D::Get2DArray(string & dopt) 339 340 { 340 // DEL return (new POH2DAdapter(mHis, false) ); -- A SUPPRIMER341 341 Histo2DWrapper* hwp = new Histo2DWrapper(mHis, false); 342 // $CHECK$ CMV : pour les options hbincont hbinerr ... 343 // On peut decoder les options si on veut, par exemple avec : 344 // vector<string> vopts; 345 // FillVStringFrString(string const & dopt, vector<string>& vopts,char sep = ' ') 346 // hwp->DecodeOptionString(vopts, false); 342 vector<string> vopts; 343 FillVStringFrString(dopt,vopts,' '); 344 hwp->DecodeOptionString(vopts,false); 347 345 return hwp; 348 346 }
Note:
See TracChangeset
for help on using the changeset viewer.