source: tags/release-1.2/src/Utils/VOField.hh @ 1391

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

Forgot to add VOField!

File size: 2.8 KB
Line 
1// -----------------------------------------------------------------------
2// VOField.hh: Specification of a field for output to a VOTable
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
29#ifndef VOFIELD_HH
30#define VOFIELD_HH
31
32#include <iostream>
33#include <sstream>
34#include <fstream>
35#include <iomanip>
36#include <string>
37#include <vector>
38#include <time.h>
39#include <duchamp/param.hh>
40#include <duchamp/fitsHeader.hh>
41#include <duchamp/Cubes/cubes.hh>
42#include <duchamp/Detection/detection.hh>
43#include <duchamp/Detection/columns.hh>
44 
45
46namespace duchamp
47{
48
49  ///  @brief A class that holds information for a <FIELD > entry in a
50  ///  VOTable.
51  ///  @details It also provides useful functions to store and print
52  ///  that information.
53
54  class VOField
55  {
56  public:
57    VOField();
58    /// @brief Define a FIELD for a particular Column::Col object 
59    VOField(Column::Col);
60    VOField(const VOField& other);
61    VOField& operator= (const VOField& other);
62    virtual ~VOField(){};
63
64    /// @brief Define a FIELD by individual parameters
65    void define(std::string i, std::string n, std::string U, std::string u, std::string d, std::string r, int w, int p);
66    /// @brief Define a FIELD by individual parameters, using a Column::Col object
67    void define(Column::Col column, std::string i, std::string U, std::string d, std::string r);
68
69    void setUCD(std::string u){UCD=u;};
70
71    /// @brief Print the FIELD entry
72    void printField(std::ostream &stream);
73   
74  private:
75    std::string ID;
76    std::string name;
77    std::string UCD;
78    std::string units;
79    std::string datatype;
80    std::string ref;
81    int width;
82    int precision;
83
84  };
85
86}
87
88#endif //VOFIELD_HH
Note: See TracBrowser for help on using the repository browser.