Changeset 3145 in Sophya for trunk/SophyaPI/PIext/nomherradapter.cc
- Timestamp:
- Jan 18, 2007, 5:33:46 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/nomherradapter.cc
r3139 r3145 7 7 8 8 #include "nomherradapter.h" 9 #include "pihisto.h" /* Wrapper pour HistoErr */ 10 #include "sohiswrap.h" /* Wrapper pour HistoErr */ 9 #include "pihisto.h" /* Traceur pour Histo1D */ 10 #include "pihisto2d.h" /* Traceur pour Histo2D */ 11 #include "sohiswrap.h" /* Wrapper pour histos (HistoErr Histo2DErr ...) */ 11 12 12 13 #include "pipodrw.h" … … 242 243 PIDrawer* NOMAdapter_Histo2DErr::GetDrawer(string & dopt) 243 244 { 244 /* A_FAIRE_REZA -> + des options pour choisir val / err2 / nb 245 dopt = "thinline " + dopt; 246 return( new PIHisto2DErr(mHerr, false) ); 247 */ 248 return NULL; 245 dopt = "thinline " + dopt; // $CHECK$ CMV : faut-il ajouter thinline 246 return( new PIHisto2D(new Histo2DErrWrapper(mHerr, false), true) ); 249 247 } 250 248 … … 252 250 P2DArrayAdapter* NOMAdapter_Histo2DErr::Get2DArray(string & dopt) 253 251 { 254 return ( new POHe2DAdapter(mHerr, false) ); 252 // DEL return ( new POHe2DAdapter(mHerr, false) ); -- A SUPPRIMER 253 Histo2DErrWrapper* hwp = new Histo2DErrWrapper(mHerr, false); 254 // $CHECK$ CMV : pour les options hbincont hbinerr ... 255 // voir NOMAdapter_Histo2D::Get2DArray(string & dopt) ds nomhistadapter.cc 256 return hwp; 255 257 } 256 258
Note:
See TracChangeset
for help on using the changeset viewer.