Mercurial > cgi-bin > hgwebdir.cgi > VMS > 2__runs_and_data
diff scripts/SetBaseDirs.pm @ 0:21573f5b2e84
initial add -- all data from Sean's machine
| author | Me@portablequad |
|---|---|
| date | Mon, 28 Nov 2011 15:37:08 -0800 |
| parents | |
| children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/scripts/SetBaseDirs.pm Mon Nov 28 15:37:08 2011 -0800 1.3 @@ -0,0 +1,18 @@ 1.4 +#!/usr/bin/perl 1.5 + 1.6 +#Set the base directories -- this should be used by all other scripts in 1.7 +# this directory 1.8 + 1.9 +package SetBaseDirs; 1.10 + require(Exporter); 1.11 + @ISA = qw(Exporter); 1.12 + @EXPORT = qw($baseDir $scriptsDir $executablesDir $resultsBaseDir $codeBaseDir); 1.13 + 1.14 +BEGIN 1.15 + { 1.16 + $baseDir ="C:/D/2__Work/1__Development/2__runs_and_data"; 1.17 + $scriptsDir = "$baseDir/scripts"; 1.18 + $executablesDir = "$baseDir/executables"; 1.19 + $resultsBaseDir = "$baseDir/results_from_runs"; 1.20 + $codeBaseDir = "$baseDir/../0__Code/"; 1.21 + };
