Skip to content

Commit 68750b2

Browse files
author
sambit-giri
committed
verbose statement updated
1 parent 3a69b60 commit 68750b2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/tools21cm/radio_telescope_noise.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -674,8 +674,8 @@ def apply_uv_response_on_coeval(array, z, subarray_type="AA4", boxsize=None, tot
674674
if uv_map is None:
675675
uv_map, N_ant = get_uv_map(ncells, z, subarray_type=subarray_type, total_int_time=total_int_time, int_time=int_time, boxsize=boxsize, declination=declination)
676676
data3d = np.zeros(array.shape)
677-
print("Creating the noise cube")
678-
for k in range(ncells):
677+
print("Applying the uv tracks to the the coeval signal cube...")
678+
for k in tqdm(range(ncells)):
679679
data2d = apply_uv_response_on_image(array[:,:,k], uv_map=uv_map)
680680
data3d[:,:,k] = data2d
681681
return data3d

0 commit comments

Comments
 (0)