source: trunk/src/Cubes/cubeUtils.hh

Last change on this file was 1393, checked in by MatthewWhiting, 10 years ago

A large changeset that moves all use of bool arrays (ie. bool *) to std::vector<bool>. This will be a bit safer, plus potentially cheaper in memory usage. Interfaces to all stats functions with masks have changed accordingly, as well as the Gaussian smoothing functions and some spectral utility functions.

File size: 3.0 KB
RevLine 
[463]1// -----------------------------------------------------------------------
2// cubeUtils.hh: Utility functions that are not members of classes
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 CUBEUTILS_H
29#define CUBEUTILS_H
30
31#include <iostream>
32#include <string>
33#include <vector>
34
35#include <duchamp/duchamp.hh>
36#include <duchamp/fitsHeader.hh>
37#include <duchamp/Detection/detection.hh>
38#include <duchamp/Cubes/cubes.hh>
[1242]39#include <duchamp/Plotting/SpectralPlot.hh>
40#include <duchamp/Plotting/SimpleSpectralPlot.hh>
[463]41
42namespace duchamp
43{
44
45  //////////////////////////////////////////////////////////////
46  // Prototypes for functions that use assorted Duchamp classes
47  //////////////////////////////////////////////////////////////
48
[528]49  /// @brief Draw the edge of the BLANK region on a map.
[884]50  void drawBlankEdges(float *dataArray, size_t xdim, size_t ydim, Param &par);
[463]51
52  // In Cubes/spectraUtils.cc
[884]53  void getSpecAbscissae(Detection &object, FitsHeader &head, size_t zdim, float *output);
54  void getSpecAbscissae(FitsHeader &head, float xpt, float ypt, size_t zdim, float *output);
[1269]55  // void getIntSpec(Detection &object, float *fluxArray, size_t *dimArray, std::vector<bool> mask, float beamCorrection, float *output);
[1393]56  void getIntSpec(Detection &object, float *fluxArray, size_t *dimArray, std::vector<bool> mask, float beamCorrection, float *output);
57  void getPeakSpec(Detection &object, float *fluxArray, size_t *dimArray, std::vector<bool> mask, float *output);
[998]58  void getSmallVelRange(Detection &obj, FitsHeader &head, double *minvel, double *maxvel);
59  void getSmallZRange(Detection &obj, double *minz, double *maxz);
[463]60
[998]61  // In Cubes/plotting.cc
[985]62  void drawSpectralRange(Plot::SpectralPlot &plot, Detection &obj, FitsHeader &head);
63  void drawSpectralRange(Plot::SimpleSpectralPlot &plot, Detection &obj, FitsHeader &head);
64
[463]65}
66
67#endif
68
Note: See TracBrowser for help on using the repository browser.