source: trunk/src/Plotting/SimpleSpectralPlot.hh

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

Fixing a typo that the mac's case-insensitive nature didn't pick up!

File size: 2.3 KB
Line 
1// -----------------------------------------------------------------------
2// SimpleSpectralPlot.hh: Definition of the class producing a single spectral plot
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 SIMPLE_SPECTRALPLOT_H
29#define SIMPLE_SPECTRALPLOT_H
30
31#include <string>
32#include <duchamp/Plotting/SpectralPlot.hh>
33#include <duchamp/fitsHeader.hh>
34
35namespace duchamp
36{
37
38    namespace Plot
39    {
40
41
42        class SimpleSpectralPlot : public SpectralPlot
43        {
44        public:
45            SimpleSpectralPlot();    ///< Constructor
46            virtual ~SimpleSpectralPlot(){}; ///< Destructor
47            SimpleSpectralPlot(const SimpleSpectralPlot& p);
48            SimpleSpectralPlot& operator=(const SimpleSpectralPlot& p);
49
50            /// @brief Set up PGPLOT output.
51            int setUpPlot(std::string pgDestination);
52
53            /// @brief Write the labels
54            void label(std::string xlabel, std::string ylabel, std::string title);
55
56            /// @brief Set up main spectral plotting region.
57            void gotoMainSpectrum(float x1, float x2, float y1, float y2);
58
59            /// @brief Draw a line indicating the pixels that have been detected
60            void markDetectedPixels(short *detectMap, size_t size, FitsHeader &head);
61
62        };
63
64    }
65
66}
67
68#endif
Note: See TracBrowser for help on using the repository browser.