Gyoto
GyotoSpectrometer.h
Go to the documentation of this file.
1 
8 /*
9  Copyright 2011-2016 Thibaut Paumard
10 
11  This file is part of Gyoto.
12 
13  Gyoto is free software: you can redistribute it and/or modify
14  it under the terms of the GNU General Public License as published by
15  the Free Software Foundation, either version 3 of the License, or
16  (at your option) any later version.
17 
18  Gyoto is distributed in the hope that it will be useful,
19  but WITHOUT ANY WARRANTY; without even the implied warranty of
20  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  GNU General Public License for more details.
22 
23  You should have received a copy of the GNU General Public License
24  along with Gyoto. If not, see <http://www.gnu.org/licenses/>.
25  */
26 
27 #ifndef __GyotoSpectrometer_H_
28 #define __GyotoSpectrometer_H_
29 
30 #include <GyotoDefs.h>
31 #include <GyotoSmartPointer.h>
32 #include <GyotoObject.h>
33 #include <GyotoRegister.h>
34 #include <GyotoHooks.h>
35 #include <string>
36 
50 namespace Gyoto{
51  namespace Register { class Entry; }
52  class FactoryMessenger;
53  namespace Spectrometer {
71  class Generic;
72 
85  typedef char const * kind_t;
86 
96  Subcontractor_t(Gyoto::FactoryMessenger*, std::vector<std::string> const &);
98 
120  std::vector<std::string> &plugins,
121  int errmode = 0);
122 
133  (FactoryMessenger* fmp, std::vector<std::string> const &plugins) {
134  SmartPointer<T> spectro = new T();
135  spectro -> plugins(plugins);
136 #ifdef GYOTO_USE_XERCES
137  if (fmp) spectro -> setParameters(fmp);
138 #endif
139  return spectro;
140  }
141 
150 
156  void initRegister();
157 
177  void Register(std::string name, Gyoto::Spectrometer::Subcontractor_t* scp);
178 
179  }
180 }
181 
183 : public Gyoto::SmartPointee,
184  public Gyoto::Object,
185  public Gyoto::Hook::Teller
186 {
187  friend class Gyoto::SmartPointer<Gyoto::Spectrometer::Generic>;
188  protected:
197  kind_t kindid_;
198  public:
199  size_t nsamples_;
200  size_t nboundaries_;
201 
217  double* boundaries_;
218 
224  size_t* chanind_;
225 
231  double* midpoints_;
232 
238  double* widths_;
239 
240  public:
241  GYOTO_OBJECT;
242 
248  Generic();
249 
270  Generic(kind_t kindid);
271 
277  Generic(const Generic& ) ;
278 
292  virtual Generic * clone() const =0;
293 
299  virtual ~Generic();
300 
315  virtual kind_t kindid() const ;
316 
337  virtual void kindid(kind_t) ;
338 
339  virtual size_t nSamples() const ;
340  virtual size_t getNBoundaries() const ;
341  virtual double const * getMidpoints() const ;
342 
347  virtual void getMidpoints( double data[], std::string unit);
353  virtual void getChannelBoundaries( double data[], std::string unit);
354  virtual double const * getChannelBoundaries() const ;
355  virtual size_t const * getChannelIndices() const ;
356  virtual double const * getWidths() const ;
357 
367  virtual void getWidths( double data[], std::string unit);
368 
369 };
370 
371 
372 #endif
#define GYOTO_OBJECT
Declare class::properties and class::getProperties()
Definition: GyotoObject.h:84
Gyoto registers.
Tellers tell Listeners when they mutate.
Reference-counting pointers.
void Register(std::string name, Gyoto::Spectrometer::Subcontractor_t *scp)
Register a new Spectrometer kind.
SmartPointer< Gyoto::Spectrometer::Generic > Subcontractor_t(Gyoto::FactoryMessenger *, std::vector< std::string > const &)
A function to build instances of a specific Astrobj::Generic sub-class.
Definition: GyotoSpectrometer.h:96
#define size_t
If not defined in <sys/types.h>.
Definition: GyotoConfig.h:354
Factory / SmartPointee::Subcontractor_t interface.
Definition: GyotoFactoryMessenger.h:92
char const * kind_t
Type for Spectrometer kind.
Definition: GyotoSpectrometer.h:71
Gyoto::Spectrometer::Subcontractor_t * getSubcontractor(std::string name, std::vector< std::string > &plugins, int errmode=0)
Query the Spectrometer register.
Gyoto ubiquitous macros and typedefs.
Introspectable objects.
Namespace for the Gyoto library.
Definition: GyotoAstrobj.h:43
Can be pointed to by a SmartPointer.
Definition: GyotoSmartPointer.h:80
void initRegister()
Initialize the Spectrometer register This must be called once. It initializes Register_ and registers...
Gyoto::Register::Entry * Register_
The Spectrometer register.
SmartPointer< Spectrometer::Generic > Subcontractor(FactoryMessenger *fmp, std::vector< std::string > const &plugins)
A template for Subcontractor_t functions.
Definition: GyotoSpectrometer.h:133
Object with properties.
Definition: GyotoObject.h:151
Listen to me and I&#39;ll warn you when I change.
Definition: GyotoHooks.h:82
Base class for spectrometers.
Definition: GyotoSpectrometer.h:182
Entry in a register (or a full register)
Definition: GyotoRegister.h:94