diff --git a/tests/Halo/createCoefs.py b/tests/Halo/createCoefs.py index f52fd313..ad6d9f97 100644 --- a/tests/Halo/createCoefs.py +++ b/tests/Halo/createCoefs.py @@ -47,7 +47,11 @@ print("---- createFromArray usings lists") coef1 = basis.createFromArray(mass, [xpos, ypos, zpos], time=3.0) -exit(0) # TEST +coefs = pyEXP.coefs.SphCoefs(True) +coefs.add(coef1) + +print("Times:", coefs.Times()) +exit(0) # TEST END mass = np.array(mass) data = np.array([xpos, ypos, zpos])