Added field maps of elements.

This commit is contained in:
2011-04-08 15:42:30 +00:00
parent d14a857d9d
commit d0dd678d02
11 changed files with 1514832 additions and 1 deletions

View File

@ -246,6 +246,13 @@ void QmuSRSim::StartCalc()
open(NEWMACF,">1000.mac");
print NEWMACF @lines;
close(NEWMACF);
my $DIR=`pwd`;
chomp $DIR;
my $SimDIR="~/LEM/simulation/geant4/musrSim";
my $SYSROOT="/usr/local";
my $cmd="cd $SimDIR; . /usr/local/geant4/4.9.3/env.sh; export SYSROOT=$SYSROOT; cd run; $SimDIR/bin/Linux-g++/musrSim $DIR/1000.mac";
system("$cmd");
}