From 8bb5d9dd2cba0f6d3a3e903e60ceaa12c2689121 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludger=20K=C3=BCperkoch?= Date: Tue, 28 Feb 2017 14:59:21 +0100 Subject: [PATCH] Additional header information. --- pylot/core/loc/nll.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pylot/core/loc/nll.py b/pylot/core/loc/nll.py index f9b36e76..8a03ee0d 100644 --- a/pylot/core/loc/nll.py +++ b/pylot/core/loc/nll.py @@ -14,7 +14,7 @@ __version__ = _getVersionString() class NLLocError(EnvironmentError): pass -def export(picks, fnout): +def export(picks, fnout, parameter): ''' Take dictionary and exports picking data to a NLLOC-obs without creating an ObsPy event object. @@ -24,9 +24,12 @@ def export(picks, fnout): :param fnout: complete path to the exporting obs file :type fnout: str + + :param: parameter, all input information + :type: object ''' # write phases to NLLoc-phase file - writephases(picks, 'NLLoc', fnout) + writephases(picks, 'NLLoc', fnout, parameter) def modify_inputs(ctrfn, root, nllocoutn, phasefn, tttn):