source: trunk/src/Outputs/KarmaAnnotationWriter.hh @ 1075

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

Improved parameter output for the annotation files. Tidying up the VOParam & VOField classes, and adding some documentation comments.

File size: 2.7 KB
RevLine 
[1072]1// -----------------------------------------------------------------------
2// KarmaAnnotationWriter.hh: Class for writing results to karma annotation files.
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 DUCHAMP_KARMA_ANNOTATION_WRITER_H_
29#define DUCHAMP_KARMA_ANNOTATION_WRITER_H_
30#include <duchamp/Outputs/AnnotationWriter.hh>
31#include <duchamp/Outputs/CatalogueWriter.hh>
32#include <duchamp/Outputs/FileCatalogueWriter.hh>
33#include <duchamp/Detection/detection.hh>
34#include <ios>
35#include <iostream>
36#include <fstream>
37#include <string>
38
39namespace duchamp {
40
41  class KarmaAnnotationWriter : public AnnotationWriter
42  {
43  public:
[1075]44    /// @brief Default constructor
[1072]45    KarmaAnnotationWriter();
[1075]46    /// @brief Constructor with given filename
[1072]47    KarmaAnnotationWriter(std::string name);
[1075]48    /// @brief Copy constructor
[1072]49    KarmaAnnotationWriter(const KarmaAnnotationWriter& other);
[1075]50    /// @brief Copy operator
[1072]51    KarmaAnnotationWriter& operator= (const KarmaAnnotationWriter& other);
[1075]52    /// @brief Default destructor
[1072]53    virtual ~KarmaAnnotationWriter(){};
54
[1075]55    /// @brief Write the global properties for the file (colour, WCS info, ...)
[1072]56    void writeTableHeader();
57
[1075]58    /// @brief Annotate with a text string
[1074]59    void text(double x, double y, std::string text);
[1075]60    /// @brief Annotate with a single line
[1074]61    void line(double x1, double x2, double y1, double y2);
[1075]62    /// @brief Annotate with a circle
[1074]63    void circle(double x, double y, double r);
[1075]64    /// @brief Annotate with an ellipse
[1074]65    void ellipse(double x, double y, double r1, double r2, double angle);
[1072]66
67  };
68
69}
70
71#endif
72
Note: See TracBrowser for help on using the repository browser.