Changeset 514 in Sophya for trunk/SophyaLib/NTools/hisprof.h


Ignore:
Timestamp:
Oct 25, 1999, 6:43:04 PM (26 years ago)
Author:
ansari
Message:

elimination des OVector/OMatrix au profit des TVector/TMatrix cmv 25/10/99

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/NTools/hisprof.h

    r508 r514  
    44#include <stdio.h>
    55#include "peida.h"
    6 #include "cvector.h"
     6#include "tvector.h"
    77#include "ppersist.h"
    88#include "histos.h"
     
    2929  // Acces a l information
    3030  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);}
    3333  inline float operator()(int i) const {if(!Ok) UpdateHisto(); return data[i];}
    3434  inline float Error2(int i) const {if(!Ok) UpdateHisto(); return (float) err2[i];}
Note: See TracChangeset for help on using the changeset viewer.