Skip to content

Commit

Permalink
build docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rmjarvis committed Aug 5, 2023
1 parent 5704500 commit a1f0a11
Show file tree
Hide file tree
Showing 235 changed files with 262 additions and 256 deletions.
Binary file modified docs/_build/doctrees/arbitrary.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/bandpass.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/bounds.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/catalog.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/cd.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/chromaticobject.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/composite.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/config_image.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/config_input.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/config_objects.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/config_output.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/config_process.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/config_special.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/config_stamp.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/config_values.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/corr_noise.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/cpp_image.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/dcr.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/des.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/deviate.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/environment.pickle
Binary file not shown.
Binary file modified docs/_build/doctrees/errors.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/fft.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/fits.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/gal.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/gsobject.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/gsparams.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/history.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/hsm.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/image_class.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/integ.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/interpolant.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/misc.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/nfwhalo.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/noise.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/phase_psf.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/photon_array.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/photon_ops.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/pos.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/powerspectrum.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/pse.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/psf.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/real_gal.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/roman.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/sed.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/sensor.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/shear.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/simple.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/spectral.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/table.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/transform.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/units.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/wcs.doctree
Binary file not shown.
Binary file modified docs/_build/doctrees/zernike.doctree
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/_build/html/.buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: 3873eac3e77cbcfecb9627a386034d4d
config: 1ffa910253c7cadcc35d52f127b1134f
tags: 645f666f9bcd5a90fca523b33c5a78b7
17 changes: 5 additions & 12 deletions docs/_build/html/_modules/coord/angle.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>coord.angle &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<title>coord.angle &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../_static/js/html5shiv.min.js"></script>
Expand Down Expand Up @@ -347,17 +347,10 @@ <h1>Source code for coord.angle</h1><div class="highlight"><pre>

<div class="viewcode-block" id="Angle.sincos"><a class="viewcode-back" href="../../units.html#galsim.Angle.sincos">[docs]</a> <span class="k">def</span> <span class="nf">sincos</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="w"> </span><span class="sd">&quot;&quot;&quot;Return both the sin and cos of an Angle as a numpy array [sint, cost].</span>

<span class="sd"> (On some systems, this may be slightly faster than doing each separately.)</span>
<span class="sd"> &quot;&quot;&quot;</span>
<span class="c1"># Note: This is admittedly pretty gratuitous. We&#39;re writing Python after all, so the</span>
<span class="c1"># difference between this and two trig calls is probably neglible given all the normal</span>
<span class="c1"># Python overhead. Mostly, I added this as an excuse to set up the C++ extension stuff</span>
<span class="c1"># to make sure people could see how to add further C++-layer optimizations as needed.</span>
<span class="kn">import</span> <span class="nn">coord</span>
<span class="n">sc</span> <span class="o">=</span> <span class="n">np</span><span class="o">.</span><span class="n">empty</span><span class="p">(</span><span class="mi">2</span><span class="p">)</span>
<span class="n">coord</span><span class="o">.</span><span class="n">_lib</span><span class="o">.</span><span class="n">coord_sincos</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_rad</span><span class="p">,</span> <span class="n">coord</span><span class="o">.</span><span class="n">_ffi</span><span class="o">.</span><span class="n">cast</span><span class="p">(</span><span class="s1">&#39;double*&#39;</span><span class="p">,</span> <span class="n">sc</span><span class="o">.</span><span class="n">ctypes</span><span class="o">.</span><span class="n">data</span><span class="p">))</span>
<span class="k">return</span> <span class="n">sc</span></div>
<span class="n">sin</span> <span class="o">=</span> <span class="n">math</span><span class="o">.</span><span class="n">sin</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_rad</span><span class="p">)</span>
<span class="n">cos</span> <span class="o">=</span> <span class="n">math</span><span class="o">.</span><span class="n">cos</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_rad</span><span class="p">)</span>
<span class="k">return</span> <span class="n">sin</span><span class="p">,</span> <span class="n">cos</span></div>

