source: trunk/src/Utils/utils.hh @ 849

Last change on this file since 849 was 849, checked in by MatthewWhiting, 13 years ago
  • Adding the new files to the makefile
  • New functions to find stats for differences between two arrays
  • Implementing some of the new functions in the reconstruction - also making use of the robust stats flag in the Param set.
File size: 6.4 KB
RevLine 
[301]1// -----------------------------------------------------------------------
2// utils.hh: Prototypes for utility functions.
3// -----------------------------------------------------------------------
4// Copyright (C) 2006, Matthew Whiting, ATNF
5//
6// This program is free software; you can redistribute it and/or modify it
7// under the terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 2 of the License, or (at your
9// option) any later version.
10//
11// Duchamp is distributed in the hope that it will be useful, but WITHOUT
12// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14// for more details.
15//
16// You should have received a copy of the GNU General Public License
17// along with Duchamp; if not, write to the Free Software Foundation,
18// Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
19//
20// Correspondence concerning Duchamp may be directed to:
21//    Internet email: Matthew.Whiting [at] atnf.csiro.au
22//    Postal address: Dr. Matthew Whiting
23//                    Australia Telescope National Facility, CSIRO
24//                    PO Box 76
25//                    Epping NSW 1710
26//                    AUSTRALIA
27// -----------------------------------------------------------------------
[3]28#ifndef UTILS_H
29#define UTILS_H
30
[394]31#include <wcslib/wcs.h>
[3]32#include <string>
33
[274]34struct wcsprm; // just foreshadow this.
35
[3]36// define the speed of light for WCS-related accessor functions
37const float C_kms = 299792.458;
38
[146]39int linear_regression(int num, float *x, float *y, int ilow, int ihigh,
40                      float &slope, float &errSlope,
41                      float &intercept, float &errIntercept, float &r);
[517]42template <class Type> void zscale(long imagesize, Type *image, Type &z1, Type &z2);
43template <class Type> void zscale(long imagesize, Type *image, Type &z1, Type &z2, Type nullVal);
[190]44template <class T> void sort(T *arr, int begin, int end);
45template <class T1, class T2> void sort(T1 *arr, T2 *matchingArray,
46                                        int begin, int end);
[56]47
48// STATISTICS-RELATED ROUTINES
[205]49template <class T> T absval(T value);
[847]50template <class T> void findMinMax(const T *array, const size_t size,
[190]51                                   T &min, T &max);
[847]52template <class T> float findMean(T *array, size_t size);
53template <class T> float findMean(T *array, bool *mask, size_t size);
[849]54template <class T> float findMeanDiff(T *first, T *second, size_t size);
55template <class T> float findMeanDiff(T *first, T *second, bool *mask, size_t size);
[847]56template <class T> float findStddev(T *array, size_t size);
57template <class T> float findStddev(T *array, bool *mask, size_t size);
[849]58template <class T> float findStddevDiff(T *first, T *second, size_t size);
59template <class T> float findStddevDiff(T *first, T *second, bool *mask, size_t size);
[847]60template <class T> T findMedian(T *array, size_t size, bool changeArray=false);
61template <class T> T findMedian(T *array, bool *mask, size_t size);
[849]62template <class T> T findMedianDiff(T *first, T *second, size_t size);
63template <class T> T findMedianDiff(T *first, T *second, bool *mask, size_t size);
[847]64template <class T> T findMADFM(T *array, size_t size, bool changeArray=false);
65template <class T> T findMADFM(T *array, bool *mask, size_t size);
66template <class T> T findMADFM(T *array, size_t size, T median, bool changeArray=false);
67template <class T> T findMADFM(T *array, bool *mask, size_t size, T median);
[849]68template <class T> T findMADFMDiff(T *first, T *second, size_t size);
69template <class T> T findMADFMDiff(T *first, T *second, bool *mask, size_t size);
70template <class T> T findMADFMDiff(T *first, T *second, size_t size, T median);
71template <class T> T findMADFMDiff(T *first, T *second, bool *mask, size_t size, T median);
[847]72template <class T> void findMedianStats(T *array, size_t size,
[190]73                                        T &median, T &madfm);
[847]74template <class T> void findMedianStats(T *array, size_t size, bool *isGood,
[190]75                                        T &median, T &madfm);
[847]76template <class T> void findNormalStats(T *array, size_t size,
[190]77                                        float &mean, float &stddev);
[847]78template <class T> void findNormalStats(T *array, size_t size, bool *isGood,
[275]79                                        float &mean, float &stddev);
[847]80template <class T> void findAllStats(T *array, size_t size,
[275]81                                     float &mean, float &stddev,
82                                     T &median, T &madfm);
[847]83template <class T> void findAllStats(T *array, size_t size, bool *mask,
[275]84                                     float &mean, float &stddev,
85                                     T &median, T &madfm);
[847]86template <class T> void findMedianStatsDiff(T *first, T *second, size_t size, T &median, T &madfm);
87template <class T> void findMedianStatsDiff(T *first, T *second, size_t size, bool *isGood, T &median, T &madfm);
88template <class T> void findNormalStatsDiff(T *first, T *second, size_t size, float &mean, float &stddev);
89template <class T> void findNormalStatsDiff(T *first, T *second, size_t size, bool *isGood, float &mean, float &stddev);
[190]90
[3]91
[56]92// POSITION-RELATED ROUTINES
[222]93std::string getIAUNameEQ(double ra, double dec, float equinox);
94std::string getIAUNameGAL(double ra, double dec);
95std::string decToDMS(double dec, std::string type);
96double dmsToDec(std::string dms);
[3]97double angularSeparation(double &ra1, double &dec1, double &ra2, double &dec2);
98
[56]99// WCS-RELATED ROUTINES
[204]100int wcsToPixSingle(struct wcsprm *wcs, const double *world, double *pix);
101int pixToWCSSingle(struct wcsprm *wcs, const double *pix, double *world);
102int wcsToPixMulti(struct wcsprm *wcs, const double *world,
[146]103                  double *pix, const int npts);
[204]104int pixToWCSMulti(struct wcsprm *wcs, const double *pix,
[146]105                  double *world, const int npts);
[204]106double pixelToVelocity(struct wcsprm *wcs, double &x, double &y,
[222]107                       double &z, std::string velUnits);
108double coordToVel(struct wcsprm *wcs, const double coord, std::string outputUnits);
109double velToCoord(struct wcsprm *wcs, const float velocity, std::string outputUnits);
[3]110
[56]111// FILTER SMOOTHING ROUTINES
112void waveletSmooth(int dim,float *array, int arraySize, float sigma);
113void hanningSmooth(float *array, int arraySize, int hanningSize);
114void tophatSmooth(float *array, int arraySize, int width);
[3]115
[621]116float *medianBaseline(float *inputArray, int dim, unsigned int boxWidth);
117
[733]118// STRING AND INPUT PARAMETER MANIPULATION ROUTINES
119std::string makelower( std::string s );
120std::string stringize(bool b);
121bool boolify(std::string s);
122std::string readSval(std::stringstream& ss);
123std::string readFilename(std::stringstream& ss);
124bool readFlag(std::stringstream& ss);
125float readFval(std::stringstream& ss);
126int readIval(std::stringstream& ss);
127std::string removeLeadingBlanks(std::string s);
128std::string deblank(std::string s);
[621]129
[3]130#endif
Note: See TracBrowser for help on using the repository browser.