diff --git a/ChangeLog b/ChangeLog index d0a3e095..995bffe8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,133 @@ commit unknown Author: Thibaut Paumard -Date: Fri Aug 3 09:10:24 2019 +0200 +Date: Fri Sep 27 16:03:01 2019 +0200 + + Releasing 1.3.6 + +commit 703ead1f392b1ff2c92fbba04d566c4f5b6dd2da +Author: Thibaut Paumard +Date: Fri Sep 27 16:02:00 2019 +0200 + + Fix copy constructor of RezzollaZhidenko and PolishDoughnut + +commit 3ee9b4e25f26c65ab162d64c61a5bcd66c86a78f +Author: Thibaut Paumard +Date: Tue Sep 10 10:25:36 2019 +0200 + + GyotoDefs.h: give derived constants to machine precision + + Some constants like GYOTO_G_OVER_C_SQUARED where only given to the same + precision as the constant they derive from (GYOTO_G in this case). + + While it is correct that e.g. G is known only to 1e5, mixiin guses of GYOTO_G + and GYOTO_G_OVER_C_SQUARED both specified only to that precision leads to + additional errors. GYOTO_G_OVER_C_SQUARE, GYOTO_G_OVER_C_SQUARE_CGS, + GYOTO_PLANCK_OVER_C_SQUARE and GYOTO_PLANCK_OVER_BOLTZMANN are now given with + many more places so that GYOTO_G/GYOTO_G_OVER_C_SQUARE actually yields GYOTO_C^2. + +commit a60e859cfc4ecbf7768b519c7b59e565ac5676c8 +Author: Thibaut Paumard +Date: Fri Sep 27 14:37:09 2019 +0200 + + Fix example.py after changing Worldline.getCoord + +commit f277f6ebf3cc3810c7b56bd0b779540723272545 +Author: Thibaut Paumard +Date: Sun Aug 25 19:32:33 2019 +0200 + + gyoto.util: make getCoord(double t, stat_t coord) work again + +commit 0dda0c96b3d35725f8221a40305c727128480e5c +Author: Thibaut Paumard +Date: Fri Aug 16 09:32:15 2019 +0200 + + Python: make sure Worldline.getCoord works both with NumPy and C arrays + +commit 3277ebedd6d095a6f85c928ced59a680f8e90337 +Author: Thibaut Paumard +Date: Thu Aug 15 22:35:51 2019 +0200 + + Python: make sure Worldline.getCartesian works both with NumPy and C arrays + +commit 11b1a6016db823a39d42f993432a8271aee86ede +Author: Thibaut Paumard +Date: Thu Aug 15 09:01:36 2019 +0200 + + gyoto.util.rayTrace: return arrays or the right dimension + + if j and/or i are scalars, decrease dimension of output arrays + +commit e1209889d5511fe9061f7c25155578a44f76e73c +Author: Thibaut Paumard +Date: Wed Aug 14 21:22:25 2019 +0200 + + gyoto.util.rayTrace: reorder parameters + + The order j, i is more Pythonic than i.j. This ways, + sc[j, i]['Quantity'] == sc[:,:]['Quantity'][j,i]. + + Having height and width last allows writing: + sc[j, i, core.Bucket, None] + skipping height and width to remove progress output. + +commit c4af46c430bb0cd73c6230571d3530146b0f126d +Author: Thibaut Paumard +Date: Wed Aug 14 14:31:42 2019 +0200 + + Gyoto::Screen::Coord1dSet: copy beffur in Indices and Angles + + Much safer in Python + +commit 6614509bccc4937123963c96011af8955fa04a51 +Author: Thibaut Paumard +Date: Sun Aug 11 14:07:43 2019 +0200 + + gyoto.util: improve doc comments + +commit f92a846193e3bd3cfa2adc5a04371d82b5158156 +Author: Thibaut Paumard +Date: Sun Aug 11 14:00:19 2019 +0200 + + gyoto.util.rayTrace/Scenery_getitem: improve dimensionality + + - Scenery_getitem accepts all rayTrace parameters + - return 1D array when the Coord2dSet is 1D + +commit 18d2c3dfd3cd53e228b8ed0c91572a6232c07d04 +Author: Thibaut Paumard +Date: Sun Aug 11 07:53:12 2019 +0200 + + gyoto.util: support angles in rayTrace + +commit 7852e47d204d4b6f87032abc36179a4cb23f479b +Author: Thibaut Paumard +Date: Sun Aug 11 07:45:42 2019 +0200 + + gyoto.core.Scenery: add __getitem__ method + + shortcut for rayTrace + +commit 7d86c285b0b9fb095bbcb102fb39fdc0f96e076d +Author: Thibaut Paumard +Date: Sun Aug 11 07:21:59 2019 +0200 + + gyoto.util.rayTrace: support indices, ranges and list of indices + +commit a0f2db907499a768e9d0c8322bd87386d5326b0a +Author: Thibaut Paumard +Date: Sun Aug 11 06:21:56 2019 +0200 + + gyoto.util.rayTrace: accept paremeters i and j + +commit 049e1daad6fb52b9beb6be40f9778c733b9755c1 +Author: Thibaut Paumard +Date: Fri Aug 9 09:37:16 2019 +0200 + + python: install util.rayTrace as Scenery.rayTrace + +commit bb7ce60adc3c9f476dafb0429b35df57ae99fe0a +Author: Thibaut Paumard +Date: Sat Aug 3 09:13:51 2019 +0200 Releasing 1.3.5 diff --git a/NEWS b/NEWS index 2ed3e268..bca782e9 100644 --- a/NEWS +++ b/NEWS @@ -15,6 +15,10 @@ NEXT ABI * Screen: support changing camera orientation (with dangle1 and dangle2) * Python: new module gyoto.animate to help writing Gyoto-based movies. +1.3.6 2019/09/27 FTR + * Python: improve interface in gyoto.util + * GyotoDefs.h: give derived constants to machine precision + 1.3.5 2019/08/03 BUG * Python: support Python2.7 in gyoto.util.rayTrace diff --git a/configure b/configure index fc77c4de..b5e24f0a 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for Gyoto 1.3.5. +# Generated by GNU Autoconf 2.69 for Gyoto 1.3.6. # # Report bugs to . # @@ -590,8 +590,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='Gyoto' PACKAGE_TARNAME='gyoto' -PACKAGE_VERSION='1.3.5' -PACKAGE_STRING='Gyoto 1.3.5' +PACKAGE_VERSION='1.3.6' +PACKAGE_STRING='Gyoto 1.3.6' PACKAGE_BUGREPORT='gyoto@sympa.obspm.fr' PACKAGE_URL='' @@ -1488,7 +1488,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures Gyoto 1.3.5 to adapt to many kinds of systems. +\`configure' configures Gyoto 1.3.6 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1560,7 +1560,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of Gyoto 1.3.5:";; + short | recursive ) echo "Configuration of Gyoto 1.3.6:";; esac cat <<\_ACEOF @@ -1809,7 +1809,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -Gyoto configure 1.3.5 +Gyoto configure 1.3.6 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2508,7 +2508,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by Gyoto $as_me 1.3.5, which was +It was created by Gyoto $as_me 1.3.6, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3484,7 +3484,7 @@ fi # Define the identity of the package. PACKAGE='gyoto' - VERSION='1.3.5' + VERSION='1.3.6' cat >>confdefs.h <<_ACEOF @@ -21955,7 +21955,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by Gyoto $as_me 1.3.5, which was +This file was extended by Gyoto $as_me 1.3.6, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -22021,7 +22021,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -Gyoto config.status 1.3.5 +Gyoto config.status 1.3.6 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 5caf995e..63895f05 100644 --- a/configure.ac +++ b/configure.ac @@ -10,7 +10,7 @@ dnl without any warranty. AC_PREREQ([2.69]) -AC_INIT([Gyoto], [1.3.5], [gyoto@sympa.obspm.fr]) +AC_INIT([Gyoto], [1.3.6], [gyoto@sympa.obspm.fr]) gyoto_test_CXXFLAGS=${CXXFLAGS+set} gyoto_test_CPPFLAGS=${CPPFLAGS+set} AC_CANONICAL_SYSTEM diff --git a/lib/Makefile.in b/lib/Makefile.in index 8848deb3..dd915403 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -1,7 +1,7 @@ -# Makefile.in generated by automake 1.15.1 from Makefile.am. +# Makefile.in generated by automake 1.16.1 from Makefile.am. # @configure_input@ -# Copyright (C) 1994-2017 Free Software Foundation, Inc. +# Copyright (C) 1994-2018 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -237,7 +237,66 @@ am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -I$(top_builddir)/include depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = ./$(DEPDIR)/Astrobj.Plo \ + ./$(DEPDIR)/ComplexSpectrometer.Plo ./$(DEPDIR)/Converters.Plo \ + ./$(DEPDIR)/Error.Plo ./$(DEPDIR)/Factory.Plo \ + ./$(DEPDIR)/Functors.Plo ./$(DEPDIR)/GridData2D.Plo \ + ./$(DEPDIR)/Hooks.Plo ./$(DEPDIR)/Metric.Plo \ + ./$(DEPDIR)/Object.Plo ./$(DEPDIR)/Photon.Plo \ + ./$(DEPDIR)/Property.Plo ./$(DEPDIR)/Register.Plo \ + ./$(DEPDIR)/Scenery.Plo ./$(DEPDIR)/Screen.Plo \ + ./$(DEPDIR)/SmartPointer.Plo ./$(DEPDIR)/Spectrometer.Plo \ + ./$(DEPDIR)/Spectrum.Plo ./$(DEPDIR)/StandardAstrobj.Plo \ + ./$(DEPDIR)/ThinDisk.Plo ./$(DEPDIR)/UniformSpectrometer.Plo \ + ./$(DEPDIR)/Utils.Plo ./$(DEPDIR)/Value.Plo \ + ./$(DEPDIR)/WIP.Plo ./$(DEPDIR)/Worldline.Plo \ + ./$(DEPDIR)/WorldlineIntegState.Plo \ + ./$(DEPDIR)/libgyoto_lorene_la-LorenePlug.Plo \ + ./$(DEPDIR)/libgyoto_lorene_la-NeutronStar.Plo \ + ./$(DEPDIR)/libgyoto_lorene_la-NeutronStarAnalyticEmission.Plo \ + ./$(DEPDIR)/libgyoto_lorene_la-NeutronStarModelAtmosphere.Plo \ + ./$(DEPDIR)/libgyoto_lorene_la-NumericalMetricLorene.Plo \ + ./$(DEPDIR)/libgyoto_lorene_la-RotStar3_1.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-BlackBodySpectrum.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-Blob.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-ChernSimons.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-ComplexAstrobj.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-DeformedTorus.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-DirectionalDisk.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-Disk3D.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-DynamicalDisk.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-DynamicalDisk3D.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-DynamicalDiskBolometric.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-EquatorialHotSpot.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-FixedStar.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-FlaredDiskSynchrotron.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-Hayward.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-InflateStar.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-Jet.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-KappaDistributionSynchrotronSpectrum.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-KerrBL.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-KerrKS.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-Minkowski.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-OscilTorus.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-PageThorneDisk.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-PatternDisk.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-PatternDiskBB.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-PolishDoughnut.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-PowerLawSpectrum.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-PowerLawSynchrotronSpectrum.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-RezzollaZhidenko.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-Star.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-StarTrace.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-StdPlug.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-ThermalBremsstrahlungSpectrum.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-ThermalSynchrotronSpectrum.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-ThickDisk.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-ThinDiskIronLine.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-ThinDiskPL.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-Torus.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-UniformSphere.Plo \ + ./$(DEPDIR)/libgyoto_stdplug_la-XillverReflection.Plo am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) @@ -569,8 +628,8 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) @@ -671,77 +730,83 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Astrobj.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ComplexSpectrometer.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Converters.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Error.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Factory.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Functors.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GridData2D.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Hooks.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Metric.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Object.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Photon.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Property.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Register.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Scenery.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Screen.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SmartPointer.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Spectrometer.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Spectrum.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StandardAstrobj.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ThinDisk.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/UniformSpectrometer.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Utils.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Value.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/WIP.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Worldline.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/WorldlineIntegState.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_lorene_la-LorenePlug.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_lorene_la-NeutronStar.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_lorene_la-NeutronStarAnalyticEmission.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_lorene_la-NeutronStarModelAtmosphere.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_lorene_la-NumericalMetricLorene.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_lorene_la-RotStar3_1.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-BlackBodySpectrum.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-Blob.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-ChernSimons.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-ComplexAstrobj.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-DeformedTorus.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-DirectionalDisk.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-Disk3D.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-DynamicalDisk.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-DynamicalDisk3D.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-DynamicalDiskBolometric.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-EquatorialHotSpot.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-FixedStar.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-FlaredDiskSynchrotron.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-Hayward.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-InflateStar.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-Jet.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-KappaDistributionSynchrotronSpectrum.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-KerrBL.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-KerrKS.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-Minkowski.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-OscilTorus.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-PageThorneDisk.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-PatternDisk.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-PatternDiskBB.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-PolishDoughnut.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-PowerLawSpectrum.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-PowerLawSynchrotronSpectrum.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-RezzollaZhidenko.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-Star.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-StarTrace.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-StdPlug.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-ThermalBremsstrahlungSpectrum.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-ThermalSynchrotronSpectrum.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-ThickDisk.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-ThinDiskIronLine.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-ThinDiskPL.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-Torus.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-UniformSphere.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-XillverReflection.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Astrobj.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ComplexSpectrometer.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Converters.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Error.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Factory.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Functors.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GridData2D.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Hooks.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Metric.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Object.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Photon.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Property.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Register.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Scenery.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Screen.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SmartPointer.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Spectrometer.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Spectrum.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/StandardAstrobj.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ThinDisk.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/UniformSpectrometer.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Utils.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Value.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/WIP.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Worldline.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/WorldlineIntegState.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_lorene_la-LorenePlug.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_lorene_la-NeutronStar.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_lorene_la-NeutronStarAnalyticEmission.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_lorene_la-NeutronStarModelAtmosphere.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_lorene_la-NumericalMetricLorene.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_lorene_la-RotStar3_1.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-BlackBodySpectrum.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-Blob.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-ChernSimons.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-ComplexAstrobj.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-DeformedTorus.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-DirectionalDisk.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-Disk3D.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-DynamicalDisk.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-DynamicalDisk3D.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-DynamicalDiskBolometric.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-EquatorialHotSpot.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-FixedStar.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-FlaredDiskSynchrotron.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-Hayward.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-InflateStar.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-Jet.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-KappaDistributionSynchrotronSpectrum.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-KerrBL.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-KerrKS.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-Minkowski.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-OscilTorus.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-PageThorneDisk.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-PatternDisk.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-PatternDiskBB.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-PolishDoughnut.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-PowerLawSpectrum.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-PowerLawSynchrotronSpectrum.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-RezzollaZhidenko.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-Star.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-StarTrace.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-StdPlug.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-ThermalBremsstrahlungSpectrum.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-ThermalSynchrotronSpectrum.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-ThickDisk.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-ThinDiskIronLine.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-ThinDiskPL.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-Torus.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-UniformSphere.Plo@am__quote@ # am--include-marker +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgyoto_stdplug_la-XillverReflection.Plo@am__quote@ # am--include-marker + +$(am__depfiles_remade): + @$(MKDIR_P) $(@D) + @echo '# dummy' >$@-t && $(am__mv) $@-t $@ + +am--depfiles: $(am__depfiles_remade) .C.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @@ -1179,7 +1244,10 @@ cscopelist-am: $(am__tagged_files) distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -distdir: $(DISTFILES) +distdir: $(BUILT_SOURCES) + $(MAKE) $(AM_MAKEFLAGS) distdir-am + +distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -1252,7 +1320,77 @@ clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ clean-soverLTLIBRARIES mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/Astrobj.Plo + -rm -f ./$(DEPDIR)/ComplexSpectrometer.Plo + -rm -f ./$(DEPDIR)/Converters.Plo + -rm -f ./$(DEPDIR)/Error.Plo + -rm -f ./$(DEPDIR)/Factory.Plo + -rm -f ./$(DEPDIR)/Functors.Plo + -rm -f ./$(DEPDIR)/GridData2D.Plo + -rm -f ./$(DEPDIR)/Hooks.Plo + -rm -f ./$(DEPDIR)/Metric.Plo + -rm -f ./$(DEPDIR)/Object.Plo + -rm -f ./$(DEPDIR)/Photon.Plo + -rm -f ./$(DEPDIR)/Property.Plo + -rm -f ./$(DEPDIR)/Register.Plo + -rm -f ./$(DEPDIR)/Scenery.Plo + -rm -f ./$(DEPDIR)/Screen.Plo + -rm -f ./$(DEPDIR)/SmartPointer.Plo + -rm -f ./$(DEPDIR)/Spectrometer.Plo + -rm -f ./$(DEPDIR)/Spectrum.Plo + -rm -f ./$(DEPDIR)/StandardAstrobj.Plo + -rm -f ./$(DEPDIR)/ThinDisk.Plo + -rm -f ./$(DEPDIR)/UniformSpectrometer.Plo + -rm -f ./$(DEPDIR)/Utils.Plo + -rm -f ./$(DEPDIR)/Value.Plo + -rm -f ./$(DEPDIR)/WIP.Plo + -rm -f ./$(DEPDIR)/Worldline.Plo + -rm -f ./$(DEPDIR)/WorldlineIntegState.Plo + -rm -f ./$(DEPDIR)/libgyoto_lorene_la-LorenePlug.Plo + -rm -f ./$(DEPDIR)/libgyoto_lorene_la-NeutronStar.Plo + -rm -f ./$(DEPDIR)/libgyoto_lorene_la-NeutronStarAnalyticEmission.Plo + -rm -f ./$(DEPDIR)/libgyoto_lorene_la-NeutronStarModelAtmosphere.Plo + -rm -f ./$(DEPDIR)/libgyoto_lorene_la-NumericalMetricLorene.Plo + -rm -f ./$(DEPDIR)/libgyoto_lorene_la-RotStar3_1.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-BlackBodySpectrum.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-Blob.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-ChernSimons.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-ComplexAstrobj.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-DeformedTorus.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-DirectionalDisk.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-Disk3D.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-DynamicalDisk.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-DynamicalDisk3D.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-DynamicalDiskBolometric.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-EquatorialHotSpot.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-FixedStar.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-FlaredDiskSynchrotron.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-Hayward.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-InflateStar.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-Jet.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-KappaDistributionSynchrotronSpectrum.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-KerrBL.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-KerrKS.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-Minkowski.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-OscilTorus.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-PageThorneDisk.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-PatternDisk.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-PatternDiskBB.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-PolishDoughnut.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-PowerLawSpectrum.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-PowerLawSynchrotronSpectrum.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-RezzollaZhidenko.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-Star.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-StarTrace.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-StdPlug.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-ThermalBremsstrahlungSpectrum.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-ThermalSynchrotronSpectrum.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-ThickDisk.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-ThinDiskIronLine.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-ThinDiskPL.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-Torus.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-UniformSphere.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-XillverReflection.Plo -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -1299,7 +1437,77 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) + -rm -f ./$(DEPDIR)/Astrobj.Plo + -rm -f ./$(DEPDIR)/ComplexSpectrometer.Plo + -rm -f ./$(DEPDIR)/Converters.Plo + -rm -f ./$(DEPDIR)/Error.Plo + -rm -f ./$(DEPDIR)/Factory.Plo + -rm -f ./$(DEPDIR)/Functors.Plo + -rm -f ./$(DEPDIR)/GridData2D.Plo + -rm -f ./$(DEPDIR)/Hooks.Plo + -rm -f ./$(DEPDIR)/Metric.Plo + -rm -f ./$(DEPDIR)/Object.Plo + -rm -f ./$(DEPDIR)/Photon.Plo + -rm -f ./$(DEPDIR)/Property.Plo + -rm -f ./$(DEPDIR)/Register.Plo + -rm -f ./$(DEPDIR)/Scenery.Plo + -rm -f ./$(DEPDIR)/Screen.Plo + -rm -f ./$(DEPDIR)/SmartPointer.Plo + -rm -f ./$(DEPDIR)/Spectrometer.Plo + -rm -f ./$(DEPDIR)/Spectrum.Plo + -rm -f ./$(DEPDIR)/StandardAstrobj.Plo + -rm -f ./$(DEPDIR)/ThinDisk.Plo + -rm -f ./$(DEPDIR)/UniformSpectrometer.Plo + -rm -f ./$(DEPDIR)/Utils.Plo + -rm -f ./$(DEPDIR)/Value.Plo + -rm -f ./$(DEPDIR)/WIP.Plo + -rm -f ./$(DEPDIR)/Worldline.Plo + -rm -f ./$(DEPDIR)/WorldlineIntegState.Plo + -rm -f ./$(DEPDIR)/libgyoto_lorene_la-LorenePlug.Plo + -rm -f ./$(DEPDIR)/libgyoto_lorene_la-NeutronStar.Plo + -rm -f ./$(DEPDIR)/libgyoto_lorene_la-NeutronStarAnalyticEmission.Plo + -rm -f ./$(DEPDIR)/libgyoto_lorene_la-NeutronStarModelAtmosphere.Plo + -rm -f ./$(DEPDIR)/libgyoto_lorene_la-NumericalMetricLorene.Plo + -rm -f ./$(DEPDIR)/libgyoto_lorene_la-RotStar3_1.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-BlackBodySpectrum.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-Blob.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-ChernSimons.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-ComplexAstrobj.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-DeformedTorus.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-DirectionalDisk.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-Disk3D.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-DynamicalDisk.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-DynamicalDisk3D.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-DynamicalDiskBolometric.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-EquatorialHotSpot.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-FixedStar.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-FlaredDiskSynchrotron.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-Hayward.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-InflateStar.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-Jet.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-KappaDistributionSynchrotronSpectrum.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-KerrBL.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-KerrKS.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-Minkowski.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-OscilTorus.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-PageThorneDisk.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-PatternDisk.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-PatternDiskBB.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-PolishDoughnut.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-PowerLawSpectrum.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-PowerLawSynchrotronSpectrum.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-RezzollaZhidenko.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-Star.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-StarTrace.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-StdPlug.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-ThermalBremsstrahlungSpectrum.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-ThermalSynchrotronSpectrum.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-ThickDisk.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-ThinDiskIronLine.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-ThinDiskPL.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-Torus.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-UniformSphere.Plo + -rm -f ./$(DEPDIR)/libgyoto_stdplug_la-XillverReflection.Plo -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic @@ -1323,23 +1531,24 @@ uninstall-am: uninstall-libLTLIBRARIES \ $(MAKE) $(AM_MAKEFLAGS) uninstall-hook .MAKE: install-am install-strip uninstall-am -.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ - clean-libLTLIBRARIES clean-libtool clean-soverLTLIBRARIES \ - cscopelist-am ctags ctags-am distclean distclean-compile \ - distclean-generic distclean-libtool distclean-tags distdir dvi \ - dvi-am html html-am info info-am install install-am \ - install-data install-data-am install-dvi install-dvi-am \ - install-exec install-exec-am install-html install-html-am \ - install-info install-info-am install-libLTLIBRARIES \ - install-library_includeHEADERS install-man install-pdf \ - install-pdf-am install-pkgconfigDATA install-ps install-ps-am \ - install-soverLTLIBRARIES install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ - tags tags-am uninstall uninstall-am uninstall-hook \ - uninstall-libLTLIBRARIES uninstall-library_includeHEADERS \ - uninstall-pkgconfigDATA uninstall-soverLTLIBRARIES +.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \ + clean-generic clean-libLTLIBRARIES clean-libtool \ + clean-soverLTLIBRARIES cscopelist-am ctags ctags-am distclean \ + distclean-compile distclean-generic distclean-libtool \ + distclean-tags distdir dvi dvi-am html html-am info info-am \ + install install-am install-data install-data-am install-dvi \ + install-dvi-am install-exec install-exec-am install-html \ + install-html-am install-info install-info-am \ + install-libLTLIBRARIES install-library_includeHEADERS \ + install-man install-pdf install-pdf-am install-pkgconfigDATA \ + install-ps install-ps-am install-soverLTLIBRARIES \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \ + uninstall-hook uninstall-libLTLIBRARIES \ + uninstall-library_includeHEADERS uninstall-pkgconfigDATA \ + uninstall-soverLTLIBRARIES .PRECIOUS: Makefile diff --git a/lib/PolishDoughnut.C b/lib/PolishDoughnut.C index 01f61b43..b17976e7 100644 --- a/lib/PolishDoughnut.C +++ b/lib/PolishDoughnut.C @@ -141,8 +141,11 @@ PolishDoughnut::PolishDoughnut(const PolishDoughnut& orig) : central_temperature_(orig.central_temperature_), beta_(orig.beta_), magnetizationParameter_(orig.magnetizationParameter_), + aa_(orig.aa_), + aa2_(orig.aa2_), spectral_oversampling_(orig.spectral_oversampling_), angle_averaged_(orig.angle_averaged_), + bremsstrahlung_(orig.bremsstrahlung_), deltaPL_(orig.deltaPL_), adaf_(orig.adaf_), ADAFtemperature_(orig.ADAFtemperature_), diff --git a/lib/RezzollaZhidenko.C b/lib/RezzollaZhidenko.C index d14ceb9c..8a56338f 100644 --- a/lib/RezzollaZhidenko.C +++ b/lib/RezzollaZhidenko.C @@ -99,7 +99,7 @@ Gyoto::Metric::RezzollaZhidenko::RezzollaZhidenko() } Gyoto::Metric::RezzollaZhidenko::RezzollaZhidenko(const RezzollaZhidenko & orig) - : Generic(GYOTO_COORDKIND_SPHERICAL, "RezzollaZhidenko"), + : Generic(orig), epsilon_(orig.epsilon_), rms_(orig.rms_), rmb_(orig.rms_), aparam_(NULL), bparam_(NULL) { GYOTO_DEBUG << endl; diff --git a/python/example.py b/python/example.py index da5507e6..96a08d31 100644 --- a/python/example.py +++ b/python/example.py @@ -61,6 +61,7 @@ phi=numpy.ndarray(n) # Call Gyoto method that takes these arrays as argument: +ph.get_t(t) ph.getCoord(t, r, theta, phi) plt.plot(t, r)