Changeset 508 in Sophya for trunk/SophyaLib/NTools/hisprof.h
- Timestamp:
- Oct 25, 1999, 12:36:22 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/NTools/hisprof.h
r490 r508 29 29 // Acces a l information 30 30 inline Histo GetHisto() {if(!Ok) UpdateHisto(); return (Histo) *this;} 31 inline void GetMean( Vector& v) {if(!Ok) UpdateHisto(); Histo::GetValue(v);}32 inline void GetError2( Vector& v) {if(!Ok) UpdateHisto(); Histo::GetError2(v);}31 inline void GetMean(OVector& v) {if(!Ok) UpdateHisto(); Histo::GetValue(v);} 32 inline void GetError2(OVector& 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.