source: trunk/src/Cubes/cubeUtils.hh @ 1242

Last change on this file since 1242 was 1242, checked in by MatthewWhiting, 11 years ago

Tickets #193 & #195 - Implementing channel flagging. Still a lot of commented-out code, plus the MW code is still present (although not used anywhere). Also making use of the new plotting classes.

File size: 2.8 KB
Line 
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>
39#include <duchamp/Plotting/SpectralPlot.hh>
40#include <duchamp/Plotting/SimpleSpectralPlot.hh>
41
42namespace duchamp
43{
44
45  //////////////////////////////////////////////////////////////
46  // Prototypes for functions that use assorted Duchamp classes
47  //////////////////////////////////////////////////////////////
48
49  /// @brief Draw the edge of the BLANK region on a map.
50  void drawBlankEdges(float *dataArray, size_t xdim, size_t ydim, Param &par);
51
52  // In Cubes/spectraUtils.cc
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);
55  void getIntSpec(Detection &object, float *fluxArray, size_t *dimArray, std::vector<bool> mask, float beamCorrection, float *output);
56  void getPeakSpec(Detection &object, float *fluxArray, size_t *dimArray, bool *mask, float *output);
57  void getSmallVelRange(Detection &obj, FitsHeader &head, double *minvel, double *maxvel);
58  void getSmallZRange(Detection &obj, double *minz, double *maxz);
59
60  // In Cubes/plotting.cc
61  void drawSpectralRange(Plot::SpectralPlot &plot, Detection &obj, FitsHeader &head);
62  void drawSpectralRange(Plot::SimpleSpectralPlot &plot, Detection &obj, FitsHeader &head);
63
64}
65
66#endif
67
Note: See TracBrowser for help on using the repository browser.