source: tags/release-1.2/src/Utils/VOParam.cc @ 1391

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

Writing out bool flags as boolean type in the VOTable.

File size: 3.9 KB
Line 
1// -----------------------------------------------------------------------
2// VOParam.cc: Output of the detected objects 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#include <iostream>
30#include <sstream>
31#include <duchamp/Utils/VOParam.hh>
32
33namespace duchamp {
34
35  VOParam::VOParam()
36  {
37  }
38 
39  template <class T> VOParam::VOParam(std::string n, std::string U, std::string d, T v, int w, std::string u):
40    name(n),UCD(U),datatype(d),width(w),units(u)
41  {
42    /// @details
43    /// A basic definition function, defining each parameter
44    /// individually. The value (v) is written to a stringstream, and
45    /// from there stored as a string.
46    /// \param n The name
47    /// \param U The UCD
48    /// \param d The datatype
49    /// \param v The value
50    /// \param w The width
51    /// \param u The units
52
53    // this->name = n;
54    // this->UCD = U;
55    // this->datatype = d;
56    // this->width = w;
57    std::stringstream ss;
58    ss << v;
59    this->value = ss.str();
60    // this->units = u;
61  }
62  template VOParam::VOParam(std::string n, std::string U, std::string d, bool v, int w, std::string u);
63  template VOParam::VOParam(std::string n, std::string U, std::string d, int v, int w, std::string u);
64  template VOParam::VOParam(std::string n, std::string U, std::string d, unsigned int v, int w, std::string u);
65  template VOParam::VOParam(std::string n, std::string U, std::string d, long v, int w, std::string u);
66  template VOParam::VOParam(std::string n, std::string U, std::string d, float v, int w, std::string u);
67  template VOParam::VOParam(std::string n, std::string U, std::string d, double v, int w, std::string u);
68  template VOParam::VOParam(std::string n, std::string U, std::string d, std::string v, int w, std::string u);
69
70  VOParam::VOParam(const VOParam& other)
71  {
72    operator=(other);
73  }
74
75  VOParam& VOParam::operator= (const VOParam& other)
76  {
77    if(this==&other) return *this;
78    this->name = other.name;
79    this->UCD = other.UCD;
80    this->datatype=other.datatype;
81    this->width = other.width;
82    this->value = other.value;
83    this->units = other.units;
84    return *this;
85  }
86 
87
88  void VOParam::printParam(std::ostream &stream)
89  {
90    /// @details
91    /// Print the Param entry with appropriate formatting.
92    /// \param stream The output stream to send the text to.
93
94    stream << "<PARAM name=\"" <<this->name
95           << "\" ucd=\"" << this->UCD
96           << "\" datatype=\"" << this->datatype;
97    if(this->units!="")
98      stream << "\" units=\"" << this->units;
99    if(this->width!=0){
100      if(datatype=="char")
101        stream << "\" arraysize=\"" << this->width;
102      else
103        stream << "\" width=\"" << this->width;
104    }
105    stream << "\" value=\"" << this->value
106           << "\"/>\n";
107  }
108
109  //------------------------------------------------
110
111
112
113}
Note: See TracBrowser for help on using the repository browser.