Mercurial > cgi-bin > hgwebdir.cgi > VMS > 2__runs_and_data
view scripts/SetBaseDirs.pm @ 4:ef2b8d975a99
exec time vs task size data generation and calculation splited in two scripts
| author | Merten Sach <msach@mailbox.tu-berlin.de> |
|---|---|
| date | Mon, 12 Dec 2011 20:26:28 +0100 |
| parents | |
| children |
line source
1 #!/usr/bin/perl
3 #Set the base directories -- this should be used by all other scripts in
4 # this directory
6 package SetBaseDirs;
7 require(Exporter);
8 @ISA = qw(Exporter);
9 @EXPORT = qw($baseDir $scriptsDir $executablesDir $resultsBaseDir $codeBaseDir);
11 BEGIN
12 {
13 $baseDir ="C:/D/2__Work/1__Development/2__runs_and_data";
14 $scriptsDir = "$baseDir/scripts";
15 $executablesDir = "$baseDir/executables";
16 $resultsBaseDir = "$baseDir/results_from_runs";
17 $codeBaseDir = "$baseDir/../0__Code/";
18 };
