Added inline_doc fragments.
This commit is contained in:
parent
6753ff7f44
commit
eddf89f588
2 changed files with 25 additions and 0 deletions
|
@ -10,6 +10,17 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
: <<inline_doc
|
||||||
|
desc: prepare current iteration files for ICA report
|
||||||
|
usage: do_ica_prep $DEST_ICA/$ITERATION
|
||||||
|
input vars: $1 directory where files from current iteration are stored
|
||||||
|
externals: --
|
||||||
|
modifies: --
|
||||||
|
returns: --
|
||||||
|
on error:
|
||||||
|
on success:
|
||||||
|
inline_doc
|
||||||
|
|
||||||
local CMP_DIR=$1
|
local CMP_DIR=$1
|
||||||
local F L BN
|
local F L BN
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,20 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
: <<inline_doc
|
||||||
|
desc: creates the ICA report
|
||||||
|
usage: do_ica_work $PREV $ITERATION $ICALOGDIR $DEST_ICA
|
||||||
|
input vars: $1 previous iteration
|
||||||
|
$2 current iteration
|
||||||
|
$3 ICA log dir
|
||||||
|
$4 directory where ICA iterations are stored
|
||||||
|
externals: --
|
||||||
|
modifies: --
|
||||||
|
returns: --
|
||||||
|
on error:
|
||||||
|
on success:
|
||||||
|
inline_doc
|
||||||
|
|
||||||
local RAWDIFF=/tmp/rawdiff.$$
|
local RAWDIFF=/tmp/rawdiff.$$
|
||||||
local REPORT="${3}/REPORT.${1}V${2}"
|
local REPORT="${3}/REPORT.${1}V${2}"
|
||||||
|
|
||||||
|
|
Reference in a new issue