annotate scripts/SetBaseDirs.pm @ 13:c93fb902a754

Vthread kmeans console line exploration for backup tuning
author Merten Sach <msach@mailbox.tu-berlin.de>
date Fri, 03 Feb 2012 16:52:11 +0100
parents
children
rev   line source
Me@0 1 #!/usr/bin/perl
Me@0 2
Me@0 3 #Set the base directories -- this should be used by all other scripts in
Me@0 4 # this directory
Me@0 5
Me@0 6 package SetBaseDirs;
Me@0 7 require(Exporter);
Me@0 8 @ISA = qw(Exporter);
Me@0 9 @EXPORT = qw($baseDir $scriptsDir $executablesDir $resultsBaseDir $codeBaseDir);
Me@0 10
Me@0 11 BEGIN
Me@0 12 {
Me@0 13 $baseDir ="C:/D/2__Work/1__Development/2__runs_and_data";
Me@0 14 $scriptsDir = "$baseDir/scripts";
Me@0 15 $executablesDir = "$baseDir/executables";
Me@0 16 $resultsBaseDir = "$baseDir/results_from_runs";
Me@0 17 $codeBaseDir = "$baseDir/../0__Code/";
Me@0 18 };