1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
|
package Demeter::UI::Screen::Interview;
=for Copyright
.
Copyright (c) 2006-2019 Bruce Ravel (http://bruceravel.github.io/home).
All rights reserved.
.
This file is free software; you can redistribute it and/or
modify it under the same terms as Perl itself. See The Perl
Artistic License.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
=cut
use Moose::Role;
use Term::ReadLine;
## ---------------------------------------------------------------
## color with Term::ANSIColor if available, otherwise normal text
use subs qw(BOLD RED RESET YELLOW GREEN BLUE UNDERLINE);
my $ANSIColor_exists = ((not Demeter->is_windows) and (eval "require Term::ANSIColor"));
if ($ANSIColor_exists) {
import Term::ANSIColor qw(:constants);
} else {
foreach my $s (qw(BOLD RED RESET YELLOW GREEN BLUE UNDERLINE)) {
eval "sub $s {q{}}";
};
};
my $clear = `clear`;
my $term = new Term::ReadLine 'demeter';
my $space = 'r';
my $message = q{};
sub interview {
my ($fit, $noplot) = @_;
$fit->po->start_plot; # problems with cleanup after single rmr plot without this line (??? !!!)
$fit->po->r_pl('rmr');
$fit->po->plot_fit(1);
#$fit->mo->screen(1);
my @params = (q{}, qw(kweight space rpart qpart paths bkg res));
#plot($fit, 1) unless $noplot;
I_plot($fit, 1, $fit->po->r_pl) unless $noplot;
&I_query;
my $prompt = "Choose data by number, select an operation by letter, or q=quit > ";
while ( defined ($_ = $term->readline($prompt)) ) {
DISPATCH: {
$fit->po->cleantemp, return if ($_ =~ m{\Aq});
$fit->I_help, last DISPATCH if ($_ =~ m{\Ah});
$fit->I_version, last DISPATCH if ($_ =~ m{\Av});
$fit->I_log, last DISPATCH if ($_ =~ m{\Al});
$fit->I_plot($1), last DISPATCH if ($_ =~ m{\Ap?(\d+)});
$fit->I_data_report($1), last DISPATCH if ($_ =~ m{\Ad(\d+)});
$fit->I_gds, last DISPATCH if ($_ =~ m{\Ag});
#$fit->I_save($1), last DISPATCH if ($_ =~ m{\As(\d+)});
$fit->I_stats, last DISPATCH if ($_ =~ m{\As});
$fit->I_set($params[$1]), last DISPATCH if ($_ =~ m{\Ac([1-7])});
};
I_query($fit);
};
};
sub I_help {
my ($fit) = @_;
$message = "No help yet";
return 0;
};
sub I_version {
my ($fit) = @_;
$message = Demeter->identify . "\n";
return 0;
};
sub I_data_report {
my ($fit, $n) = @_;
my @data = @{ $fit->data };
$message = BOLD . YELLOW . $data[$n-1]->name . RESET . "\n";
$message .= $data[$n-1]->fit_parameter_report;
return 0;
};
sub I_stats {
my ($fit) = @_;
$message = $fit->template("report", "statistics");
return 0;
};
sub I_log {
my ($fit) = @_;
my $logout = File::Spec->catfile($fit->stash_folder, "...probe_log");
$fit->logfile($logout);
my $pager = $ENV{PAGER} || "more";
system "$pager $logout";
unlink $logout;
}
sub I_query {
my ($fit) = @_;
my @data = @{ $fit->data };
my $plot = $fit->po;
print $clear;
print BOLD, GREEN, "c#", RESET, ") change plotting parameter:\n";
print BOLD, GREEN, " 1", RESET, ") k-weight = ", $plot->kweight, "\t\t\t";
print BOLD, GREEN, " g", RESET, ") show guess, def, set parameters\n";
print BOLD, GREEN, " 2", RESET, ") plot space = ", $space, "\t\t\t";
print BOLD, GREEN, " s", RESET, ") show fit statistics\n";
print BOLD, GREEN, " 3", RESET, ") R part = ", $plot->r_pl, "\t";
print "\t\t" if ($plot->r_pl ne 'rmr');
print BOLD, GREEN, "d#", RESET, ") show fit parameters\n";
print BOLD, GREEN, " 4", RESET, ") q part = ", $plot->q_pl, "\t\t\t";
print BOLD, GREEN, " l", RESET, ") show log file\n";
print BOLD, GREEN, " 5", RESET, ") plot paths = ", $plot->plot_paths, "\t\t\t";
print BOLD, GREEN, " v", RESET, ") show version\n";
print BOLD, GREEN, " 6", RESET, ") plot background = ", $plot->plot_bkg, "\n";
print BOLD, GREEN, " 7", RESET, ") plot residual = ", $plot->plot_res, "\n";
print "\n", BOLD, RED, "Data included in the fit", RESET, "\n";
my $i = 1;
foreach my $d (@data) {
printf "%s%s %3d. %s%s : %s\n", BOLD, YELLOW, $i, RESET, $d->group, $d->name;
++$i;
};
print "\n", BOLD, RED, "Messages:", RESET, "\n" if $message;
foreach my $line (split(/\n/, $message)) {
print "\t", $line, $/;
};
$message = q{};
return 0;
};
sub I_plot {
my ($fit, $i, $this) = @_;
$this ||= $space;
$this = 'rmr' if (($this eq 'r') and ($fit->po->r_pl eq 'rmr'));
$fit->po->start_plot; # reset the plot for the next go around
my @data = @{ $fit->data };
my @paths = @{ $fit->paths };
--$i;
return if ($i > $#data);
$data[$i] -> plot($this);
$data[$i] -> plot_window($this) if $this ne 'rmr';
if ($fit->po->plot_paths) {
foreach my $p (@paths) {
next unless ($data[$i] eq $p->data);
#next unless ($p->name eq "Na");
$p -> plot($this);
};
};
};
sub I_save {
## my ($i) = @_;
## plot($i); # this assures that the data are up to date for saving
## --$i;
## my $k = $plot->get("kweight");
## if ($space eq 'r') {
## my $part = $plot->get('r_pl');
## my $command = "write_data(file=\"$data[$i].$k.rsp\", label=\"r Mdata Mfit Rdata Rfit\",\n";
## $command .= " $data[$i].r, $data[$i].chir_mag, $data[$i]_fit.chir_mag,\n";
## $command .= " $data[$i].chir_re, $data[$i]_fit.chir_re)\n";
## $data[$i] -> dispose($command);
## };
## print "\nWrote $data[$i].$k.rsp ", UNDERLINE, "[return to continue] >", RESET, " ";
## my $how = <STDIN>;
## print $/;
1;
};
sub I_show_gds {
my ($fit) = @_;
my @gds = @{ $fit->gds };
print $clear;
print BOLD, RED, "Guess, def, set parameters:", RESET, "\n\n";
my ($eol, $count) = ("\t", 0);
foreach my $g (@gds) {
next if ($g->gds eq 'skip');
++$count;
$eol = ($count%2) ? "\t\t" : "\n";
printf(" %2d. %s%s:%s %-15s%s = %.4f%s", $count, BOLD.GREEN,
substr($g->gds, 0, 1), YELLOW, $g->name, RESET,
$g->bestfit, $eol);
};
print "\n" if ($eol ne "\n");
};
sub I_gds {
my ($fit) = @_;
my @gds = @{ $fit->gds };
my $prompt = "Choose a parameter for a full report or r to return >";
$fit->I_show_gds;
while ( defined ($_ = $term->readline($prompt)) ) {
return if ($_ =~ m{\Ar}i);
if ($_ =~ m{\A\d}i) {
if (exists $gds[$_-1]) {
$fit->I_show_gds;
my $report = $gds[$_-1]->full_report;
my $this = $gds[$_-1]->name;
my $that = BOLD . YELLOW . $this . RESET;
$report =~ s{^$this}{$that};
print "\n", $report,
};
};
}
};
sub I_set {
my ($fit, $which) = @_;
my @data = @{ $fit->data };
my $prompt;
SWITCH: {
($which eq 'kweight') and do {
$prompt = "Choose a k-weight [123] >";
while ( defined ($_ = $term->readline($prompt)) ) {
next if ($_ !~ m{[123]});
$fit->po->kweight($_);
map { $_ -> update_fft(1) } @data;
return;
};
};
($which eq 'space') and do {
$prompt = "Choose a plotting space [krq] >";
while ( defined ($_ = $term->readline($prompt)) ) {
next if ($_ !~ m{[krq]});
$space = $_;
return;
};
};
($which eq 'rpart') and do {
$prompt = "Choose a part to plot in R [rmip] >";
while ( defined ($_ = $term->readline($prompt)) ) {
next if ($_ !~ m{[rmip]});
$fit->po->r_pl($_);
return;
};
};
($which eq 'qpart') and do {
$prompt = "Choose a part to plot in q [rmip] >";
while ( defined ($_ = $term->readline($prompt)) ) {
next if ($_ !~ m{[rmip]});
$fit->po->q_pl($_);
return;
};
};
($which eq 'paths') and do {
$prompt = "Plot paths [yn] >";
while ( defined ($_ = $term->readline($prompt)) ) {
next if ($_ !~ m{[yn]});
$fit->po->plot_paths($_ eq 'y');
return;
};
};
($which eq 'bkg') and do {
$prompt = "Plot background [yn] >";
while ( defined ($_ = $term->readline($prompt)) ) {
next if ($_ !~ m{[yn]});
$fit->po->plot_bkg($_ eq 'y');
return;
};
};
($which eq 'res') and do {
$prompt = "Plot residual [yn] >";
while ( defined ($_ = $term->readline($prompt)) ) {
next if ($_ !~ m{[yn]});
$fit->po->plot_res($_ eq 'y');
return;
};
};
};
};
1;
=head1 NAME
Demeter::UI::Screen::Interview - Simple screen interface to Demeter fit results
=head1 VERSION
This documentation refers to Demeter version 0.9.26.
=head1 SYNOPSIS
use Demeter;
my $fit = Demeter::Fit->new(project=>'project.dpj');
$fit->interview;
=head1 DESCRIPTION
This provides a simple, screen-based machanism for interacting with a
Demeter fit result imported from a project file. This interview is
implemented as a method of the Fit object. The screen interview
allows you to plot data from the fit, examine the fitting parameters
and statistics, and change some of the plotting parameters. It is
bare-bones, but still useful. It is a handy thing to add to the end
of a Demeter fitting script as a simple plotting back-end to the fit.
=head1 METHOD
=over 4
=item C<interview>
Explore the Demeter project file via an on-screen interview. The
first argument is the fit object to probe. The optional second
argument is a boolean which, when true, suppresses the plotting of the
first data object with its fit before the beginning of the interview.
The interview understands these concise commands:
=over 4
=item C<number>
Plot the data set using its number in the data list.
=item C<c#>
Change one of the plotting parameters. For example C<c1> is used to
change the k-weight used in the plots and Fourier transforms.
=item C<d#>
Show the operational parameters of the fit for that data set.
=item C<g>
Examine the guess, def, and set parameters from the fit. Enter a
number from the list of parameters to see all the details of that
parameter.
=item C<s>
Examine the fitting statistics.
=item C<l>
Show the log file.
=item C<h>
Get a bit of help written to the screen.
=item C<v>
Show the Demeter version number.
=back
Here is an example of the main interview screen:
c#) change plotting parameter:
1) k-weight = 1 g) show guess, def, set parameters
2) plot space = r s) show statistics
3) R part = m d#) show fit parameters
4) q part = r l) show log file
5) plot paths = 0 v) show version
.
Data included in the fit
1. data0 : 10 K copper data
2. data1 : 150 K copper data
.
Choose data by number, select an operation by letter, or q=quit >
And here is an example of the guess, def, set interview with a report
on one of the parameters:
Guess, def, set parameters:
.
1. g: alpha010 = -0.0067 2. g: alpha150 = 0.0030
3. g: amp = 0.9782 4. g: enot = 1.4856
5. g: theta = 314.8034 6. s: sigmm = 0.0005
.
alpha010
guess parameter
math expression: 0
evaluates to -0.00665617 +/- 0.00161217
annotation: "alpha010: -0.00665617 +/- 0.00161217"
.
Choose a parameter for a full report or r to return >
=back
=head1 CONFIGURATION AND ENVIRONMENT
See L<Demeter::Config> for a description of Demeter's configuration
system.
=head1 DEPENDENCIES
Along with needing Demeter, this uses L<Term::ANSIColor> and
L<Term::ReadLine>. The example script in the Demeter distribution
also uses L<Term::Twiddle>.
=head1 BUGS AND LIMITATIONS
=over 4
=item *
Plotting rmr and turning on plotting of paths results in a crash.
Should disable plotting paths when plotting rmr.
=back
Please report problems to the Ifeffit Mailing List
(L<http://cars9.uchicago.edu/mailman/listinfo/ifeffit/>)
Patches are welcome.
=head1 AUTHOR
Bruce Ravel, L<http://bruceravel.github.io/home>
L<http://bruceravel.github.io/demeter/>
=head1 LICENCE AND COPYRIGHT
Copyright (c) 2006-2019 Bruce Ravel (L<http://bruceravel.github.io/home>). All rights reserved.
This module is free software; you can redistribute it and/or
modify it under the same terms as Perl itself. See L<perlgpl>.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
=cut
|