function I = after(e)
%AFTER Identifies the samples that occur after the specfied event
%
%   See also BEFORE.
%
%   Authors: James G. Owen
%   Copyright 1986-2003 The MathWorks, Inc.
%   $Revision: 1.1.6.1 $  $Date: 2004/12/26 21:34:13 $

if isempty(e.Parent)
    I = [];
else
    I = find(e.Parent.Time>e.Time);
end
