11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
# Revision 1.5 1997/05/15 07:11:45 peterg
# Removed "tolower" function
#
# Revision 1.4 1997/05/01 13:51:37 peterg
# Replaced float by double.
#
# Revision 1.3 1997/05/01 13:42:43 peterg
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Copyright (c) P.J.Gawthrop, 1997.
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.6 1997/05/15 07:21:44 peterg
## Put back "tolower"
##
# Revision 1.5 1997/05/15 07:11:45 peterg
# Removed "tolower" function
#
# Revision 1.4 1997/05/01 13:51:37 peterg
# Replaced float by double.
#
# Revision 1.3 1997/05/01 13:42:43 peterg
|
44
45
46
47
48
49
50
51
52
53
54
55
56
|
echo "Symbolic parameter file ($1_sympar.h)" >> $1_sympar.h
echo "Generated by MTT at `date`" >> $1_sympar.h
echo '*/' >> $1_sympar.h
echo >> $1_sympar.h
#Write out the variables in c format.
awk '{i++; print "double", tolower($1) ";"}' $1_sympar.txt >> $1_sympar.h
# Now invoke the standard error handling.
# mtt_error mtt_error.txt
|
|
|
47
48
49
50
51
52
53
54
55
56
57
58
59
|
echo "Symbolic parameter file ($1_sympar.h)" >> $1_sympar.h
echo "Generated by MTT at `date`" >> $1_sympar.h
echo '*/' >> $1_sympar.h
echo >> $1_sympar.h
#Write out the variables in c format.
gawk '{i++; print "double", tolower($1) ";"}' $1_sympar.txt >> $1_sympar.h
# Now invoke the standard error handling.
# mtt_error mtt_error.txt
|