00001 /* ==== HEADER histo.h ==== */ 00002 00003 #ifndef HISTO_H 00004 #define HISTO_H 00005 00012 /* 1. Feb. 1993. Andras Aszodi */ 00013 00014 /* ---- STANDARD HEADERS ---- */ 00015 00016 #include <math.h> 00017 00018 /* ---- PROTOTYPES ---- */ 00019 00020 #ifdef __cplusplus 00021 namespace RazorBack { extern "C" { 00022 #endif 00023 00030 void avg_sd(double Data[], int Datno, double *Avg, double *Sd); 00031 00039 void make_hist(double Data[], int Datno, int Binno, 00040 double *Low, double *Step, int Bins[]); 00041 00042 #ifdef __cplusplus 00043 } } 00044 #endif 00045 00046 /* ==== END OF HEADER histo.h ==== */ 00047 00048 #endif /* HISTO_H */