re-added some essential routines; updated example sceipts to reflect new layout

This commit is contained in:
Paul M. Sutter 2024-05-22 15:13:15 -04:00
parent 45f22a2c29
commit 541223fd07
11 changed files with 12 additions and 1308 deletions

View file

@ -19,3 +19,4 @@
#+
from .classes import *
from .launchers import *
from .cosmologyTools import *

View file

@ -20,7 +20,7 @@
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# routines which communicate with individual data analysis portions -
# they make the analyzeVoids.py script easier to read
# they make the main script easier to read
import os
import glob
@ -35,6 +35,7 @@ import sys
from pylab import figure
from netCDF4 import Dataset
from vide.backend.classes import *
from vide.backend.cosmologyTools import *
import pickle
import vide.apTools as vp
import scipy.interpolate as interpolate

View file

@ -24,7 +24,7 @@ from .plotDefs import *
import numpy as np
import os
import pylab as plt
import vide.apTools as vp
import vide.backend.cosmologyTools as vp
from vide.voidUtil import getArray, shiftPart, getVoidPart
def fill_between(x, y1, y2=0, ax=None, **kwargs):