Changeset 514 in Sophya for trunk/SophyaLib/NTools/hisprof.h
- Timestamp:
- Oct 25, 1999, 6:43:04 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/NTools/hisprof.h
r508 r514 4 4 #include <stdio.h> 5 5 #include "peida.h" 6 #include " cvector.h"6 #include "tvector.h" 7 7 #include "ppersist.h" 8 8 #include "histos.h" … … 29 29 // Acces a l information 30 30 inline Histo GetHisto() {if(!Ok) UpdateHisto(); return (Histo) *this;} 31 inline void GetMean( OVector& v) {if(!Ok) UpdateHisto(); Histo::GetValue(v);}32 inline void GetError2( OVector& v) {if(!Ok) UpdateHisto(); Histo::GetError2(v);}31 inline void GetMean(Vector& v) {if(!Ok) UpdateHisto(); Histo::GetValue(v);} 32 inline void GetError2(Vector& v) {if(!Ok) UpdateHisto(); Histo::GetError2(v);} 33 33 inline float operator()(int i) const {if(!Ok) UpdateHisto(); return data[i];} 34 34 inline float Error2(int i) const {if(!Ok) UpdateHisto(); return (float) err2[i];}
Note:
See TracChangeset
for help on using the changeset viewer.