Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
fd9674e
a test commit
BryceSmith494 Nov 10, 2025
d5ba368
first z-smear implementation
BryceSmith494 Nov 21, 2025
e26d1ce
clancy told me to do it
BryceSmith494 Nov 21, 2025
a21640d
Fake survey from MC generation
BryceSmith494 Dec 1, 2025
a27d6ee
Fake Surveys
BryceSmith494 Dec 1, 2025
1e9dba6
Merge remote-tracking branch 'origin/lsst' into test
BryceSmith494 Dec 1, 2025
1c788da
first few little changes
Dec 6, 2025
f1b4fee
Bryce Smith Summer Project 2025
BryceSmith494 Dec 16, 2025
d6df03a
finished script to load in Nicks optical module and compute p mr dist…
Dec 31, 2025
828b755
Successful implementation of loudas model optimisation
Jan 5, 2026
a606064
Found a bug in states.py, added plotting scripts for lsst paper, upda…
Jan 8, 2026
c9a01d6
pulling in docs update to main
Jan 8, 2026
75d6aed
merged main branch and bryces new one
Jan 8, 2026
aee53f7
now merging in pathpriors
Jan 8, 2026
62ef1db
Moved Bryce's fake survey creation script to appropriate lsst directory
Jan 8, 2026
b9278c4
finalised Bryces photometric analysis
Jan 8, 2026
6b965ba
minor updates prior to circulating lsst paper, and ref changes to sca…
Jan 14, 2026
fc98394
Updated to optical PATH priors, and minor updates to LSST plots for t…
Jan 27, 2026
e0f08f0
minor debug for new prior estimates
Jan 27, 2026
36776ef
minor debugs to optical, and adding HTR catalogue properties from sca…
Jan 28, 2026
851b753
updated priorto path debug to check original method
Feb 6, 2026
21d1293
Fixed error in survey.py reading in parameter values. Updated several…
Feb 12, 2026
15df642
Made changes to include MeerTRAP in H0 estimation, and fixed issue wi…
Feb 12, 2026
d4ba49d
added updates for CASATTA re ATNF 2030 meeting
Feb 18, 2026
b327438
oops, missed one addition
Feb 18, 2026
6dc4540
Cosmetic changes for first full draft of paper
Mar 2, 2026
a5f211b
tidied up scripts associated with PATH. Likely need more tidying
Mar 3, 2026
9dad2bc
Updated for last paper internal review, and SKA deferral calculations
Mar 16, 2026
519b9bb
lots o docs
profxj Mar 19, 2026
1b65f9a
mo docs
profxj Mar 19, 2026
cb4b486
import fix
profxj Mar 19, 2026
3d2ec48
Updated according to Michele's latest P(O|m) data
Mar 19, 2026
d368a08
Merge pull request #79 from FRBs/polish_bryce
cwjames1983 Mar 19, 2026
fe26a83
removed pkg resources
Mar 19, 2026
268fe9f
mo
profxj Mar 19, 2026
6e901a7
another try
profxj Mar 19, 2026
355ec46
mo
profxj Mar 19, 2026
96fd4a6
Merge pull request #80 from FRBs/polish_bryce
cwjames1983 Mar 19, 2026
80ee984
debugging still
Mar 19, 2026
264d561
minor change
Mar 19, 2026
ddc5c07
changed where frb lists sits
Mar 20, 2026
e7767cc
described zfraction
Mar 20, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
python -m pip install wheel scipy IPython astropy extension-helpers mpmath
python -m pip install git+https://github.com/FRBs/ne2001.git#egg=ne2001
python -m pip install git+https://github.com/FRBs/FRB.git#egg=frb
python -m pip install git+https://github.com/FRBs/astropath.git#egg=astropath
- name: Test with tox
run: |
tox -e ${{ matrix.toxenv }}
30 changes: 30 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,34 @@

import os
import sys
from unittest.mock import MagicMock

# Add the project root to the path for autodoc
sys.path.insert(0, os.path.abspath('..'))

# Inject mocks for GitHub-only packages directly into sys.modules.
# This must be done before Sphinx loads any extensions, because
# sphinx-automodapi's automodsumm handler fires at builder-inited —
# earlier than autodoc_mock_imports takes effect — and will fail with
# "No module named X" if the package is not installed.
#
# Packages mocked here:
# astropath: pip install git+https://github.com/FRBs/astropath.git
# frb: pip install git+https://github.com/FRBs/FRB.git
# ne2001: pip install git+https://github.com/FRBs/ne2001.git
_MOCK_MODULES = [
'astropath',
'astropath.priors',
'astropath.path',
'frb',
'frb.frb',
'frb.dm',
'frb.associate',
'ne2001',
]
for _mod in _MOCK_MODULES:
sys.modules[_mod] = MagicMock()

# -- Project information -----------------------------------------------------
project = 'zdm'
copyright = '2024, Clancy James and contributors'
Expand Down Expand Up @@ -107,7 +131,13 @@
}

# Mock imports for modules that may not be available during doc build
# These packages can only be installed from GitHub and are not available
# on ReadTheDocs or in the standard docs build environment:
# ne2001: pip install git+https://github.com/FRBs/ne2001.git
# frb: pip install git+https://github.com/FRBs/FRB.git
# astropath: pip install git+https://github.com/FRBs/astropath.git
autodoc_mock_imports = [
'ne2001',
'frb',
'astropath',
]
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Getting Started
architecture
parameters
api
optical

.. toctree::
:maxdepth: 1
Expand Down
Loading
Loading