Second Round of Full Day RFI Flagging¶
by Josh Dillon, last updated July 31, 2023
This notebook is synthesizes information from individual delay_filtered_average_zscore notebooks to find low-level RFI and flag it. That notebook takes smooth_cal
ibrated data, redundantly averages it, performs a high-pass delay filter, and then incoherently averages across baselines, creating a per-polarization z-score. This notebook then takes that whole night of z-scores and finds a new set of flags to both add to the smooth_cal
files, which are updated in place, and to write down as new UVFlag
waterfall-type .h5
files.
Here's a set of links to skip to particular figures and tables:
• Figure 1: Waterfall of Maximum z-Score of Either Polarization Before Round 2 Flagging¶
• Figure 2: Histogram of z-scores¶
• Figure 3: Waterfall of Maximum z-Score of Either Polarization After Round 2 Flagging¶
• Figure 4: Spectra of Time-Averaged z-Scores¶
• Figure 5: Summary of Flags Before and After Round 2 Flagging¶
import time
tstart = time.time()
import os
os.environ['HDF5_USE_FILE_LOCKING'] = 'FALSE'
import h5py
import hdf5plugin # REQUIRED to have the compression plugins available
import numpy as np
import glob
import matplotlib.pyplot as plt
import matplotlib
import copy
import warnings
from pyuvdata import UVFlag, UVCal
from hera_cal import utils
from hera_qm import xrfi
from hera_qm.time_series_metrics import true_stretches
from IPython.display import display, HTML
%matplotlib inline
display(HTML("<style>.container { width:100% !important; }</style>"))
_ = np.seterr(all='ignore') # get rid of red warnings
%config InlineBackend.figure_format = 'retina'
# get input data file names
SUM_FILE = os.environ.get("SUM_FILE", None)
# SUM_FILE = '/lustre/aoc/projects/hera/h6c-analysis/IDR2/2459861/zen.2459861.25297.sum.uvh5'
SUM_SUFFIX = os.environ.get("SUM_SUFFIX", 'sum.uvh5')
# get input and output suffixes
SMOOTH_CAL_SUFFIX = os.environ.get("SMOOTH_CAL_SUFFIX", 'sum.smooth.calfits')
ZSCORE_SUFFIX = os.environ.get("ZSCORE_SUFFIX", 'sum.red_avg_zscore.h5')
FLAG_WATERFALL2_SUFFIX = os.environ.get("FLAG_WATERFALL2_SUFFIX", 'sum.flag_waterfall_round_2.h5')
OUT_YAML_SUFFIX = os.environ.get("OUT_YAML_SUFFIX", '_aposteriori_flags.yaml')
OUT_YAML_DIR = os.environ.get("OUT_YAML_DIR", None)
# build globs
sum_glob = '.'.join(SUM_FILE.split('.')[:-3]) + '.*.' + SUM_SUFFIX
cal_files_glob = sum_glob.replace(SUM_SUFFIX, SMOOTH_CAL_SUFFIX)
zscore_glob = sum_glob.replace(SUM_SUFFIX, ZSCORE_SUFFIX)
# build out yaml file
if OUT_YAML_DIR is None:
OUT_YAML_DIR = os.path.dirname(SUM_FILE)
out_yaml_file = os.path.join(OUT_YAML_DIR, SUM_FILE.split('.')[-4] + OUT_YAML_SUFFIX)
# get flagging parameters
Z_THRESH = float(os.environ.get("Z_THRESH", 5))
WS_Z_THRESH = float(os.environ.get("WS_Z_THRESH", 4))
AVG_Z_THRESH = float(os.environ.get("AVG_Z_THRESH", 1))
MAX_FREQ_FLAG_FRAC = float(os.environ.get("MAX_FREQ_FLAG_FRAC", .25))
MAX_TIME_FLAG_FRAC = float(os.environ.get("MAX_TIME_FLAG_FRAC", .1))
for setting in ['Z_THRESH', 'WS_Z_THRESH', 'AVG_Z_THRESH', 'MAX_FREQ_FLAG_FRAC', 'MAX_TIME_FLAG_FRAC']:
print(f'{setting} = {eval(setting)}')
Z_THRESH = 5.0 WS_Z_THRESH = 4.0 AVG_Z_THRESH = 1.0 MAX_FREQ_FLAG_FRAC = 0.25 MAX_TIME_FLAG_FRAC = 0.1
Load z-scores¶
# load z-scores
zscore_files = sorted(glob.glob(zscore_glob))
print(f'Found {len(zscore_files)} *.{ZSCORE_SUFFIX} files starting with {zscore_files[0]}.')
uvf = UVFlag(zscore_files, use_future_array_shapes=True)
Found 1568 *.sum.red_avg_zscore.h5 files starting with /mnt/sn1/data1/2460451/zen.2460451.16897.sum.red_avg_zscore.h5.
# get calibration solution files
cal_files = sorted(glob.glob(cal_files_glob))
print(f'Found {len(cal_files)} *.{SMOOTH_CAL_SUFFIX} files starting with {cal_files[0]}.')
Found 1568 *.sum.smooth.calfits files starting with /mnt/sn1/data1/2460451/zen.2460451.16897.sum.smooth.calfits.
assert len(zscore_files) == len(cal_files)
# extract z-scores and correct by a single number per polarization to account for biases created by filtering
zscore = {pol: uvf.metric_array[:, :, np.argwhere(uvf.polarization_array == utils.polstr2num(pol, x_orientation=uvf.x_orientation))[0][0]] for pol in ['ee', 'nn']}
zscore = {pol: zscore[pol] - np.nanmedian(zscore[pol]) for pol in zscore}
freqs = uvf.freq_array
times = uvf.time_array
extent = [freqs[0] / 1e6, freqs[-1] / 1e6, times[-1] - int(times[0]), times[0] - int(times[0])]
def plot_max_z_score(zscore, flags=None):
if flags is None:
flags = np.any(~np.isfinite(list(zscore.values())), axis=0)
plt.figure(figsize=(14,10), dpi=100)
plt.imshow(np.where(flags, np.nan, np.nanmax([zscore['ee'], zscore['nn']], axis=0)), aspect='auto',
cmap='coolwarm', interpolation='none', vmin=-10, vmax=10, extent=extent)
plt.colorbar(location='top', label='Max z-score of either polarization', extend='both', aspect=40, pad=.02)
plt.xlabel('Frequency (MHz)')
plt.ylabel(f'JD - {int(times[0])}')
plt.tight_layout()
Figure 1: Waterfall of Maximum z-Score of Either Polarization Before Round 2 Flagging¶
Shows the worse of the two results from delay_filtered_average_zscore from either polarization. Dips near flagged channels are expected, due to overfitting of noise. Positive-going excursions are problematic and likely evidence of RFI.
plot_max_z_score(zscore)
All-NaN axis encountered
def plot_histogram():
plt.figure(figsize=(14,4), dpi=100)
bins = np.arange(-50, 100, .1)
hist_ee = plt.hist(np.ravel(zscore['ee']), bins=bins, density=True, label='ee-polarized z-scores', alpha=.5)
hist_nn = plt.hist(np.ravel(zscore['nn']), bins=bins, density=True, label='nn-polarized z-scores', alpha=.5)
plt.plot(bins, (2*np.pi)**-.5 * np.exp(-bins**2 / 2), 'k:', label='Gaussian approximate\nnoise-only distribution')
plt.axvline(WS_Z_THRESH, c='r', ls='--', label='Watershed z-score')
plt.axvline(Z_THRESH, c='r', ls='-', label='Threshold z-score')
plt.yscale('log')
all_densities = np.concatenate([hist_ee[0][hist_ee[0] > 0], hist_nn[0][hist_nn[0] > 0]])
plt.ylim(np.min(all_densities) / 2, np.max(all_densities) * 2)
plt.xlim([-50, 100])
plt.legend()
plt.xlabel('z-score')
plt.ylabel('Density')
plt.tight_layout()
Figure 2: Histogram of z-scores¶
Shows a comparison of the histogram of z-scores in this file (one per polarization) to a Gaussian approximation of what one might expect from thermal noise. Without filtering, the actual distribution is a weighted sum of Rayleigh distributions. Filtering further complicates this. To make the z-scores more reliable, a single per-polarization median is subtracted from each waterfall, which allows us to flag low-level outliers with more confidence. Any points beyond the solid red line are flagged. Any points neighboring a flag beyond the dashed red line are also flagged. Finally, flagging is performed for low-level outliers in whole times or channels.
plot_histogram()
Perform flagging¶
def iteratively_flag_on_averaged_zscore(flags, zscore, avg_z_thresh=1.5, verbose=True):
'''Flag whole integrations or channels based on average z-score. This is done
iteratively to prevent bad times affecting channel averages or vice versa.'''
flagged_chan_count = 0
flagged_int_count = 0
while True:
zspec = np.nanmean(np.where(flags, np.nan, zscore), axis=0)
ztseries = np.nanmean(np.where(flags, np.nan, zscore), axis=1)
if (np.nanmax(zspec) < avg_z_thresh) and (np.nanmax(ztseries) < avg_z_thresh):
break
if np.nanmax(zspec) >= np.nanmax(ztseries):
flagged_chan_count += np.sum((zspec >= np.nanmax(ztseries)) & (zspec >= avg_z_thresh))
flags[:, (zspec >= np.nanmax(ztseries)) & (zspec >= avg_z_thresh)] = True
else:
flagged_int_count += np.sum((ztseries >= np.nanmax(zspec)) & (ztseries >= avg_z_thresh))
flags[(ztseries >= np.nanmax(zspec)) & (ztseries >= avg_z_thresh), :] = True
if verbose:
print(f'\tFlagging an additional {flagged_int_count} integrations and {flagged_chan_count} channels.')
def impose_max_chan_flag_frac(flags, max_flag_frac=.25, verbose=True):
'''Flag channels already flagged more than max_flag_frac (excluding completely flagged times).'''
unflagged_times = ~np.all(flags, axis=1)
frequently_flagged_chans = np.mean(flags[unflagged_times, :], axis=0) >= max_flag_frac
if verbose:
print(f'\tFlagging {np.sum(frequently_flagged_chans) - np.sum(np.all(flags, axis=0))} channels previously flagged {max_flag_frac:.2%} or more.')
flags[:, frequently_flagged_chans] = True
def impose_max_time_flag_frac(flags, max_flag_frac=.25, verbose=True):
'''Flag times already flagged more than max_flag_frac (excluding completely flagged channels).'''
unflagged_chans = ~np.all(flags, axis=0)
frequently_flagged_times = np.mean(flags[:, unflagged_chans], axis=1) >= max_flag_frac
if verbose:
print(f'\tFlagging {np.sum(frequently_flagged_times) - np.sum(np.all(flags, axis=1))} times previously flagged {max_flag_frac:.2%} or more.')
flags[frequently_flagged_times, :] = True
flags = np.any(~np.isfinite(list(zscore.values())), axis=0)
print(f'{np.mean(flags):.3%} of waterfall flagged to start.')
# flag largest outliers
for pol in ['ee', 'nn']:
flags |= (zscore[pol] > Z_THRESH)
print(f'{np.mean(flags):.3%} of waterfall flagged after flagging z > {Z_THRESH} outliers.')
# watershed flagging
while True:
nflags = np.sum(flags)
for pol in ['ee', 'nn']:
flags |= xrfi._ws_flag_waterfall(zscore[pol], flags, WS_Z_THRESH)
if np.sum(flags) == nflags:
break
print(f'{np.mean(flags):.3%} of waterfall flagged after watershed flagging on z > {WS_Z_THRESH} neightbors of prior flags.')
# flag whole integrations or channels
while True:
nflags = np.sum(flags)
for pol in ['ee', 'nn']:
iteratively_flag_on_averaged_zscore(flags, zscore[pol], avg_z_thresh=AVG_Z_THRESH, verbose=True)
impose_max_chan_flag_frac(flags, max_flag_frac=MAX_FREQ_FLAG_FRAC, verbose=True)
impose_max_time_flag_frac(flags, max_flag_frac=MAX_TIME_FLAG_FRAC, verbose=True)
if np.sum(flags) == nflags:
break
print(f'{np.mean(flags):.3%} of waterfall flagged after flagging whole times and channels with average z > {AVG_Z_THRESH}.')
30.586% of waterfall flagged to start. 34.129% of waterfall flagged after flagging z > 5.0 outliers.
34.588% of waterfall flagged after watershed flagging on z > 4.0 neightbors of prior flags.
Mean of empty slice
Mean of empty slice
Flagging an additional 0 integrations and 33 channels. Flagging 33 channels previously flagged 25.00% or more. Flagging 403 times previously flagged 10.00% or more.
Flagging an additional 0 integrations and 0 channels. Flagging 0 channels previously flagged 25.00% or more. Flagging 0 times previously flagged 10.00% or more.
Flagging an additional 0 integrations and 4 channels. Flagging 0 channels previously flagged 25.00% or more. Flagging 0 times previously flagged 10.00% or more.
Flagging an additional 0 integrations and 0 channels. Flagging 0 channels previously flagged 25.00% or more. Flagging 0 times previously flagged 10.00% or more.
Flagging an additional 0 integrations and 0 channels. Flagging 0 channels previously flagged 25.00% or more. Flagging 0 times previously flagged 10.00% or more.
Flagging an additional 0 integrations and 0 channels. Flagging 0 channels previously flagged 25.00% or more. Flagging 0 times previously flagged 10.00% or more. 45.171% of waterfall flagged after flagging whole times and channels with average z > 1.0.
Show results of flagging¶
Figure 3: Waterfall of Maximum z-Score of Either Polarization After Round 2 Flagging¶
The same as Figure 1, but after the flagging performed in this notebook.
plot_max_z_score(zscore, flags=flags)
All-NaN axis encountered
def zscore_spectra():
fig, axes = plt.subplots(2, 1, figsize=(14,6), dpi=100, sharex=True, sharey=True, gridspec_kw={'hspace': 0})
for ax, pol in zip(axes, ['ee', 'nn']):
ax.plot(freqs / 1e6, np.nanmean(zscore[pol], axis=0),'r', label=f'{pol}-Polarization Before Round 2 Flagging', lw=.5)
ax.plot(freqs / 1e6, np.nanmean(np.where(flags, np.nan, zscore[pol]), axis=0), label=f'{pol}-Polarization After Round 2 Flagging')
ax.legend(loc='lower right')
ax.set_ylabel('Time-Averged Z-Score\n(Excluding Flags)')
ax.set_ylim(-11, 11)
axes[1].set_xlabel('Frequency (MHz)')
plt.tight_layout()
Figure 4: Spectra of Time-Averaged z-Scores¶
The average along the time axis of Figures 1 and 3 (though now separated per-polarization). This plot is useful for showing channels with repeated low-level RFI.
zscore_spectra()
Mean of empty slice
Mean of empty slice
def summarize_flagging():
plt.figure(figsize=(14,10), dpi=100)
cmap = matplotlib.colors.ListedColormap(((0, 0, 0),) + matplotlib.cm.get_cmap("Set2").colors[0:2])
plt.imshow(np.where(np.any(~np.isfinite(list(zscore.values())), axis=0), 1, np.where(flags, 2, 0)),
aspect='auto', cmap=cmap, interpolation='none', extent=extent)
plt.clim([-.5, 2.5])
cbar = plt.colorbar(location='top', aspect=40, pad=.02)
cbar.set_ticks([0, 1, 2])
cbar.set_ticklabels(['Unflagged', 'Previously Flagged', 'Flagged Here Using Delayed Filtered z-Scores'])
plt.xlabel('Frequency (MHz)')
plt.ylabel(f'JD - {int(times[0])}')
plt.tight_layout()
Figure 5: Summary of Flags Before and After Round 2 Flagging¶
This plot shows which times and frequencies were flagged before and after this notebook. It is directly comparable to Figure 5 of the first round full_day_rfi notebook.
summarize_flagging()
The get_cmap function was deprecated in Matplotlib 3.7 and will be removed two minor releases later. Use ``matplotlib.colormaps[name]`` or ``matplotlib.colormaps.get_cmap(obj)`` instead.
Save results¶
add_to_history = 'by full_day_rfi_round_2 notebook with the following environment:\n' + '=' * 65 + '\n' + os.popen('conda env export').read() + '=' * 65
tind = 0
always_flagged_ants = set()
ever_unflagged_ants = set()
for cal_file in cal_files:
with warnings.catch_warnings():
warnings.simplefilter("ignore")
# update cal_file
uvc = UVCal()
uvc.read(cal_file, use_future_array_shapes=True)
uvc.flag_array |= (flags[tind:tind + len(uvc.time_array), :].T)[None, :, :, None]
uvc.history += 'Modified ' + add_to_history
uvc.write_calfits(cal_file, clobber=True)
# keep track of flagged antennas
for antnum in uvc.ant_array:
for antpol in ['Jee', 'Jnn']:
if np.all(uvc.get_flags(antnum, antpol)):
if (antnum, antpol) not in ever_unflagged_ants:
always_flagged_ants.add((antnum, antpol))
else:
ever_unflagged_ants.add((antnum, antpol))
always_flagged_ants.discard((antnum, antpol))
# Create new flag object
uvf_out = UVFlag(uvc, waterfall=True, mode='flag')
uvf_out.flag_array |= flags[tind:tind + len(uvc.time_array), :, None]
uvf_out.history += 'Produced ' + add_to_history
uvf_out.write(cal_file.replace(SMOOTH_CAL_SUFFIX, FLAG_WATERFALL2_SUFFIX), clobber=True)
# increment time index
tind += len(uvc.time_array)
print(f'Saved {len(cal_files)} *.{FLAG_WATERFALL2_SUFFIX} files starting with {cal_files[0].replace(SMOOTH_CAL_SUFFIX, FLAG_WATERFALL2_SUFFIX)}.')
File /mnt/sn1/data1/2460451/zen.2460451.16897.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.16919.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.16941.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.16964.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.16986.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17009.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17031.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17053.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17076.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17098.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17120.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17143.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17165.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17187.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17210.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17232.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17255.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17277.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17299.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17322.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17344.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17366.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17389.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17411.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17434.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17456.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17478.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17501.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17523.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17545.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17568.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17590.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17613.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17635.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17657.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17680.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17702.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17724.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17747.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17769.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17791.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17814.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17836.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17859.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17881.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17903.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17926.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17948.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17970.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.17993.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18015.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18038.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18060.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18082.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18105.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18127.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18149.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18172.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18194.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18216.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18239.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18261.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18284.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18306.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18328.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18351.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18373.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18395.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18418.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18440.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18463.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18485.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18507.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18530.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18552.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18574.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18597.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18619.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18642.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18664.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18686.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18709.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18731.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18753.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18776.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18798.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18820.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18843.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18865.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18888.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18910.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18932.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18955.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18977.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.18999.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19022.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19044.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19067.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19089.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19111.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19134.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19156.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19178.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19201.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19223.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19246.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19268.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19290.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19313.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19335.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19357.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19380.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19402.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19424.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19447.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19469.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19492.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19514.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19536.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19559.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19581.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19603.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19626.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19648.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19671.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19693.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19715.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19738.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19760.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19782.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19805.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19827.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19849.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19872.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19894.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19917.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19939.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19961.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.19984.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20006.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20028.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20051.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20073.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20096.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20118.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20140.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20163.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20185.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20207.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20230.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20252.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20275.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20297.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20319.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20342.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20364.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20386.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20409.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20431.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20453.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20476.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20498.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20521.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20543.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20565.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20588.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20610.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20632.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20655.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20677.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20700.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20722.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20744.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20767.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20789.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20811.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20834.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20856.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20878.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20901.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20923.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20946.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20968.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.20990.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21013.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21035.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21057.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21080.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21102.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21125.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21147.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21169.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21192.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21214.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21236.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21259.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21281.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21304.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21326.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21348.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21371.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21393.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21415.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21438.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21460.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21482.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21505.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21527.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21550.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21572.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21594.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21617.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21639.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21661.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21684.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21706.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21729.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21751.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21773.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21796.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21818.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21840.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21863.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21885.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21907.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21930.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21952.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21975.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.21997.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22019.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22042.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22064.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22086.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22109.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22131.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22154.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22176.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22198.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22221.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22243.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22265.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22288.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22310.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22333.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22355.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22377.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22400.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22422.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22444.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22467.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22489.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22511.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22534.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22556.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22579.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22601.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22623.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22646.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22668.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22690.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22713.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22735.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22758.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22780.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22802.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22825.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22847.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22869.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22892.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22914.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22936.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22959.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.22981.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23004.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23026.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23048.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23071.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23093.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23115.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23138.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23160.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23183.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23205.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23227.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23250.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23272.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23294.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23317.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23339.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23362.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23384.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23406.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23429.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23451.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23473.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23496.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23518.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23540.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23563.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23585.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23608.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23630.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23652.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23675.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23697.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23719.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23742.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23764.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23787.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23809.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23831.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23854.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23876.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23898.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23921.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23943.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23965.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.23988.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24010.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24033.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24055.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24077.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24100.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24122.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24144.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24167.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24189.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24212.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24234.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24256.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24279.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24301.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24323.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24346.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24368.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24391.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24413.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24435.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24458.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24480.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24502.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24525.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24547.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24569.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24592.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24614.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24637.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24659.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24681.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24704.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24726.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24748.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24771.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24793.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24816.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24838.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24860.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24883.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24905.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24927.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24950.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24972.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.24994.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25017.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25039.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25062.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25084.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25106.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25129.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25151.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25173.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25196.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25218.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25241.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25263.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25285.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25308.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25330.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25352.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25375.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25397.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25420.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25442.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25464.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25487.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25509.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25531.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25554.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25576.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25598.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25621.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25643.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25666.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25688.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25710.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25733.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25755.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25777.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25800.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25822.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25845.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25867.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25889.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25912.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25934.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25956.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.25979.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26001.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26023.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26046.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26068.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26091.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26113.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26135.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26158.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26180.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26202.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26225.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26247.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26270.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26292.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26314.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26337.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26359.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26381.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26404.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26426.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26449.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26471.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26493.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26516.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26538.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26560.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26583.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26605.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26627.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26650.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26672.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26695.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26717.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26739.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26762.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26784.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26806.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26829.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26851.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26874.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26896.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26918.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26941.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26963.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.26985.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27008.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27030.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27052.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27075.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27097.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27120.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27142.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27164.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27187.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27209.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27231.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27254.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27276.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27299.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27321.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27343.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27366.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27388.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27410.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27433.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27455.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27478.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27500.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27522.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27545.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27567.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27589.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27612.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27634.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27656.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27679.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27701.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27724.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27746.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27768.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27791.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27813.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27835.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27858.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27880.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27903.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27925.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27947.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27970.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.27992.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28014.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28037.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28059.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28082.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28104.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28126.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28149.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28171.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28193.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28216.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28238.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28260.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28283.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28305.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28328.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28350.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28372.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28395.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28417.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28439.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28462.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28484.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28507.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28529.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28551.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28574.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28596.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28618.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28641.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28663.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28685.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28708.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28730.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28753.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28775.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28797.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28820.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28842.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28864.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28887.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28909.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28932.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28954.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28976.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.28999.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29021.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29043.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29066.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29088.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29111.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29133.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29155.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29178.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29200.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29222.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29245.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29267.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29289.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29312.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29334.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29357.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29379.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29401.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29424.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29446.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29468.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29491.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29513.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29536.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29558.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29580.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29603.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29625.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29647.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29670.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29692.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29714.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29737.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29759.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29782.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29804.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29826.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29849.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29871.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29893.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29916.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29938.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29961.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.29983.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30005.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30028.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30050.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30072.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30095.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30117.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30140.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30162.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30184.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30207.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30229.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30251.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30274.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30296.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30318.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30341.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30363.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30386.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30408.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30430.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30453.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30475.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30497.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30520.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30542.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30565.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30587.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30609.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30632.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30654.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30676.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30699.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30721.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30743.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30766.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30788.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30811.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30833.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30855.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30878.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30900.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30922.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30945.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30967.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.30990.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31012.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31034.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31057.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31079.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31101.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31124.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31146.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31169.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31191.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31213.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31236.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31258.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31280.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31303.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31325.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31347.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31370.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31392.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31415.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31437.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31459.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31482.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31504.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31526.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31549.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31571.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31594.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31616.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31638.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31661.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31683.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31705.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31728.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31750.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31772.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31795.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31817.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31840.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31862.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31884.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31907.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31929.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31951.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31974.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.31996.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32019.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32041.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32063.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32086.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32108.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32130.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32153.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32175.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32198.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32220.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32242.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32265.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32287.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32309.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32332.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32354.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32376.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32399.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32421.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32444.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32466.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32488.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32511.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32533.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32555.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32578.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32600.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32623.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32645.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32667.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32690.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32712.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32734.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32757.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32779.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32801.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32824.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32846.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32869.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32891.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32913.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32936.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32958.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.32980.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33003.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33025.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33048.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33070.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33092.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33115.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33137.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33159.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33182.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33204.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33227.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33249.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33271.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33294.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33316.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33338.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33361.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33383.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33405.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33428.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33450.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33473.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33495.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33517.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33540.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33562.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33584.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33607.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33629.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33652.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33674.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33696.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33719.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33741.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33763.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33786.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33808.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33830.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33853.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33875.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33898.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33920.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33942.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33965.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.33987.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34009.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34032.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34054.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34077.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34099.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34121.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34144.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34166.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34188.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34211.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34233.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34256.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34278.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34300.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34323.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34345.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34367.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34390.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34412.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34434.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34457.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34479.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34502.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34524.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34546.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34569.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34591.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34613.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34636.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34658.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34681.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34703.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34725.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34748.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34770.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34815.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34837.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34859.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34882.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34904.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34927.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34949.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34971.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.34994.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35016.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35038.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35061.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35083.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35106.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35128.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35150.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35173.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35195.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35217.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35240.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35262.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35285.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35307.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35329.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35352.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35374.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35396.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35419.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35441.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35463.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35486.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35508.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35531.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35553.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35575.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35598.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35620.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35642.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35665.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35687.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35710.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35732.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35754.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35777.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35799.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35821.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35844.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35866.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35888.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35911.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35933.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35956.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.35978.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36000.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36023.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36045.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36067.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36090.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36112.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36135.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36157.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36179.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36202.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36224.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36246.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36269.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36291.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36314.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36336.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36358.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36381.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36403.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36425.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36448.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36470.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36492.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36515.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36537.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36560.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36582.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36604.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36627.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36649.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36671.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36694.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36716.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36739.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36761.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36783.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36806.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36828.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36850.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36873.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36895.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36918.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36940.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36962.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.36985.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37007.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37029.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37052.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37074.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37096.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37119.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37141.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37164.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37186.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37208.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37231.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37253.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37275.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37298.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37320.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37343.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37365.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37387.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37410.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37432.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37454.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37477.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37499.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37521.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37544.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37566.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37589.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37611.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37633.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37656.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37678.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37700.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37723.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37745.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37768.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37790.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37812.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37835.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37857.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37879.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37902.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37924.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37947.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37969.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.37991.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38014.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38036.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38058.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38081.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38103.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38125.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38148.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38170.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38193.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38215.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38237.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38260.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38282.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38304.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38327.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38349.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38372.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38394.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38416.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38439.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38461.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38483.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38506.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38528.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38550.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38573.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38595.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38618.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38640.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38662.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38685.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38707.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38729.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38752.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38774.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38797.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38819.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38841.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38864.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38886.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38908.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38931.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38953.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38976.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.38998.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39020.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39043.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39065.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39087.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39110.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39132.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39154.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39177.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39199.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39222.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39244.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39266.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39289.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39311.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39333.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39356.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39378.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39401.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39423.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39445.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39468.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39490.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39512.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39535.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39557.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39579.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39602.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39624.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39647.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39669.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39691.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39714.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39736.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39758.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39781.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39803.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39826.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39848.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39870.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39893.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39915.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39937.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39960.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.39982.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40005.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40027.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40049.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40072.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40094.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40116.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40139.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40161.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40183.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40206.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40228.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40251.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40273.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40295.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40318.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40340.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40362.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40385.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40407.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40430.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40452.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40474.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40497.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40519.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40541.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40564.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40586.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40608.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40631.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40653.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40676.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40698.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40720.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40743.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40765.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40787.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40810.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40832.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40855.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40877.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40899.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40922.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40944.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40966.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.40989.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41011.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41034.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41056.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41078.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41101.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41123.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41145.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41168.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41190.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41212.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41235.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41257.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41280.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41302.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41324.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41347.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41369.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41391.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41414.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41436.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41459.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41481.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41503.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41526.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41548.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41570.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41593.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41615.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41637.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41660.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41682.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41705.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41727.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41749.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41772.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41794.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41816.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41839.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41861.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41884.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41906.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41928.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41951.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41973.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.41995.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42018.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42040.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42063.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42085.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42107.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42130.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42152.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42174.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42197.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42219.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42241.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42264.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42286.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42309.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42331.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42353.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42376.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42398.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42420.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42443.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42465.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42488.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42510.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42532.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42555.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42577.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42599.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42622.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42644.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42666.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42689.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42711.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42734.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42756.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42778.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42801.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42823.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42845.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42868.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42890.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42913.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42935.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42957.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.42980.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43002.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43024.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43047.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43069.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43092.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43114.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43136.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43159.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43181.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43203.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43226.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43248.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43270.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43293.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43315.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43338.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43360.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43382.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43405.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43427.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43449.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43472.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43494.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43517.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43539.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43561.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43584.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43606.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43628.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43651.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43673.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43695.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43718.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43740.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43763.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43785.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43807.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43830.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43852.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43874.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43897.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43919.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43942.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43964.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.43986.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44009.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44031.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44053.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44076.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44098.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44121.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44143.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44165.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44188.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44210.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44232.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44255.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44277.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44299.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44322.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44344.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44367.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44389.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44411.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44434.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44456.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44478.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44501.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44523.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44546.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44568.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44590.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44613.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44635.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44657.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44680.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44702.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44724.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44747.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44769.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44792.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44814.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44836.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44859.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44881.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44903.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44926.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44948.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44971.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.44993.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45015.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45038.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45060.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45082.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45105.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45127.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45150.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45172.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45194.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45217.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45239.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45261.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45284.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45306.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45328.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45351.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45373.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45396.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45418.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45440.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45463.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45485.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45507.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45530.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45552.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45575.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45597.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45619.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45642.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45664.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45686.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45709.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45731.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45754.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45776.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45798.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45821.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45843.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45865.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45888.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45910.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45932.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45955.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.45977.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46000.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46022.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46044.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46067.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46089.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46111.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46134.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46156.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46179.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46201.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46223.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46246.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46268.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46290.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46313.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46335.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46357.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46380.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46402.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46425.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46447.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46469.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46492.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46514.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46536.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46559.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46581.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46604.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46626.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46648.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46671.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46693.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46715.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46738.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46760.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46783.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46805.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46850.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46872.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46894.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46917.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46939.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46961.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.46984.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47006.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47029.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47051.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47073.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47096.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47118.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47140.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47163.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47185.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47208.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47230.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47252.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47275.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47297.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47319.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47342.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47364.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47386.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47409.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47431.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47454.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47476.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47498.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47521.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47543.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47565.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47588.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47610.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47633.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47655.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47677.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47700.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47722.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47744.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47767.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47789.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47812.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47834.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47856.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47879.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47901.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47923.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47946.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47968.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.47990.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48013.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48035.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48058.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48080.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48102.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48125.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48147.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48169.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48192.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48214.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48237.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48259.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48281.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48304.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48326.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48348.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48371.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48393.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48415.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48438.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48460.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48483.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48505.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48527.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48550.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48572.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48594.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48617.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48639.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48662.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48684.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48706.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48729.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48751.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48773.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48796.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48818.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48841.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48863.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48885.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48908.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48930.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48952.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48975.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.48997.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49019.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49042.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49064.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49087.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49109.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49131.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49154.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49176.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49198.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49221.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49243.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49266.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49288.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49310.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49333.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49355.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49377.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49400.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49422.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49444.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49467.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49489.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49512.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49534.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49556.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49579.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49601.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49623.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49646.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49668.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49691.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49713.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49735.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49758.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49780.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49802.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49825.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49847.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49870.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49892.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49914.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49937.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49959.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.49981.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50004.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50026.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50048.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50071.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50093.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50116.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50138.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50160.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50183.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50205.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50227.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50250.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50272.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50295.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50317.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50339.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50362.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50384.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50406.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50429.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50451.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50473.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50496.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50518.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50541.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50563.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50585.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50608.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50630.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50652.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50675.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50697.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50720.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50742.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50764.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50787.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50809.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50831.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50854.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50876.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50899.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50921.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50943.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50966.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.50988.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51010.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51033.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51055.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51077.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51100.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51122.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51145.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51167.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51189.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51212.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51234.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51256.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51279.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51301.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51324.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51346.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51368.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51391.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51413.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51435.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51458.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51480.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51502.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51525.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51547.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51570.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51592.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51614.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51637.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51659.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51681.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51704.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51726.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51749.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51771.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51793.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51816.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51838.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51860.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51883.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51905.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51928.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51950.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51972.sum.flag_waterfall_round_2.h5 exists; clobbering
File /mnt/sn1/data1/2460451/zen.2460451.51995.sum.flag_waterfall_round_2.h5 exists; clobbering Saved 1568 *.sum.flag_waterfall_round_2.h5 files starting with /mnt/sn1/data1/2460451/zen.2460451.16897.sum.flag_waterfall_round_2.h5.
# write summary of entirely flagged times/freqs/ants to yaml
all_flagged_times = np.all(flags, axis=1)
all_flagged_freqs = np.all(flags, axis=0)
all_flagged_ants = sorted(always_flagged_ants)
dt = np.median(np.diff(times))
out_yml_str = 'JD_flags: ' + str([[times[flag_stretch][0] - dt / 2, times[flag_stretch][-1] + dt / 2]
for flag_stretch in true_stretches(all_flagged_times)])
df = np.median(np.diff(freqs))
out_yml_str += '\n\nfreq_flags: ' + str([[freqs[flag_stretch][0] - df / 2, freqs[flag_stretch][-1] + df / 2]
for flag_stretch in true_stretches(all_flagged_freqs)])
out_yml_str += '\n\nex_ants: ' + str(all_flagged_ants).replace("'", "").replace('(', '[').replace(')', ']')
print(f'Writing the following to {out_yaml_file}\n' + '-' * (25 + len(out_yaml_file)))
print(out_yml_str)
with open(out_yaml_file, 'w') as outfile:
outfile.writelines(out_yml_str)
Writing the following to /mnt/sn1/data1/2460451/2460451_aposteriori_flags.yaml ------------------------------------------------------------------------------ JD_flags: [[2460451.168855062, 2460451.1691906066], [2460451.1693024547, 2460451.169414303], [2460451.169526151, 2460451.1718749614], [2460451.1719868095, 2460451.1720986576], [2460451.172322354, 2460451.172434202], [2460451.17254605, 2460451.1727697463], [2460451.1728815944, 2460451.1731052906], [2460451.1735526826, 2460451.1736645307], [2460451.173776379, 2460451.174000075], [2460451.1751185562, 2460451.1752304044], [2460451.1753422525, 2460451.1761251893], [2460451.1771318223, 2460451.1773555186], [2460451.177579215, 2460451.177802911], [2460451.1794806323, 2460451.1795924804], [2460451.1799280248, 2460451.180039873], [2460451.180151721, 2460451.180263569], [2460451.1804872653, 2460451.1807109616], [2460451.180934658, 2460451.181046506], [2460451.181158354, 2460451.1813820503], [2460451.1814938984, 2460451.1818294427], [2460451.182276835, 2460451.1832834682], [2460451.1833953164, 2460451.1836190126], [2460451.1837308607, 2460451.183842709], [2460451.184066405, 2460451.184178253], [2460451.184401949, 2460451.184513797], [2460451.1848493414, 2460451.1849611895], [2460451.1859678226, 2460451.1860796707], [2460451.186303367, 2460451.1877573924], [2460451.1887640255, 2460451.1888758736], [2460451.1895469623, 2460451.1896588104], [2460451.1902180505, 2460451.1903298986], [2460451.1904417467, 2460451.190665443], [2460451.190777291, 2460451.1923431647], [2460451.192455013, 2460451.193461646], [2460451.193573494, 2460451.19379719], [2460451.1940208864, 2460451.1950275195], [2460451.196146, 2460451.1963696964], [2460451.196817089, 2460451.196928937], [2460451.1976000257, 2460451.197823722], [2460451.19793557, 2460451.1982711144], [2460451.198718507, 2460451.199054051], [2460451.200731773, 2460451.2012910135], [2460451.201402861, 2460451.20207395], [2460451.2025213423, 2460451.2026331904], [2460451.2028568867, 2460451.202968735], [2460451.2045346084, 2460451.2047583046], [2460451.2054293933, 2460451.2057649377], [2460451.2063241783, 2460451.2067715707], [2460451.207554507, 2460451.2077782033], [2460451.210462558, 2460451.210574406], [2460451.211357343, 2460451.2115810392], [2460451.212363976, 2460451.21269952], [2460451.212811368, 2460451.212923216], [2460451.2130350643, 2460451.2132587605], [2460451.2142653936, 2460451.2143772417], [2460451.2159431153, 2460451.2161668115], [2460451.2171734446, 2460451.217397141], [2460451.219074862, 2460451.2195222545], [2460451.2201933432, 2460451.2205288876], [2460451.220752584, 2460451.220864432], [2460451.2211999763, 2460451.2216473687], [2460451.2224303056, 2460451.222877698], [2460451.223660635, 2460451.2239961787], [2460451.2264568373, 2460451.2267923816], [2460451.227127926, 2460451.227910863], [2460451.228134559, 2460451.2283582552], [2460451.229029344, 2460451.229141192], [2460451.2300359765, 2460451.2302596727], [2460451.230595217, 2460451.230707065], [2460451.2310426096, 2460451.231266306], [2460451.2319373945, 2460451.2331677238], [2460451.2346217493, 2460451.2347335974], [2460451.2349572936, 2460451.2350691417], [2460451.235852078, 2460451.235963926], [2460451.2360757743, 2460451.240885243], [2460451.2413326353, 2460451.2416681796], [2460451.243793294, 2460451.2443525344], [2460451.2444643825, 2460451.2453591675], [2460451.245694712, 2460451.2462539524], [2460451.247372433, 2460451.247484281], [2460451.2479316737, 2460451.248267218], [2460451.2486027624, 2460451.2487146105], [2460451.2488264586, 2460451.2489383067], [2460451.249162003, 2460451.2499449397], [2460451.2505041803, 2460451.2507278766], [2460451.2516226615, 2460451.251958206], [2460451.2521819016, 2460451.252405598], [2460451.252629294, 2460451.2528529903], [2460451.25464256, 2460451.2549781045], [2460451.25643213, 2460451.2566558262], [2460451.2592283324, 2460451.259675725], [2460451.2604586617, 2460451.260794206], [2460451.2612415985, 2460451.261688991], [2460451.262583776, 2460451.262695624], [2460451.263925953, 2460451.2643733453], [2460451.2644851934, 2460451.2647088896], [2460451.2648207378, 2460451.265156282], [2460451.266162915, 2460451.2662747633], [2460451.2663866114, 2460451.2666103076], [2460451.266945852, 2460451.2670577], [2460451.2673932444, 2460451.267728789], [2460451.268064333, 2460451.2682880294], [2460451.26884727, 2460451.268959118], [2460451.269182814, 2460451.269294662], [2460451.2698539025, 2460451.2700775987], [2460451.2719790167, 2460451.272090865], [2460451.272202713, 2460451.272426409], [2460451.2727619535, 2460451.2728738016], [2460451.2736567385, 2460451.2738804347], [2460451.274104131, 2460451.274327827], [2460451.274551523, 2460451.274775219], [2460451.2767884852, 2460451.2769003334], [2460451.2770121815, 2460451.277459574], [2460451.2780188145, 2460451.2782425107], [2460451.279249144, 2460451.2802557764], [2460451.2815979538, 2460451.2822690425], [2460451.284617853, 2460451.2849533972], [2460451.2851770935, 2460451.2852889416], [2460451.2877495997, 2460451.287973296], [2460451.289203625, 2460451.2894273214], [2460451.290769499, 2460451.290881347], [2460451.2916642833, 2460451.2917761314], [2460451.2918879795, 2460451.2919998276], [2460451.2921116757, 2460451.292223524], [2460451.292335372, 2460451.2931183088], [2460451.293342005, 2460451.294460486], [2460451.2946841824, 2460451.2947960305], [2460451.2950197267, 2460451.295243423], [2460451.295467119, 2460451.2955789673], [2460451.2969211447, 2460451.297480385], [2460451.2979277773, 2460451.2981514735], [2460451.298487018, 2460451.298598866], [2460451.299717347, 2460451.2998291953], [2460451.300612132, 2460451.3008358283], [2460451.3026253977, 2460451.302737246], [2460451.3045268157, 2460451.304750512], [2460451.30486236, 2460451.304974208], [2460451.3063163855, 2460451.306987474], [2460451.3081059554, 2460451.3082178035], [2460451.3088888917, 2460451.30900074], [2460451.3094481323, 2460451.310119221], [2460451.3104547653, 2460451.3106784616], [2460451.3113495503, 2460451.3114613984], [2460451.3116850946, 2460451.311908791], [2460451.312020639, 2460451.312244335], [2460451.312803576, 2460451.312915424], [2460451.3134746645, 2460451.3135865126], [2460451.3150405376, 2460451.3151523857], [2460451.316270867, 2460451.3166064112], [2460451.3168301075, 2460451.3170538037], [2460451.31906707, 2460451.319178918], [2460451.3199618543, 2460451.3200737024], [2460451.3220869685, 2460451.3221988166], [2460451.3229817534, 2460451.3230936015], [2460451.323429146, 2460451.323652842], [2460451.3262253483, 2460451.3263371964], [2460451.3264490445, 2460451.3266727407], [2460451.3274556776, 2460451.3275675257], [2460451.329804488, 2460451.330028184], [2460451.3302518805, 2460451.330587425], [2460451.332376994, 2460451.3326006904], [2460451.3328243867, 2460451.333159931], [2460451.3345021084, 2460451.3346139565], [2460451.340206362, 2460451.340541906], [2460451.341548539, 2460451.3416603873], [2460451.3422196275, 2460451.342555172], [2460451.342778868, 2460451.342890716], [2460451.3434499567, 2460451.343897349], [2460451.34445659, 2460451.344568438], [2460451.346693552, 2460451.3468054], [2460451.3497134508, 2460451.349825299], [2460451.350048995, 2460451.350160843], [2460451.3548584636, 2460451.3549703117], [2460451.3627996794, 2460451.3629115275], [2460451.364253705, 2460451.364365553], [2460451.365595882, 2460451.365819578], [2460451.3679446923, 2460451.3680565404], [2460451.369734262, 2460451.3701816546], [2460451.3705171985, 2460451.370852743], [2460451.3725304645, 2460451.372754161], [2460451.373089705, 2460451.3732015532], [2460451.3831560346, 2460451.3838271233], [2460451.385392997, 2460451.385504845], [2460451.3861759338, 2460451.386287782], [2460451.386623326, 2460451.3868470225], [2460451.391544643, 2460451.391656491], [2460451.3921038834, 2460451.3922157316], [2460451.39288682, 2460451.3935579085], [2460451.3943408453, 2460451.3944526934], [2460451.3954593264, 2460451.3956830227], [2460451.3962422633, 2460451.3963541114], [2460451.396801504, 2460451.396913352], [2460451.397696289, 2460451.397808137], [2460451.4006043393, 2460451.4007161874], [2460451.401275428, 2460451.401387276], [2460451.4036242384, 2460451.403959783], [2460451.4040716304, 2460451.4041834786], [2460451.4050782635, 2460451.4051901116], [2460451.405749352, 2460451.4059730484], [2460451.4088810994, 2460451.4089929475], [2460451.40944034, 2460451.409552188], [2460451.409887732, 2460451.4101114282], [2460451.4121246943, 2460451.4122365424], [2460451.4134668717, 2460451.413690568], [2460451.4183881884, 2460451.4185000365], [2460451.418835581, 2460451.419059277], [2460451.424092442, 2460451.424316138], [2460451.427671581, 2460451.4280071254], [2460451.428678214, 2460451.428790062], [2460451.431474417, 2460451.431698113], [2460451.432704746, 2460451.432928442], [2460451.436954974, 2460451.4370668223], [2460451.4387445436, 2460451.439080088], [2460451.4413170503, 2460451.4414288984], [2460451.4416525946, 2460451.441876291], [2460451.4424355314, 2460451.4425473795], [2460451.4475805443, 2460451.4476923924], [2460451.450824139, 2460451.4509359873], [2460451.451830772, 2460451.4519426203], [2460451.4565283926, 2460451.4566402407], [2460451.4571994813, 2460451.457646874], [2460451.462344494, 2460451.4624563423], [2460451.4627918866, 2460451.4629037348], [2460451.4636866716, 2460451.4637985197], [2460451.463910368, 2460451.464022216], [2460451.464134064, 2460451.4643577603], [2460451.4658117853, 2460451.4720752793], [2460451.473641153, 2460451.473753001], [2460451.4739766973, 2460451.4752070266], [2460451.476437356, 2460451.476661052], [2460451.4767729, 2460451.4768847483], [2460451.477108444, 2460451.477220292], [2460451.477891381, 2460451.478003229], [2460451.4782269252, 2460451.480687584], [2460451.480799432, 2460451.484154875], [2460451.484266723, 2460451.4846022674], [2460451.4857207485, 2460451.4858325967], [2460451.4863918372, 2460451.4865036854], [2460451.4867273816, 2460451.487286622], [2460451.4873984703, 2460451.4875103184], [2460451.487957711, 2460451.488181407], [2460451.4909776095, 2460451.491425002], [2460451.4920960907, 2460451.492207939], [2460451.4942212044, 2460451.4943330525], [2460451.494556749, 2460451.494668597], [2460451.494892293, 2460451.49567523], [2460451.495898926, 2460451.496570015], [2460451.496793711, 2460451.4980240404], [2460451.4981358885, 2460451.4983595847], [2460451.498583281, 2460451.498806977], [2460451.4990306734, 2460451.499589914], [2460451.500037306, 2460451.500261002], [2460451.5007083947, 2460451.500820243], [2460451.501043939, 2460451.5014913315], [2460451.5016031796, 2460451.5017150277], [2460451.502050572, 2460451.502833509], [2460451.503057205, 2460451.5045112306], [2460451.504846775, 2460451.5052941674], [2460451.5059652557, 2460451.506077104], [2460451.506188952, 2460451.5065244962], [2460451.5066363444, 2460451.5068600406], [2460451.5069718887, 2460451.508202218], [2460451.5086496104, 2460451.509097003], [2460451.511557661, 2460451.511669509], [2460451.5120050535, 2460451.5121169016], [2460451.5127879903, 2460451.5130116865], [2460451.5137946233, 2460451.514242016], [2460451.514465712, 2460451.5200581173]] freq_flags: [[46859741.2109375, 47836303.7109375], [47958374.0234375, 49667358.3984375], [49911499.0234375, 50033569.3359375], [50155639.6484375, 50521850.5859375], [50765991.2109375, 50888061.5234375], [51010131.8359375, 52474975.5859375], [62240600.5859375, 62850952.1484375], [69931030.2734375, 70053100.5859375], [87387084.9609375, 108261108.3984375], [112167358.3984375, 112411499.0234375], [112655639.6484375, 112777709.9609375], [113021850.5859375, 113754272.4609375], [116439819.3359375, 116561889.6484375], [116683959.9609375, 116806030.2734375], [121566772.4609375, 122055053.7109375], [124740600.5859375, 125228881.8359375], [127548217.7734375, 127670288.0859375], [129989624.0234375, 130111694.3359375], [136337280.2734375, 136459350.5859375], [136825561.5234375, 137313842.7734375], [137435913.0859375, 138046264.6484375], [141464233.3984375, 141586303.7109375], [141708374.0234375, 141830444.3359375], [142074584.9609375, 142318725.5859375], [142684936.5234375, 142807006.8359375], [143051147.4609375, 143173217.7734375], [143783569.3359375, 144271850.5859375], [145858764.6484375, 145980834.9609375], [147445678.7109375, 147567749.0234375], [149887084.9609375, 150009155.2734375], [154159545.8984375, 154403686.5234375], [169906616.2109375, 170150756.8359375], [170883178.7109375, 171005249.0234375], [171737670.8984375, 171859741.2109375], [175155639.6484375, 175399780.2734375], [181137084.9609375, 181381225.5859375], [183212280.2734375, 183334350.5859375], [187362670.8984375, 187606811.5234375], [189926147.4609375, 190048217.7734375], [191146850.5859375, 191513061.5234375], [197128295.8984375, 197372436.5234375], [197738647.4609375, 198226928.7109375], [198348999.0234375, 198715209.9609375], [199203491.2109375, 199325561.5234375], [201278686.5234375, 201644897.4609375], [201766967.7734375, 202377319.3359375], [204940795.8984375, 205062866.2109375], [207138061.5234375, 207260131.8359375], [207992553.7109375, 209213256.8359375], [209945678.7109375, 210067749.0234375], [212142944.3359375, 212265014.6484375], [215194702.1484375, 215316772.4609375], [220687866.2109375, 220809936.5234375], [222885131.8359375, 223617553.7109375], [227401733.3984375, 227523803.7109375], [227645874.0234375, 227767944.3359375], [229110717.7734375, 229354858.3984375], [231063842.7734375, 231185913.0859375]] ex_ants: [[3, Jnn], [7, Jee], [7, Jnn], [8, Jnn], [9, Jee], [9, Jnn], [10, Jee], [10, Jnn], [18, Jee], [18, Jnn], [20, Jee], [22, Jnn], [27, Jee], [27, Jnn], [28, Jee], [28, Jnn], [29, Jnn], [31, Jnn], [32, Jnn], [34, Jee], [35, Jnn], [36, Jee], [37, Jnn], [40, Jnn], [45, Jee], [46, Jee], [47, Jee], [47, Jnn], [51, Jee], [54, Jnn], [55, Jee], [61, Jee], [61, Jnn], [62, Jee], [63, Jee], [63, Jnn], [64, Jee], [64, Jnn], [69, Jee], [73, Jee], [73, Jnn], [77, Jee], [77, Jnn], [78, Jee], [78, Jnn], [80, Jnn], [81, Jee], [81, Jnn], [83, Jee], [83, Jnn], [86, Jee], [86, Jnn], [87, Jee], [88, Jee], [88, Jnn], [90, Jee], [90, Jnn], [92, Jee], [93, Jnn], [95, Jee], [96, Jnn], [97, Jnn], [103, Jnn], [104, Jnn], [107, Jee], [107, Jnn], [108, Jnn], [109, Jnn], [115, Jnn], [116, Jnn], [117, Jnn], [119, Jee], [119, Jnn], [120, Jee], [120, Jnn], [127, Jee], [127, Jnn], [129, Jee], [130, Jee], [130, Jnn], [131, Jnn], [134, Jnn], [136, Jnn], [141, Jee], [154, Jnn], [161, Jnn], [170, Jee], [171, Jnn], [173, Jnn], [174, Jnn], [175, Jee], [175, Jnn], [176, Jee], [176, Jnn], [177, Jee], [177, Jnn], [178, Jee], [178, Jnn], [180, Jee], [180, Jnn], [183, Jee], [183, Jnn], [188, Jnn], [192, Jee], [195, Jee], [195, Jnn], [196, Jee], [196, Jnn], [199, Jee], [199, Jnn], [200, Jee], [200, Jnn], [202, Jnn], [204, Jnn], [206, Jee], [209, Jnn], [212, Jnn], [213, Jee], [213, Jnn], [214, Jee], [214, Jnn], [215, Jnn], [217, Jee], [218, Jnn], [229, Jee], [231, Jnn], [232, Jee], [241, Jee], [241, Jnn], [242, Jee], [242, Jnn], [243, Jee], [243, Jnn], [245, Jnn], [246, Jee], [246, Jnn], [250, Jee], [251, Jee], [252, Jnn], [253, Jnn], [255, Jee], [255, Jnn], [256, Jnn], [261, Jee], [261, Jnn], [262, Jee], [262, Jnn], [266, Jee], [267, Jnn], [268, Jnn], [269, Jnn], [272, Jee], [272, Jnn], [281, Jee], [320, Jee], [320, Jnn], [321, Jee], [321, Jnn], [323, Jee], [323, Jnn], [324, Jee], [324, Jnn], [325, Jee], [325, Jnn], [326, Jee], [326, Jnn], [327, Jee], [327, Jnn], [328, Jee], [328, Jnn], [329, Jee], [329, Jnn], [331, Jee], [331, Jnn], [332, Jee], [332, Jnn], [333, Jee], [333, Jnn], [336, Jee], [336, Jnn], [340, Jee], [340, Jnn]]
Metadata¶
for repo in ['hera_cal', 'hera_qm', 'hera_filters', 'hera_notebook_templates', 'pyuvdata']:
exec(f'from {repo} import __version__')
print(f'{repo}: {__version__}')
hera_cal: 3.6.dev110+gcc0a13d hera_qm: 2.1.5.dev6+g23b7cf7 hera_filters: 0.1.5
hera_notebook_templates: 0.1.dev734+g90f16f4 pyuvdata: 2.4.2
print(f'Finished execution in {(time.time() - tstart) / 60:.2f} minutes.')
Finished execution in 45.71 minutes.