Skip to content

Commit

Permalink
remove some more old alphas determination stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyStegeman committed Oct 30, 2024
1 parent e67bdb3 commit 2478012
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 80 deletions.
74 changes: 0 additions & 74 deletions validphys2/src/validphys/chi2grids.py

This file was deleted.

7 changes: 1 addition & 6 deletions validphys2/src/validphys/tableloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Contrary to `validphys.loader` this module consists of functions that take
absolute paths, and return mostly dataframes.
"""

import functools
import logging

Expand Down Expand Up @@ -60,11 +61,6 @@ def load_perreplica_chi2_table(filename):
return df


def load_fits_computed_pseudoreplicas_chi2(filename):
"""Load the output of ``fits_computed_psedorreplicas_chi2``"""
return sane_load(filename, index_col=[0, 1, 2, 3], header=[0, 1])


def load_fits_chi2_table(filename):
"""Load the result of fits_chi2_tavle or similar."""
return sane_load(filename, header=[0, 1], index_col=[0, 1])
Expand Down Expand Up @@ -171,5 +167,4 @@ def get_extrasum_slice(df, components):

# Define aliases for functions with spelling mistakes in their names which have now been corrected
# Do this so that old runcards still work
load_fits_computed_psedorreplicas_chi2 = load_fits_computed_pseudoreplicas_chi2
combine_pseudorreplica_tables = combine_pseudoreplica_tables

0 comments on commit 2478012

Please sign in to comment.