File: RunTest.sh

package info (click to toggle)
cpptraj 5.1.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 138,900 kB
  • sloc: cpp: 145,621; ansic: 34,635; sh: 11,365; f90: 971; makefile: 770; awk: 242
file content (25 lines) | stat: -rwxr-xr-x 513 bytes parent folder | download
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
#!/bin/bash

. ../MasterTest.sh

CleanFiles ptraj.in cd.dat cf.dat ci.dat cvt.dat
TESTNAME='clusterdihedral test'
Requires netcdf notparallel
# clusterdihedral
TOP="../tz2.parm7"
INPUT="ptraj.in"
cat > ptraj.in <<EOF
noprogress
trajin ../tz2.nc
clusterdihedral TZ2 :2-12 phibins 2 psibins 2 \
  out cd.dat framefile cf.dat clusterinfo ci.dat clustervtime cvt.dat
EOF
RunCpptraj "$TESTNAME"
DoTest cd.dat.save cd.dat
DoTest cf.dat.save cf.dat
DoTest ci.dat.save ci.dat
DoTest cvt.dat.save cvt.dat

EndTest

exit 0