More work towards plotting implantation profiles.

This commit is contained in:
2009-11-20 13:19:51 +00:00
parent 68a38ee357
commit 17b4ebbc2f
4 changed files with 2993 additions and 23 deletions

View File

@ -608,3 +608,26 @@ void TrimSPGUI::ConfirmQuit()
# print STDOUT $ENV{'TRIMBIN'}."\n";
}
void TrimSPGUI::PlotProfiles()
{
my $files_ref=Qt::FileDialog::getOpenFileNames(
"RGE Files (*.rge)",
"./",
this,
"Select RGE files dialog",
"Choose RGE file to plot");
my @files = @$files_ref;
my $filenames=join(",",@files);
print "Selected file: $filenames\n";
# Now that we have the file list send it to root macro for plotting.
}
void TrimSPGUI::PlotFraction()
{
}