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 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
|
package Demeter::GDS;
=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 autodie qw(open close);
use Moose;
extends 'Demeter';
use MooseX::Aliases;
use Demeter::StrTypes qw( GDS NotReserved );
use Carp;
use Demeter::Constants qw($NUMBER $EPSILON7);
has '+name' => (isa => NotReserved);
has 'gds' => (is => 'rw', isa => GDS, default => 'guess');
has 'mathexp' => (is => 'rw', isa => 'Str', default => q{}); ##,trigger => sub{ my ($self, $new) = @_; $self->stored($new));
has 'initial' => (is => 'rw', isa => 'Str', default => q{});
has 'stored' => (is => 'rw', isa => 'Str', default => q{});
has 'bestfit' => (is => 'rw', isa => 'LaxNum', default => 0,
trigger => sub{my ($self, $new) = @_; $self->modified(1) if $new} );
has 'error' => (is => 'rw', isa => 'LaxNum', default => 0);
has 'modified' => (is => 'rw', isa => 'Bool', default => 1);
has 'note' => (is => 'rw', isa => 'Str', default => q{},
trigger => sub{my ($self, $new) = @_; $self->autonote(1) if ($new =~ m{\A\s*\z})} );
has 'autonote' => (is => 'rw', isa => 'Bool', default => 1);
has 'highlighted' => (is => 'rw', isa => 'Bool', default => 0);
has 'Use' => (is => 'rw', isa => 'Bool', default => 1);
has 'is_merge' => (is => 'rw', isa => 'Bool', default => 0);
has 'expandsto' => (is => 'rw', isa => 'Str', default => q{});
sub BUILD {
my ($self, @params) = @_;
$self->mo->push_GDS($self);
};
# sub DEMOLISH {
# my ($self) = @_;
# $self->alldone;
# ## --- this would be nice, but it seems to happen after Ifeffit is
# ## shut down in certain cases when exiting Artemis
# # $self->dispense('process', 'erase', {items=>$self->name});
# };
## return a list of valid GDS attributes
sub parameter_list {
my ($self) = @_;
return (sort $self->meta->get_attribute_list);
};
# skip after merge
sub write_gds {
my ($self) = @_;
my $small = Demeter->co->default('larch', 'zero');
$small ||= $EPSILON7;
if ($self->mathexp =~ m{\A$NUMBER\z}) {
if (Demeter->is_larch and (abs($self->mathexp) < $small)) {
if ($self->mathexp < 0) {
$self->mathexp(-1*$small);
} else {
$self->mathexp($small);
};
};
};
my $string = $self->template("fit", "gds");
return $string;
};
sub annotate {
my ($self, $string) = @_;
my $auto = (defined($string) and ($string !~ m{\A\s*\z})) ? 0 : 1;
$self->set(note=>$string, autonote=>$auto);
};
sub autoannotate {
my ($self) = @_;
return if not $self->autonote;
my $string = q{};
if ($self->gds eq 'guess') {
$string = sprintf("%s : %.5f +/- %.5f", $self->name, $self->bestfit, $self->error);
} elsif ($self->gds =~ m{(?:def|after|penalty|restrain)}) {
$string = sprintf("%s : %.5f (:= %s)", $self->name, $self->bestfit, $self->mathexp);
} elsif ($self->gds eq 'lguess') {
$string = $self->expandsto;
};
#
# do nothing with skip, set, merge
};
sub report {
my ($self, $identify) = @_;
my $string = q{};
my $type = ($identify) ? sprintf("%-8s: ", $self->gds) : q{};
SWITCH: {
($self->gds eq 'guess') and do {
$string = $self->template("report", "guess", {type=>$type});
##$string = sprintf("%s%-18s = %12.8f # +/- %12.8f [%s]\n", $type, $self->get(qw(name bestfit error mathexp)));
last SWITCH;
};
($self->gds eq 'set') and do {
if ($self->mathexp =~ m{\A$NUMBER\z}) {
$string = $self->template("report", "set", {type=>$type});
#$string = sprintf("%s%-18s = %12.8f\n", $type, $self->get(qw(name mathexp)));
} else {
$string = $self->template("report", "setme", {type=>$type});
#$string = sprintf("%s%-18s = %12.8f # [%s]\n", $type, $self->get(qw(name bestfit mathexp)));
};
last SWITCH;
};
($self->gds eq 'lguess') and do {
$string = $self->template("report", "lguess", {type=>$type});
##$string = sprintf("%s%-18s = %12.8f\n", $type, $self->get(qw(name mathexp)));
last SWITCH;
};
($self->gds eq 'def') and do {
$string = $self->template("report", "def", {type=>$type});
#$string = sprintf("%s%-18s = %12.8f # [%s]\n", $type, $self->get(qw(name bestfit mathexp)));
last SWITCH;
};
($self->gds eq 'restrain') and do {
$string = $self->template("report", "restrain", {type=>$type});
#$string = sprintf("%s%-18s = %12.8f # [:= %s]\n", $type, $self->get(qw(name bestfit mathexp)));
last SWITCH;
};
($self->gds eq 'after') and do {
$string = $self->template("report", "after", {type=>$type});
#$string = sprintf("%s%-18s = %12.8f # [%s]\n", $type, $self->get(qw(name bestfit mathexp)));
last SWITCH;
};
($self->gds eq 'skip') and do {
$string = $self->template("report", "skip", {type=>$type});
#$string = sprintf("%s is a skip parameter\n", $self->name);
last SWITCH;
};
($self->gds eq 'merge') and do {
$string = $self->template("report", "merge", {type=>$type});
#$string = sprintf("%s is a merge parameter\n", $self->name);
last SWITCH;
};
};
return $string;
};
sub full_report {
my ($self) = @_;
my $string = $self->name . "\n";
$string .= sprintf(" %s parameter\n", $self->gds);
return $string if (($self->gds eq 'skip') or ($self->gds eq 'merge'));
$string .= sprintf(" math expression: %s\n", $self->mathexp);
SWITCH: {
$string .= sprintf(" evaluates to %12.8f +/- %12.8f\n", $self->get(qw(bestfit error))), last SWITCH if ($self->gds eq 'guess');
$string .= sprintf(" evaluates to %12.8f\n", $self->bestfit);
};
$string .= sprintf(" annotation: \"%s\"\n", $self->note);
return $string;
};
sub evaluate {
my ($self) = @_;
return 0 if (($self->gds eq 'skip') or ($self->gds eq 'merge'));
$self->modified(0);
my $name = $self->name;
my $value = $self->fetch_scalar(lc($name));
if ($self->gds eq 'guess') {
my $error = $self->fetch_scalar("delta_".lc($name));
$self -> set(bestfit=>$value, error=>$error);
} else {
$self -> set(bestfit=>$value, error=>0);
};
if ($self->autonote) {
if ($self->gds eq 'guess') {
$self->set(note=>sprintf("%s: %12.8f +/- %12.8f", $self->get(qw(name bestfit error))));
} else {
$self->set(note=>sprintf("%s: %12.8f", $self->get(qw(name bestfit))));
};
};
return 1;
};
sub push_backend {
my ($self) = @_;
$self->dispose($self->write_gds);
return $self;
};
alias push_larch => 'push_backend';
alias push_ifeffit => 'push_backend';
__PACKAGE__->meta->make_immutable;
1;
=head1 NAME
Demeter::GDS - Guess, Set, Def, and other parameters for EXAFS fitting
=head1 VERSION
This documentation refers to Demeter version 0.9.26.
=head1 SYNOPSIS
$gds_object = Demeter::GDS ->
new(gds => 'guess',
name => 'alpha',
mathexp => 0,
);
$gds_object -> report;
## after a fit....
$gds_object -> evaluate;
=head1 DESCRIPTION
This subclass of the Demeter class is inteded to hold information
pertaining to guess, def, set, and other parameters for use in a fit.
=head1 ATTRIBUTES
A GDS object has these attributes:
=over 4
=item C<name> (string)
This is the name of the parameter. It must respect the conventions
for a parameter name in Ifeffit or Larch. They can contain only
letters, numbers, '&', '?', ':', and '_' (underscore). They are
limited to 64 characters and cannot begin with a numeral.
=item C<gds> (guess def set lguess restrain after merge skip)
This is one of:
=over 4
=item I<guess>
A parameter varied in the fit.
=item I<def>
A parameter whose math expression is continuously updated throughout
the fit.
=item I<set>
A parameter which is evaluated at the beginning of the fit and remains
unchanged after that.
=item I<lguess>
A locally guessed parameter. In a multiple data set fit, this will be
expanded to one guess parameter per data set.
=item I<restrain>
A restrain parameter is defined in an Ifeffit script as a def
parameter but is used as a restraint in the call to the feffit
function. In a multiple data set fit, all restraints are defined in
the first call to the feffit command.
=item I<after>
This is like a def parameter, but is not evaluated until the fit
finishes. It is then reported in the log file.
=item I<merge>
A merge is the type given to a parameter that cannot be unambiguously
resolved when two Fit objects are merged into a single Fit object. A
fit cannot proceed until all merge parameters are resolved.
=item I<skip>
A skip is a parameter that is defined but then ignored. Setting a
variable to a skip is the Demeter equivalent of commenting it out.
=back
=item C<mathexp> (string)
This is the math expression assigned to the parameter. For a guess or
set parameter this is often just a number -- the initial guess.
=item C<stored> (string)
This is the math expression as provided by the user before any
rewriting for local parameters.
=item C<bestfit> (number)
After the fit is evaluated, this contains the result of the fit for this
parameter. This is normally not set explicitly with the C<set> method.
Rather it is set using the C<evaluate> method so that the math expression is
correctly evaluated by Ifeffit/Larch.
=item C<error> (number)
After the fit is evaluated, this contains the error on this guess parameter.
For all other types, this is 0. This is normally not set explicitly with the
C<set> method. Rather it is set using the C<evaluate> method after a fit.
=item C<modified> (boolean)
This is true if the parameter has been modified but not evaluated.
=item C<note> (string)
This is a text string -- an annotation -- used to describe something
about the parameter.
=item C<autonote> (boolean)
When this is true, the annotation is set automatically when the
parameter is evaluated.
=item C<use> (boolean)
This is a flag disables the use of a global restraint or a global
after when local guess parameters are in play.
=back
=head1 METHODS
=head2 Object handling methods
The GDS object uses the C<new>, C<Clone>, C<set>, and C<get> methods
described in the L<Demeter> documentation.
=over 4
=item C<annotate>
This method sets the C<note> and C<autonote> attributes in a stroke.
It takes a single argument, the annotation string for the parameter.
$gds_object -> annotate($string)
$gds_object -> annotate(q{})
If the string is not empty, the C<note> will be set to the string and the
autonote attribute will be set to 0. If the string is empty, the C<note>
attribute will be cleared and the autonote attribute will be set to 1. These
are completely equivalent to
$gds_object -> set(note=>$string, autonote=>0);
$gds_object -> set(note=>q{}, autonote=>1);
but using this method saves you the bother of remembering to toggle the
C<autonote> attribute.
=back
=head2 Reporting and evaluation methods
=over 4
=item C<write_gds>
This returns a string which is the command to define the parameter in
Ifeffit/Larch.
$string = $gds_object -> write_gds
This returns a string something like
guess enot = 0.0
The first word is the parameter type. "def" is used for after and
restrain parameters. Other parameter types (skip and merge) return
strings which will not be valid Ifeffit/Larch commands.
=item C<report>
This returns a one-line string which reports on the value of a
parameter after a fit is complete. This method is used in the
C<logfile> method of the Fit subclass.
$string = $gds_object -> report;
The strings returned for the various parameter types are different.
All contain the best fit value and the math expression (or initial
guess). The error is included for guess parameters.
=item C<full_report>
This is like the C<report> method, but it returns a more verbose,
multiline string and includes the annotation.
$string = $gds_object -> report;
This is not used in the logfile, but may be useful in an interactive
application.
=item C<evaluate>
This method is called after a fit is performed to evaluate the bestfit
and error attributes of the object. It also sets the annotation is
the autonote attribute is true. It returns 1 in most cases, but
returns 0 for unevaluatable parameter types (skip and merge).
$is_ok = $gds_object -> evaluate;
This is called as part of the C<evaluate> method of the Fit class on
all parameters used in the fit. Thus, it normally does not need to be
called explicitly. However, it may be useful in interactive use.
=back
=head1 DIAGNOSTICS
Moose type constraints are used on several of the GDS object
attributes. Error messages appropriate to the type constrain will be
generated.
=head1 SERIALIZATION AND DESERIALIZATION
See the discussion of serialization and deserialization in
C<Demeter::Fit>.
=head1 CONFIGURATION AND ENVIRONMENT
See L<Demeter::Config> for a description of the configuration system.
=head1 DEPENDENCIES
Demeter's dependencies are in the F<Build.PL> file.
=head1 BUGS AND LIMITATIONS
=over 4
=item *
Errors should be propagated into def parameters
=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
|