From 25921e371859d16b0b729a2076a9c2a005c9490d Mon Sep 17 00:00:00 2001 From: Sebastian Wehling-Benatelli Date: Fri, 21 Nov 2014 10:05:27 +0100 Subject: [PATCH] started to improve documentation in read/data --- pylot/core/read/data.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pylot/core/read/data.py b/pylot/core/read/data.py index 5092a92f..56eb6f52 100644 --- a/pylot/core/read/data.py +++ b/pylot/core/read/data.py @@ -14,9 +14,15 @@ class Data(object): variables. :type parent: PySide.QtGui.QWidget object, optional - :param parent: A PySide.QtGui.QWidget class utilized when + :param parent: A PySide.QtGui.QWidget object utilized when called by a GUI to display a PySide.QtGui.QMessageBox instead of printing to standard out. + :type wfdata: ~obspy.core.stream.Stream object, optional + :param wfdata: ~obspy.core.stream.Stream object containing all available + waveform data for the actual event + :type evtdata: ~obspy.core.event.Event object, optional + :param evtdata ~obspy.core.event.Event object containing all derived or + loaded event. Container object holding, e.g. phase arrivals, etc. ''' def __init__(self, parent=None, wfdata=None, evtdata=None):