source: trunk/VerifyDuchamp.sh @ 278

Last change on this file since 278 was 278, checked in by Matthew Whiting, 17 years ago

Updated the verification files. Also commented out messages in GaussSmooth::define().

  • Property svn:executable set to *
File size: 2.1 KB
Line 
1#!/bin/csh
2
3echo " "
4echo "Running the first Duchamp test:"
5echo "  [This is a simple sigma-clipping search]"
6rm -f /tmp/duchamptest
7./Duchamp -p verification/input1 > /tmp/duchamptest
8echo "Done. Comparison to standard result:"
9echo "Differences with Results:"
10diff -I"Results of the Duchamp source finder:" verification/results1.txt verification/stdResults1.txt
11echo "Differences with Log:"
12diff -I"New run of the Duchamp sourcefinder" verification/log1.txt verification/stdLog1.txt
13
14echo " "
15echo "Running the second Duchamp test:"
16echo "  [This uses the FDR method]"
17rm -f /tmp/duchamptest
18./Duchamp -p verification/input2 > /tmp/duchamptest
19echo "Done. Comparison to standard result:"
20echo "Differences with Results:"
21diff -I"Results of the Duchamp source finder:" verification/results2.txt verification/stdResults2.txt
22echo "Differences with Log:"
23diff -I"New run of the Duchamp sourcefinder" verification/log2.txt verification/stdLog2.txt
24
25echo " "
26echo "Running the third Duchamp test:"
27echo "  [This spatially smoothes the cube, then searches with simple sigma-clipping]"
28rm -f /tmp/duchamptest
29./Duchamp -p verification/input4 > /tmp/duchamptest
30rm -f /tmp/duchamptest
31echo "Done. Comparison to standard result:"
32echo "Differences with Results:"
33diff -I"Results of the Duchamp source finder:" verification/results4.txt verification/stdResults4.txt
34echo "Differences with Log:"
35diff -I"New run of the Duchamp sourcefinder" verification/log4.txt verification/stdLog4.txt
36
37echo " "
38echo "Running the fourth Duchamp test:"
39echo "  [This reconstructs the cube, then searches with simple sigma-clipping]"
40echo "  [It should take a bit longer than the others.]"
41rm -f /tmp/duchamptest
42./Duchamp -p verification/input3 > /tmp/duchamptest
43rm -f /tmp/duchamptest
44echo "Done. Comparison to standard result:"
45echo "Differences with Results:"
46diff -I"Results of the Duchamp source finder:" verification/results3.txt verification/stdResults3.txt
47echo "Differences with Log:"
48diff -I"New run of the Duchamp sourcefinder" verification/log3.txt verification/stdLog3.txt
49
50echo " "
51echo "No differences? Then everything worked as expected\!"
Note: See TracBrowser for help on using the repository browser.