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

@ -1,6 +1,6 @@
# Form implementation generated from reading ui file 'QmuSRSim.ui'
#
# Created: Fri Apr 8 15:45:19 2011
# Created: Fri Apr 8 17:23:58 2011
# by: The PerlQt User Interface Compiler (puic)
#
# WARNING! All changes made in this file will be lost!
@ -18593,6 +18593,13 @@ sub 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");
}