Gyoto
GyotoDynamicalDiskBolometric.h
Go to the documentation of this file.
1 
8 /*
9  Copyright 2013, 2018 Frederic Vincent, 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 __GyotoDynamicalDiskBolometric_H_
28 #define __GyotoDynamicalDiskBolometric_H_
29 
30 #include <iostream>
31 #include <fstream>
32 #include <iomanip>
33 #include <cstring>
34 
35 namespace Gyoto{
36  namespace Astrobj { class DynamicalDiskBolometric; }
37 }
38 
39 //#include <GyotoMetric.h>
40 #include <GyotoDynamicalDisk.h>
41 
51 : public Astrobj::DynamicalDisk {
53  private:
54 
55  // Constructors - Destructor
56  // -------------------------
57  public:
59 
61 
62  DynamicalDiskBolometric(const DynamicalDiskBolometric& ) ;
63  virtual DynamicalDiskBolometric* clone () const;
64 
65  virtual ~DynamicalDiskBolometric() ;
66 
67  double emission(double nu_em, double dsem,
68  state_t const &,
69  double const coord_obj[8]) const;
70 
71  double bolometricEmission(double dsem, state_t const & cph, double const coord_obj[8]) const;
72 
73  void processHitQuantities(Photon* ph,
74  state_t const &coord_ph_hit,
75  double const *coord_obj_hit, double dt,
76  Properties* data) const;
77 };
78 
79 #endif
#define GYOTO_OBJECT
Declare class::properties and class::getProperties()
Definition: GyotoObject.h:84
A geometrically thin, optically thick disk, evolving dynamically.
Geometrically thin disk read from a set of FITS files.
Definition: GyotoDynamicalDisk.h:50
Geometrically thin disk read from a set of FITS files.
Definition: GyotoDynamicalDiskBolometric.h:50
void processHitQuantities(Photon *ph, state_t const &coord_ph_hit, double const *coord_obj_hit, double dt, Properties *data) const
Fills Astrobj::Properties.
double emission(double nu_em, double dsem, state_t const &, double const coord_obj[8]) const
Specific intensity Iν
Namespace for the Gyoto library.
Definition: GyotoAstrobj.h:43
virtual DynamicalDiskBolometric * clone() const
Cloner.
Pointers performing reference counting.
Definition: GyotoProperty.h:45