Skip to content

Commit d731ba7

Browse files
committed
updates
1 parent f1e9747 commit d731ba7

16 files changed

+2075
-916
lines changed

cumulants/configs.py

Lines changed: 111 additions & 114 deletions
Large diffs are not rendered by default.

cumulants/constants.py

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
import os
22
import numpy as np
33

4-
ALL_RADII = [
5-
# "5.0", "10.0", "15.0", "20.0", "25.0", "30.0", "35.0"
6-
5.0, 10.0, 15.0, 20.0, 25.0, 30.0, 35.0
7-
]
4+
ALL_RADII = [5.0, 10.0, 15.0, 20.0, 25.0, 30.0, 35.0]
85
ALL_REDSHIFTS = [0., 0.5, 1., 2., 3.]
96
REDSHIFT_STRINGS = ["0", "0.5", "1", "2", "3"] # Quijote filename strings
107

11-
RESOLUTION = 1024
8+
RESOLUTION = 1024 # NOTE: are hypercube realisations high resolution also?
129

1310
PARAMETER_STRINGS = [
1411
r"$\Omega_m$", r"$\Omega_b$", r"$h_m$", r"$n_s$", r"$\sigma_8$"
@@ -53,9 +50,7 @@
5350

5451

5552
def get_save_and_load_dirs():
56-
return (
57-
DATA_DIR, OUT_DIR, DERIVATIVES_DIR, FIGS_DIR
58-
)
53+
return DATA_DIR, DERIVATIVES_DIR, FIGS_DIR
5954

6055

6156
def get_quijote_parameters():

0 commit comments

Comments
 (0)