Changeset 3153 in Sophya for trunk/SophyaPI/PIext
- Timestamp:
- Jan 19, 2007, 4:58:39 PM (19 years ago)
- Location:
- trunk/SophyaPI/PIext
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/nomherradapter.cc
r3149 r3153 252 252 { 253 253 Histo2DErrWrapper* hwp = new Histo2DErrWrapper(mHerr, false); 254 vector<string> vopts;255 FillVStringFrString(dopt,vopts,' ');256 hwp->DecodeOptionString(vopts,false);257 254 return hwp; 258 255 } -
trunk/SophyaPI/PIext/nomhistadapter.cc
r3149 r3153 340 340 { 341 341 Histo2DWrapper* hwp = new Histo2DWrapper(mHis, false); 342 vector<string> vopts;343 FillVStringFrString(dopt,vopts,' ');344 hwp->DecodeOptionString(vopts,false);345 342 return hwp; 346 343 } -
trunk/SophyaPI/PIext/phistwrapper.h
r3145 r3153 52 52 virtual int GetStatInfoAsText(vector<string> & text ); 53 53 54 // Methode de decodage des options - avec implementation par defaut55 // l'implementation par defautds le fichier pihisto.cc54 // Methode de decodage des options - herite de P1DArrayAdapter 55 // implementation ds le fichier pihisto.cc 56 56 virtual int DecodeOptionString(vector<string> & opt, bool rmdecopt=true); 57 // liste des options sous forme text (ds pihisto.cc )57 // liste des options sous forme text - herite de P1DArrayAdapter (ds pihisto.cc ) 58 58 virtual int OptionToString(vector<string> & opt) const; 59 59 … … 108 108 virtual int GetStatInfoAsText(vector<string> & text ); 109 109 110 // Methode de decodage des options - avec implementation par defaut111 // l'implementation par defaut ds le fichier pihisto.cc110 // Methode de decodage des options - herite de P2DArrayAdapter 111 // l'implementation ds le fichier pihisto2d.cc 112 112 virtual int DecodeOptionString(vector<string> & opt, bool rmdecopt=true); 113 // liste des options sous forme text (ds pihisto.cc )113 // liste des options sous forme text - herite de P2DArrayAdapter (ds pihisto2d.cc ) 114 114 virtual int OptionToString(vector<string> & opt) const; 115 115 -
trunk/SophyaPI/PIext/pihisto.cc
r3149 r3153 310 310 opt.push_back(str); 311 311 312 mHistoWp->OptionToString(opt);312 if (mHistoWp) mHistoWp->OptionToString(opt); 313 313 return 1; 314 314 } -
trunk/SophyaPI/PIext/pihisto2d.cc
r3149 r3153 715 715 716 716 // Les options du Histo2DWrapper : 717 mHistoWp->OptionToString(opt);717 if(mHistoWp) mHistoWp->OptionToString(opt); 718 718 return 1; 719 719 }
Note:
See TracChangeset
for help on using the changeset viewer.