Skip to content

Commit

Permalink
Merge branch 'dev-em-signals' into dev
Browse files Browse the repository at this point in the history
* dev-em-signals:
  Cleanup
  Add notebook for getting distribution of DRW parameters
  Add simple version of LSST-GWB pipeline
  Add docstring
  Add some more additional references
  Add additional reference papers
  Cleanup
  Update SDSS bands using SVO, add LSST bands.  Move notebooks to dev/ subdir
  Move DRW relations to class for MacLeod2010
  Add some regression tests for Bands_SDSS
  Add some EMSignals notebooks
  More updates TEMP
  Fill out some basic functionality for EMS submodule including a photometric bands system
  Add eddington functions to utils
  Create EM signals submodule
  • Loading branch information
lzkelley committed Jan 30, 2024
2 parents 81f1445 + ec79108 commit b0a71bf
Show file tree
Hide file tree
Showing 24 changed files with 2,006 additions and 6 deletions.
Binary file added docs/references/Behroozi+2013_ApJ_770_57.pdf
Binary file not shown.
Binary file added docs/references/Finn+Thorne-2000.pdf
Binary file not shown.
Binary file added docs/references/Guo+2010_mnras0404-1111.pdf
Binary file not shown.
Binary file added docs/references/Leja+2020_ApJ_893_111.pdf
Binary file not shown.
Binary file added docs/references/Leja_2020_ApJ_893_111.pdf
Binary file not shown.
Binary file added docs/references/MacLeod+2010_1004.0276.pdf
Binary file not shown.
Binary file not shown.
Binary file added docs/references/Navarro+1997_ApJ_490_493.pdf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added docs/references/Runnoe+2012_1201.5155.pdf
Binary file not shown.
Binary file added docs/references/Sesana+Vecchio+Colacino-2008.pdf
Binary file not shown.
Binary file added docs/references/Tomczak_2014_ApJ_783_85.pdf
Binary file not shown.
13 changes: 13 additions & 0 deletions holodeck/ems/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
"""Holodeck - Electromagnetic Signals (EMS)
"""

from . import basics # noqa
from . import drw # noqa
from . runnoe2012 import Runnoe2012 # noqa


bands_sdss = basics.Bands_SDSS()
bands_lsst = basics.Bands_LSST()
MacLeod2010 = drw.MacLeod2010
runnoe2012 = Runnoe2012()

Loading

0 comments on commit b0a71bf

Please sign in to comment.