source: tags/release-1.2.2/src/Utils/utils.hh

Last change on this file was 907, checked in by MatthewWhiting, 12 years ago

Ticket #134: enabling the specification of precision for decToDMS. Also setting that precision to be 1/10th of the pixel width, rounded down to the nearest multiple of 10. RA gets one additional decimal place.

File size: 6.4 KB
Line 
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// -----------------------------------------------------------------------
28#ifndef UTILS_H
29#define UTILS_H
30
31#include <wcslib/wcs.h>
32#include <string>
33
34struct wcsprm; // just foreshadow this.
35
36// define the speed of light for WCS-related accessor functions
37const float C_kms = 299792.458;
38
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);
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);
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);
47
48// STATISTICS-RELATED ROUTINES
49template <class T> T absval(T value);
50template <class T> void findMinMax(const T *array, const size_t size,
51                                   T &min, T &max);
52template <class T> float findMean(T *array, size_t size);
53template <class T> float findMean(T *array, bool *mask, size_t size);
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);
56template <class T> float findStddev(T *array, size_t size);
57template <class T> float findStddev(T *array, bool *mask, size_t size);
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);
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);
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);
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);
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);
72template <class T> void findMedianStats(T *array, size_t size,
73                                        T &median, T &madfm);
74template <class T> void findMedianStats(T *array, size_t size, bool *isGood,
75                                        T &median, T &madfm);
76template <class T> void findNormalStats(T *array, size_t size,
77                                        float &mean, float &stddev);
78template <class T> void findNormalStats(T *array, size_t size, bool *isGood,
79                                        float &mean, float &stddev);
80template <class T> void findAllStats(T *array, size_t size,
81                                     float &mean, float &stddev,
82                                     T &median, T &madfm);
83template <class T> void findAllStats(T *array, size_t size, bool *mask,
84                                     float &mean, float &stddev,
85                                     T &median, T &madfm);
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);
90
91
92// POSITION-RELATED ROUTINES
93std::string getIAUNameEQ(double ra, double dec, float equinox);
94std::string getIAUNameGAL(double ra, double dec);
95std::string decToDMS(double dec, std::string type, int decPrecision=2);
96double dmsToDec(std::string dms);
97double angularSeparation(double &ra1, double &dec1, double &ra2, double &dec2);
98
99// WCS-RELATED ROUTINES
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,
103                  double *pix, const int npts);
104int pixToWCSMulti(struct wcsprm *wcs, const double *pix,
105                  double *world, const int npts);
106double pixelToVelocity(struct wcsprm *wcs, double &x, double &y,
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);
110
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);
115
116float *medianBaseline(float *inputArray, int dim, unsigned int boxWidth);
117
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);
129
130#endif
Note: See TracBrowser for help on using the repository browser.