|
virtual Property const * | getProperties () const |
| Get list of properties. More...
|
|
| ThermalSynchrotron (const ThermalSynchrotron &) |
|
virtual ThermalSynchrotron * | clone () const |
| Cloner. More...
|
|
virtual double | operator() (double nu) const |
|
virtual double | operator() (double nu, double, double ds) const |
|
double | temperature () const |
|
void | temperature (double tt) |
|
double | numberdensityCGS () const |
|
void | numberdensityCGS (double rho) |
|
double | angle_B_pem () const |
|
void | angle_B_pem (double rho) |
|
double | cyclotron_freq () const |
|
void | cyclotron_freq (double rho) |
|
bool | angle_averaged () const |
|
void | angle_averaged (bool ang) |
|
double | besselK2 () const |
|
void | besselK2 (double bessel) |
|
double | jnuCGS (double nu) const |
|
double | jQnuCGS (double nu) const |
|
double | jUnuCGS (double nu) const |
|
double | jVnuCGS (double nu) const |
|
double | alphanuCGS (double nu) const |
|
double | alphaQnuCGS (double nu) const |
|
double | alphaUnuCGS (double nu) const |
|
double | alphaVnuCGS (double nu) const |
|
double | rQnuCGS (double nu) const |
|
double | rUnuCGS (double nu) const |
|
double | rVnuCGS (double nu) const |
|
void | radiativeQ (double jnu[], double anu[], double const nu_ems[], size_t nbnu) |
|
void | radiativeQ (double jInu[], double jQnu[], double jUnu[], double jVnu[], double aInu[], double aQnu[], double aUnu[], double aVnu[], double rQnu[], double rUnu[], double rVnu[], double const nu_ems[], size_t nbnu) |
|
virtual double | integrate (double nu1, double nu2) |
| Integrate optically thick I_nu. More...
|
|
virtual double | integrate (double nu1, double nu2, const Spectrum::Generic *opacity, double ds) |
| Integrate optically thin I_nu. More...
|
|
void | incRefCount () |
| Increment the reference counter. Warning: Don't mess with the counter.
|
|
int | decRefCount () |
| Decrement the reference counter and return current value. Warning: Don't mess with the counter.
|
|
int | getRefCount () |
| Get the current number of references.
|
|
virtual bool | isThreadSafe () const |
| Whether this class is thread-safe. More...
|
|
virtual void | set (Property const &p, Value val) |
| Set Value of a Property.
|
|
virtual void | set (Property const &p, Value val, std::string const &unit) |
| Set Value (expressed in unit) of a Property.
|
|
virtual void | set (std::string const &pname, Value val) |
| Set Value of a Property.
|
|
virtual void | set (std::string const &pname, Value val, std::string const &unit) |
| Set Value (expressed in unit) of a Property.
|
|
virtual Value | get (Property const &p) const |
| Get Value of a Property.
|
|
virtual Value | get (std::string const &pname) const |
| Get Value of a Property.
|
|
virtual Value | get (Property const &p, std::string const &unit) const |
| Get Value of a Property, converted to unit.
|
|
virtual Value | get (std::string const &pname, std::string const &unit) const |
| Get Value of a Property, converted to unit.
|
|
Property const * | property (std::string const pname) const |
| Find property by name. More...
|
|
virtual void | fillProperty (Gyoto::FactoryMessenger *fmp, Property const &p) const |
| Output a single Property to XML. More...
|
|
virtual void | fillElement (Gyoto::FactoryMessenger *fmp) const |
| Fill the XML element for this Object. More...
|
|
virtual void | setParameters (Gyoto::FactoryMessenger *fmp) |
| Main loop for parsing Properties from XML description. More...
|
|
virtual int | setParameter (std::string name, std::string content, std::string unit) |
| Set parameter by name. More...
|
|
virtual void | setParameter (Gyoto::Property const &p, std::string const &name, std::string const &content, std::string const &unit) |
| Set parameter by Property (and name) More...
|
|
std::string | describeProperty (Gyoto::Property const &p) const |
| Format desrciption for a property. More...
|
|
void | help () const |
| Print (to stdout) some help on this class. More...
|
|
virtual std::string | kind () const |
| Get kind_. More...
|
|
Thermal synchrotron spectrum.
Example XML entity:
<Spectrum
kind=
"ThermalSynchrotron">
</Spectrum>
virtual std::string kind() const
Get kind_.
Output a single Property to XML.
The base implementation decides what to do based on the p.type. The format matches how setParameters() an setParameter() would interpret the XML descition.
Overriding this method should be avoided, but makes sense in some cases (for instance Screen::fillProperty() selects a different unit for Distance based on its magnitude, so that stellar sizes are expressed in solar radii while smaller sizes can be expressed in meters and larger sizes in parsecs).
Overriding implementation should fall-back on calling the implementation in the direct parent class:
class B: public A {
using B::setParameter;
};
if (name=="Duff") fmp->doSomething();
else A::fillProperty(fmp, p);
}
Factory / SmartPointee::Subcontractor_t interface.
Definition: GyotoFactoryMessenger.h:92
Object with properties.
Definition: GyotoObject.h:152
virtual void fillProperty(Gyoto::FactoryMessenger *fmp, Property const &p) const
Output a single Property to XML.
Property that can be set and got using standard methods.
Definition: GyotoProperty.h:608
Reimplemented in Gyoto::Scenery, Gyoto::Astrobj::DirectionalDisk, Gyoto::Astrobj::Disk3D, Gyoto::Astrobj::DynamicalDisk, Gyoto::Astrobj::EquatorialHotSpot, Gyoto::Astrobj::NeutronStarModelAtmosphere, Gyoto::Astrobj::PatternDisk, Gyoto::Astrobj::PolishDoughnut, Gyoto::Screen, Gyoto::Metric::Shift, Gyoto::Astrobj::Star, Gyoto::Spectrometer::Uniform, and Gyoto::Astrobj::XillverReflection.
virtual bool Gyoto::Object::isThreadSafe |
( |
| ) |
const |
|
virtualinherited |
Whether this class is thread-safe.
Return True if this object is thread-safe, i.e. if an instance and its clone can be used in parallel threads (in the context of Scenery::raytrace()). Known objects which are not thread-safe include Lorene metrics and everything from the Python plug-in.
The default implementation considers that the class itself is thread safe and recurses into the declared properties to check whether they are safe too. Classes that abide to the Object/Property paradigm and are themselves thread-safe have nothing special to do.
Objects that clone children in their copy constructor that are not declared as properties must take these children into account.
Classes that are never thread-safe must declare it. It acn be easily done using GYOTO_OBJECT_THREAD_SAFETY in the class declaration and GYOTO_PROPERTY_THREAD_UNSAFE in the class definition.
Main loop for parsing Properties from XML description.
This function queries the FactoryMessenger for elements to parse,
and tries to matche each element to a Property to set it
accordingly.
Any class that tries to be buildable from XML must supply a
subcontractor (for base classes such as Metric, Astrobj, Spectrum
and Spectrometer, it is done as a template that must be
specialized for each class).
This subcontractor typically looks somewhat like this:
return gg;
}
virtual void setParameters(Gyoto::FactoryMessenger *fmp)
Main loop for parsing Properties from XML description.
Pointers performing reference counting.
Definition: GyotoSmartPointer.h:135
SmartPointer< Astrobj::Generic > Subcontractor(FactoryMessenger *fmp, std::vector< std::string > const &plugin)
A template for Subcontractor_t functions.
Definition: GyotoAstrobj.h:77
Although this is discouraged, it is possible to override the
following functions to customize how XML entities are parsed:
- setParameters() if low-level access to the
FactoryMessenger is required;
- setParameter(std::string name,
std::string content,
std::string unit)
to interpret an entity that does not match a Property
(e.g. alternative name);
- setParameter(Gyoto::Property const &p,
std::string const &name,
std::string const &content,
std::string const &unit)
to change how a Property is interpreted.
Reimplemented in Gyoto::Astrobj::Generic, Gyoto::Astrobj::Complex, Gyoto::Metric::Complex, Gyoto::Spectrometer::Complex, Gyoto::Astrobj::EquatorialHotSpot, Gyoto::Photon, Gyoto::Metric::Shift, Gyoto::Astrobj::Star, Gyoto::Spectrometer::Uniform, and Gyoto::Astrobj::OscilTorus.