// Calc.h // Original author: Yurii Il'inskii // // Modifications: // 05 Dec 1996: Modified by Ronald Kumon to realigned text and add comments // 27 Feb 1997: Added createSuffix prototype #ifndef CALC_H #define CALC_H void ShadeHarmonics(int nm,double *V,double *Vshade); void CalcVx(int nm,double *V,double BxrN,double BxiN,double *Vx); void CalcVxh(int nm,double *V,double BxrN,double BxiN,double *Vxh); void CalcVy(int nm,double *V,double ByrN,double ByiN,double *Vy); void CalcVz(int nm,double *V,double BzrN,double BziN,double *Vz); void createSuffix(const char *datastr, char *newstr); #endif //CALC_H