<span class="k">def</span> <span class="fm">__str__</span><span class="p">(</span><span class="bp">self</span><span class="p">):</span>
<span class="k">return</span> <span class="nb">str</span><span class="p">(</span><span class="bp">self</span><span class="o">.</span><span class="n">_rad</span><span class="p">)</span> <span class="o">+</span> <span class="s1">&#39; radians&#39;</span>
Expand Down Expand Up @@ -575,7 +568,7 @@ <h1>Source code for coord.angle</h1><div class="highlight"><pre>
<span class="w"> </span><span class="sd">&quot;&quot;&quot;Convert a string of the form dd:mm:ss.decimal into decimal degrees.</span>
<span class="sd"> &quot;&quot;&quot;</span>
<span class="kn">import</span> <span class="nn">re</span>
<span class="n">tokens</span> <span class="o">=</span> <span class="nb">tuple</span><span class="p">(</span><span class="nb">filter</span><span class="p">(</span><span class="kc">None</span><span class="p">,</span> <span class="n">re</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="sa">r</span><span class="s1">&#39;([\.\d]+)&#39;</span><span class="p">,</span> <span class="n">dms</span><span class="o">.</span><span class="n">strip</span><span class="p">())))</span>
<span class="n">tokens</span> <span class="o">=</span> <span class="nb">tuple</span><span class="p">(</span><span class="nb">filter</span><span class="p">(</span><span class="kc">None</span><span class="p">,</span> <span class="n">re</span><span class="o">.</span><span class="n">split</span><span class="p">(</span><span class="s1">&#39;([\.\d]+)&#39;</span><span class="p">,</span> <span class="n">dms</span><span class="o">.</span><span class="n">strip</span><span class="p">())))</span>
<span class="k">if</span> <span class="nb">len</span><span class="p">(</span><span class="n">tokens</span><span class="p">)</span> <span class="o">&lt;=</span> <span class="mi">1</span><span class="p">:</span>
<span class="k">raise</span> <span class="ne">ValueError</span><span class="p">(</span><span class="s2">&quot;string is not of the expected format&quot;</span><span class="p">)</span>
<span class="n">sign</span> <span class="o">=</span> <span class="mi">1</span>
Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/_modules/coord/angleunit.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>coord.angleunit &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<title>coord.angleunit &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../_static/js/html5shiv.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/_modules/coord/celestial.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>coord.celestial &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<title>coord.celestial &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../_static/js/html5shiv.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/_modules/galsim/airy.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>galsim.airy &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<title>galsim.airy &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../_static/js/html5shiv.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/_modules/galsim/bandpass.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>galsim.bandpass &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<title>galsim.bandpass &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../_static/js/html5shiv.min.js"></script>
Expand Down
4 changes: 2 additions & 2 deletions docs/_build/html/_modules/galsim/bounds.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>galsim.bounds &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<title>galsim.bounds &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../_static/js/html5shiv.min.js"></script>
Expand Down Expand Up @@ -224,7 +224,7 @@ <h1>Source code for galsim.bounds</h1><div class="highlight"><pre>
<span class="bp">self</span><span class="o">.</span><span class="n">ymax</span> <span class="o">=</span> <span class="n">kwargs</span><span class="o">.</span><span class="n">pop</span><span class="p">(</span><span class="s1">&#39;ymax&#39;</span><span class="p">)</span>
<span class="k">except</span> <span class="ne">KeyError</span><span class="p">:</span>
<span class="k">raise</span> <span class="ne">TypeError</span><span class="p">(</span><span class="s2">&quot;Keyword arguments, xmin, xmax, ymin, ymax are required for </span><span class="si">%s</span><span class="s2">&quot;</span><span class="o">%</span><span class="p">(</span>
<span class="bp">self</span><span class="o">.</span><span class="vm">__class__</span><span class="o">.</span><span class="vm">__name__</span><span class="p">))</span> <span class="kn">from</span> <span class="bp">None</span>
<span class="bp">self</span><span class="o">.</span><span class="vm">__class__</span><span class="o">.</span><span class="vm">__name__</span><span class="p">))</span> <span class="kn">from</span> <span class="kc">None</span>
<span class="k">if</span> <span class="n">kwargs</span><span class="p">:</span>
<span class="k">raise</span> <span class="ne">TypeError</span><span class="p">(</span><span class="s2">&quot;Got unexpected keyword arguments </span><span class="si">%s</span><span class="s2">&quot;</span><span class="o">%</span><span class="n">kwargs</span><span class="o">.</span><span class="n">keys</span><span class="p">())</span>

Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/_modules/galsim/box.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>galsim.box &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<title>galsim.box &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../_static/js/html5shiv.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/_modules/galsim/catalog.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>galsim.catalog &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<title>galsim.catalog &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../_static/js/html5shiv.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/_modules/galsim/cdmodel.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>galsim.cdmodel &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<title>galsim.cdmodel &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../_static/js/html5shiv.min.js"></script>
Expand Down
4 changes: 2 additions & 2 deletions docs/_build/html/_modules/galsim/chromatic.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>galsim.chromatic &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<title>galsim.chromatic &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../_static/js/html5shiv.min.js"></script>
Expand Down Expand Up @@ -1185,7 +1185,7 @@ <h1>Source code for galsim.chromatic</h1><div class="highlight"><pre>
<span class="n">dx</span> <span class="o">=</span> <span class="n">kwargs</span><span class="o">.</span><span class="n">pop</span><span class="p">(</span><span class="s1">&#39;dx&#39;</span><span class="p">)</span>
<span class="n">dy</span> <span class="o">=</span> <span class="n">kwargs</span><span class="o">.</span><span class="n">pop</span><span class="p">(</span><span class="s1">&#39;dy&#39;</span><span class="p">)</span>
<span class="k">except</span> <span class="ne">KeyError</span><span class="p">:</span>
<span class="k">raise</span> <span class="ne">TypeError</span><span class="p">(</span><span class="s1">&#39;shift() requires exactly 2 arguments (dx, dy)&#39;</span><span class="p">)</span> <span class="kn">from</span> <span class="bp">None</span>
<span class="k">raise</span> <span class="ne">TypeError</span><span class="p">(</span><span class="s1">&#39;shift() requires exactly 2 arguments (dx, dy)&#39;</span><span class="p">)</span> <span class="kn">from</span> <span class="kc">None</span>
<span class="n">offset</span> <span class="o">=</span> <span class="kc">None</span>
<span class="k">elif</span> <span class="nb">len</span><span class="p">(</span><span class="n">args</span><span class="p">)</span> <span class="o">==</span> <span class="mi">1</span><span class="p">:</span>
<span class="k">if</span> <span class="nb">hasattr</span><span class="p">(</span><span class="n">args</span><span class="p">[</span><span class="mi">0</span><span class="p">],</span> <span class="s1">&#39;__call__&#39;</span><span class="p">):</span>
Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/_modules/galsim/config/bandpass.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>galsim.config.bandpass &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<title>galsim.config.bandpass &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../../_static/js/html5shiv.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/_modules/galsim/config/extra.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>galsim.config.extra &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<title>galsim.config.extra &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../../_static/js/html5shiv.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/_modules/galsim/config/extra_badpix.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>galsim.config.extra_badpix &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<title>galsim.config.extra_badpix &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../../_static/js/html5shiv.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/_modules/galsim/config/extra_psf.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>galsim.config.extra_psf &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<title>galsim.config.extra_psf &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../../_static/js/html5shiv.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/_modules/galsim/config/extra_truth.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>galsim.config.extra_truth &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<title>galsim.config.extra_truth &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../../_static/js/html5shiv.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/_modules/galsim/config/extra_weight.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>galsim.config.extra_weight &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<title>galsim.config.extra_weight &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../../_static/js/html5shiv.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/_modules/galsim/config/gsobject.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>galsim.config.gsobject &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<title>galsim.config.gsobject &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../../_static/js/html5shiv.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion docs/_build/html/_modules/galsim/config/image.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>galsim.config.image &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<title>galsim.config.image &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../../_static/js/html5shiv.min.js"></script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>galsim.config.image_scattered &mdash; GalSim 2.4.10 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<title>galsim.config.image_scattered &mdash; GalSim 2.4.11 documentation</title><link rel="stylesheet" href="../../../_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
<!--[if lt IE 9]>
<script src="../../../_static/js/html5shiv.min.js"></script>
Expand Down
Loading

0 comments on commit a1f0a11

Please sign in to comment.