Changeset 3125 in Sophya for trunk/SophyaPI/PIext/nomherradapter.cc
- Timestamp:
- Jan 11, 2007, 7:02:52 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/nomherradapter.cc
r3123 r3125 8 8 #include "nomherradapter.h" 9 9 #include "servnobjm.h" 10 /* A_FAIRE_REZA #include "pihisterr.h" */ 11 /* A_FAIRE_REZA #include "pihist2err.h" */ 10 11 #include "pihisto.h" /* Wrapper pour HistoErr */ 12 #include "sohiswrap.h" /* Wrapper pour HistoErr */ 13 12 14 13 15 #include "objfitter.h" … … 100 102 PIDrawer* NOMAdapter_HistoErr::GetDrawer(string & dopt) 101 103 { 102 /* A_FAIRE_REZA -> + des options pour choisir val / err2 / nb 103 if (typeid(*mHerr) == typeid(HProf)) dopt = "fcirclemarker5 " + dopt; 104 else dopt = "thinline " + dopt; 105 PIHistoErr * pih = new PIHistoErr(mHerr, false); 104 /* A_FAIRE_CMV -> + des options pour choisir val / err2 / nb 105 pour les options, il faut rajouter des arguments ou methodes a 106 la classe HistoErrWrapper() et modifier la methode operator()(int_4 i) Error() 107 108 Si besoin, modifier dopt apres... dopt = "fcirclemarker5 " + dopt; 109 */ 110 HistoErrWrapper* hw = new HistoErrWrapper(mHerr, false); // false: le Wrapper ne delete pas l'objet mHerr 111 PIHisto * pih = new PIHisto(hw, true); // true: PIHisto delete l'objet HistoErrWrapper hw 106 112 return( pih ); 107 */108 return NULL;109 113 } 110 114
Note:
See TracChangeset
for help on using the changeset viewer.