Overview
Comment: | Initial revision |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
4315e396644a57ac5f2bc6f651050163 |
User & Date: | gawthrop@users.sourceforge.net on 1999-11-16 21:51:26 |
Other Links: | branch diff | manifest | tags |
Context
1999-11-16
| ||
22:09:01 | Automativally looks for base system in library check-in: b0e7685fe1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
21:51:26 | Initial revision check-in: 4315e39664 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
05:53:21 | Added sensitivity (-s) switch check-in: e2fe39fe52 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Added mttroot/mtt/bin/trans/abg2sensitivity_fig version [15a0671b8f].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | #!/bin/sh ## Converts abg.fig to sensitivity version ## Copyright (C) 1999 by Peter J. Gawthrop filename=$1_abg.fig sfilename=s$filename if [ -f "$sfilename" ]; then echo $sfilename exists -- no action taken exit else echo Creating $sfilename fi awk ' function modulo10(x) { return x-int(x/10)*10 } { level_index = 4; if ( match($NF,"001")&&(modulo10($level_index)==0)&&(index($NF,"[") != 1) ){ last = $NF if ( (index($NF,"0") != 1)&&(index($NF,"1") != 1)&&(index($NF,"SS") != 1) ) { $NF = sprintf("s%s", $NF); print $0; } else { x_1_index = 10; x_2_index = 12; y_1_index = 11; y_2_index = 13; colour_index=3; yellow = 6; ## save details colour=$colour_index; component=$NF; x_1 = $x_1_index; x_2 = $x_2_index; y_1 = $y_1_index; y_2 = $y_2_index; ## print the label $colour_index = yellow; $NF = "[1,2]\\001"; $x_1_index = x_1+1; $x_2_index = x_2+1; $y_1_index = y_1+1; $y_2_index = y_2+1; print $0; ## print the component $colour_index = colour; $NF = component; $x_1_index = x_1; $x_1_index = x_1; $y_1_index = y_1; $y_2_index = y_2; print $0; } } else print $0; '} < $filename >$sfilename |