Changeset 0779a9 for util/src/CalculateDensity.sh
- Timestamp:
- Jun 13, 2008, 2:26:50 PM (17 years ago)
- Children:
- 1f9f1b
- Parents:
- 3f0c46
- File:
-
- 1 edited
-
util/src/CalculateDensity.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
util/src/CalculateDensity.sh
r3f0c46 r0779a9 2 2 # 3 3 # calculates the density of a molecule contained in a espack config file 4 5 MOLECUILDER="/home/heber/workspace/ESPACK/bin/molecuilder" 4 6 5 7 if [ -z $1 ]; then … … 9 11 else 10 12 config=$1 13 if [ ! -e $config ]; then 14 echo "Config file $config does not exist!" 15 exit 1 16 fi 17 fi 18 19 # if xyz is missing, call molecuilder to create it 20 if [ ! -e ${config}.xyz ]; then 21 echo "Config xyz file ${config}.xyz does not exist, creating it" 22 $MOLECUILDER ${config} -t 0. 0. 0. 11 23 fi 12 24
Note:
See TracChangeset
for help on using the changeset viewer.
