softpaws 1.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- softpaws/__init__.py +31 -0
- softpaws/_paper/__init__.py +5 -0
- softpaws/_paper/reduced.py +749 -0
- softpaws/_paper/site_fit.py +1231 -0
- softpaws/comparison/__init__.py +83 -0
- softpaws/comparison/event_energy.py +527 -0
- softpaws/comparison/events.py +253 -0
- softpaws/comparison/feldman_cousins.py +174 -0
- softpaws/comparison/likelihood.py +448 -0
- softpaws/comparison/posterior.py +409 -0
- softpaws/comparison/rates.py +505 -0
- softpaws/comparison/reco_likelihood.py +950 -0
- softpaws/constants.py +510 -0
- softpaws/data/__init__.py +81 -0
- softpaws/data/atmospheric/mceq_numu_south_pole.npz +0 -0
- softpaws/data/bounds/icecube_14year_track_sensitivity_e2.csv +49 -0
- softpaws/data/bounds/icecubegen2_dm_lines.csv +66 -0
- softpaws/data/coefficients/proposal_muon_rock.csv +118 -0
- softpaws/data/coefficients/proposal_muon_water.csv +118 -0
- softpaws/data/container.py +188 -0
- softpaws/data/geofiles/icecube.geo +5164 -0
- softpaws/data/hese.py +235 -0
- softpaws/data/icecube/flavor2510_fig1.csv +432 -0
- softpaws/data/icecube.py +364 -0
- softpaws/data/km3net/arca21_aeff_brighttrack_allflavour_skyavg.csv +68 -0
- softpaws/data/km3net/arca_trigger_level_eff.csv +107 -0
- softpaws/data/km3net/km3net_angle_dependent.csv +64 -0
- softpaws/data/km3net/uhe_release/README.md +12 -0
- softpaws/data/km3net/uhe_release/flux_constraints/README.md +13 -0
- softpaws/data/km3net/uhe_release/flux_constraints/icecube_segmentedfit_glashow.json +1 -0
- softpaws/data/km3net/uhe_release/flux_constraints/icecube_segmentedfit_hese.json +1 -0
- softpaws/data/km3net/uhe_release/flux_constraints/icecube_segmentedfit_nst.json +1 -0
- softpaws/data/km3net/uhe_release/flux_constraints/icecube_spl_bestfit.json +1 -0
- softpaws/data/km3net/uhe_release/flux_constraints/icecube_spl_hese_contour1sigma.json +1 -0
- softpaws/data/km3net/uhe_release/flux_constraints/icecube_spl_nst_contour1sigma.json +1 -0
- softpaws/data/km3net/uhe_release/flux_constraints/limits_differential_antares.json +1 -0
- softpaws/data/km3net/uhe_release/flux_constraints/limits_differential_auger.json +1 -0
- softpaws/data/km3net/uhe_release/flux_constraints/limits_differential_icecube-ehe.json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/README.md +28 -0
- softpaws/data/km3net/uhe_release/flux_models/cosmogenic_Aloisio+[1505.04020].json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/cosmogenic_Berat+[2402.04759].json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/cosmogenic_Boncioli+[1808.07481].json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/cosmogenic_Condorelli+[2209.08593].json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/cosmogenic_Ehlert+[2304.07321].json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/cosmogenic_Muzio+[2209.08068].json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/cosmogenic_Muzio+[2303.04170].json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/cosmogenic_PAO+[2211.02857].json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/cosmogenic_Winter+[1901.03338].json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/cosmogenic_Zhang+[1812.10289].json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/cosmogenic_band.json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/source_Boncioli+[1808.07481]_LL-GRB.json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/source_Fang+[1311.2044].json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/source_Rodrigues+[2003.08392v3].json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/source_Rodrigues+[2307.13024]_Sample_BLLacs.json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/source_Rodrigues+[2307.13024]_Sample_SFRQ.json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/source_Tamborra+[1504.00107v2]_LL-GRB.json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/source_Tamborra+[1504.00107v2]_s-GRB.json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/source_Winter+[2205.11538v3]_TDE.json +1 -0
- softpaws/data/km3net/uhe_release/flux_models/source_band.json +1 -0
- softpaws/data/loader.py +363 -0
- softpaws/data/paths.py +86 -0
- softpaws/data/pone/pone_0_30.csv +58 -0
- softpaws/data/pone/pone_120_150.csv +54 -0
- softpaws/data/pone/pone_150_180.csv +72 -0
- softpaws/data/pone/pone_30_60.csv +55 -0
- softpaws/data/pone/pone_60_90.csv +59 -0
- softpaws/data/pone/pone_90_120.csv +53 -0
- softpaws/data/pone/pone_allsky.csv +47 -0
- softpaws/data/published.py +419 -0
- softpaws/data/schema.py +47 -0
- softpaws/data/standards.json +65 -0
- softpaws/data/trident/trident_-0.2_0.2.csv +84 -0
- softpaws/data/trident/trident_-1_-0.2.csv +82 -0
- softpaws/data/trident/trident_0.2_1.0.csv +81 -0
- softpaws/data/trident/trident_2025_fig3a_log10aeff_m2.csv +13 -0
- softpaws/data/xsec/BGR18/numu_xsec.csv +56 -0
- softpaws/data/xsec/BGR18/numu_xsec_nc.csv +49 -0
- softpaws/data/xsec/BGR18_nubar/numu_xsec.csv +65 -0
- softpaws/data/xsec/BGR18_nubar/numu_xsec_nc.csv +58 -0
- softpaws/detectors/__init__.py +51 -0
- softpaws/detectors/optics.py +200 -0
- softpaws/detectors/sites.py +409 -0
- softpaws/fluxes/__init__.py +56 -0
- softpaws/fluxes/astrophysical.py +237 -0
- softpaws/fluxes/atmospheric.py +320 -0
- softpaws/py.typed +0 -0
- softpaws/response/__init__.py +193 -0
- softpaws/response/declination.py +1008 -0
- softpaws/response/effective_area.py +852 -0
- softpaws/response/first_principles.py +818 -0
- softpaws/response/irfs.py +437 -0
- softpaws/response/light_reach.py +658 -0
- softpaws/response/published.py +213 -0
- softpaws/response/sensitivity.py +827 -0
- softpaws/response/soft_volume.py +1271 -0
- softpaws/standards.py +173 -0
- softpaws/transport/__init__.py +94 -0
- softpaws/transport/attenuation.py +473 -0
- softpaws/transport/coefficients.py +769 -0
- softpaws/transport/cross_section.py +304 -0
- softpaws/transport/cutoff_source.py +156 -0
- softpaws/transport/earth.py +301 -0
- softpaws/transport/eigenvalue.py +706 -0
- softpaws/transport/loss_distribution.py +613 -0
- softpaws/transport/loss_ensemble.py +332 -0
- softpaws/transport/muon_range.py +1121 -0
- softpaws/transport/soft_volume.py +1088 -0
- softpaws/transport/source.py +160 -0
- softpaws/transport/tau.py +335 -0
- softpaws-1.0.0.dist-info/METADATA +185 -0
- softpaws-1.0.0.dist-info/RECORD +114 -0
- softpaws-1.0.0.dist-info/WHEEL +5 -0
- softpaws-1.0.0.dist-info/licenses/LICENSE +674 -0
- softpaws-1.0.0.dist-info/top_level.txt +1 -0
softpaws/__init__.py
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"""softpaws — a first-principles forward model for UHE neutrino telescopes.
|
|
2
|
+
|
|
3
|
+
Implements the analytic muon transport of Meighen-Berger, *Estimating
|
|
4
|
+
High-Energy Neutrino Effective Areas from Muon Propagation* (2026). The locally
|
|
5
|
+
scale-invariant collision operator is diagonalized by power laws, so a muon's
|
|
6
|
+
whole loss history collapses to a single transport exponent ``Phi(s)``, which
|
|
7
|
+
then serves as a first-passage generator for the range of the muon and for the
|
|
8
|
+
detector response built on it. The result is benchmarked against the published
|
|
9
|
+
effective areas of IceCube, KM3NeT/ARCA, P-ONE and TRIDENT, against IceCube's
|
|
10
|
+
own instrument response functions (effective area + smearing matrix), and
|
|
11
|
+
against IceCube data.
|
|
12
|
+
|
|
13
|
+
Modules
|
|
14
|
+
-------
|
|
15
|
+
constants
|
|
16
|
+
Units (the code computes in GeV, cm, s and rad), physical constants and defaults.
|
|
17
|
+
data
|
|
18
|
+
Load the IceCube releases and the published curves of the other detectors.
|
|
19
|
+
detectors
|
|
20
|
+
Published geometry, medium, and optics for each site.
|
|
21
|
+
fluxes
|
|
22
|
+
Power laws, the published IceCube fits, and the atmospheric background.
|
|
23
|
+
transport
|
|
24
|
+
The loss kernel, the transport exponent, ranges, Earth, and the tau channel.
|
|
25
|
+
response
|
|
26
|
+
Forward models mapping a neutrino flux to an effective area or event rate.
|
|
27
|
+
comparison
|
|
28
|
+
Likelihoods, the event benchmark, and single-track energy reconstruction.
|
|
29
|
+
"""
|
|
30
|
+
|
|
31
|
+
__version__ = "1.0.0"
|