From b2b5f6b68c9c14b713c45c6ea355454fa01ade91 Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Sun, 24 Apr 2016 13:00:57 -0500 Subject: [PATCH] removed useless check for croaking --- processing/post/addDisplacement.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/processing/post/addDisplacement.py b/processing/post/addDisplacement.py index 8a87a4b9f..ab0c98299 100755 --- a/processing/post/addDisplacement.py +++ b/processing/post/addDisplacement.py @@ -166,14 +166,6 @@ for name in filenames: np.zeros((table.data.shape[0], 3-table.data[:,9:].shape[1]),dtype='f'))) # fill coords up to 3D with zeros - if remarks != []: damask.util.croak(remarks) - if errors != []: - damask.util.croak(errors) - table.close(dismiss = True) - continue - -# --------------- figure out size and grid --------------------------------------------------------- - coords = [np.unique(table.data[:,9+i]) for i in xrange(3)] mincorner = np.array(map(min,coords)) maxcorner = np.array(map(max,coords))