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

Last change on this file since 987 was 985, checked in by MatthewWhiting, 12 years ago

Ticket #148: Enabling output of the spectrum highlighting the detections that have been made, as well as the final objects. This is to replace the moment map output that is not possible in 1D mode. Some functions
have been moved around (from outputSpectra to spectraUtils) and a new class added to plots.hh

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