diff --git a/tests/Halo/createCoefs.py b/tests/Halo/createCoefs.py index 48a2eb2b..851817b6 100644 --- a/tests/Halo/createCoefs.py +++ b/tests/Halo/createCoefs.py @@ -1,4 +1,4 @@ -import os +import os, time import pyEXP import random import numpy as np @@ -27,12 +27,16 @@ print("---- created basis") +time.sleep(1) + # Create a coefficient structure # coefs = pyEXP.coefs.SphCoefs(True) print("---- created coefficients") +time.sleep(1) + # Call the basis to generate coefficients # mass = [] @@ -48,8 +52,9 @@ zpos.append(random.random()*2.0 - 1.0) print("---- createFromArray usings lists") +time.sleep(1) coef1 = basis.createFromArray(mass, [xpos, ypos, zpos], time=3.0) - +time.sleep(1) coefs.add(coef1) print("Times:", coefs.Times())