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 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
|
package Demeter::Data::E0;
=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::Role;
use MooseX::Aliases;
use Demeter::StrTypes qw( Element Edge );
use Carp;
use Demeter::Constants qw($EPSILON3 $NUMBER);
use List::Util qw(max);
use List::MoreUtils qw(firstidx);
use Xray::Absorption;
use Chemistry::Elements qw(get_symbol);
sub e0 {
my ($self, $how) = @_;
#print '>>>> ', $how, $/;
#Demeter->trace;
($how = "ifeffit") if (!$how);
($how = "ifeffit") if (($how !~ m{\A(?:atomic|dmax|fraction|zero|peak|$NUMBER)\z}) and (ref($how) !~ m{Data}));
$self->_update('normalize');
my $e0;
MODE: {
$e0 = $self->e0_ifeffit, last MODE if ($how eq "ifeffit");
$e0 = $self->e0_zero_crossing, last MODE if ($how eq "zero");
$e0 = $self->e0_fraction, last MODE if ($how eq "fraction");
$e0 = $self->e0_atomic, last MODE if ($how eq "atomic");
$e0 = $self->e0_dmax, last MODE if ($how eq "dmax");
$e0 = $self->e0_wl, last MODE if ($how eq "peak");
$e0 = $how->bkg_e0, last MODE if (ref($how) =~ m{Data});
($how =~ m{\A$NUMBER\z}) and do {
$self->bkg_e0($how);
$e0 = $how;
last MODE;
};
};
$self->bkg_e0($e0);
if ($how eq 'dmax') {
my ($elem, $edge) = $self->find_edge($e0);
$self->bkg_z($elem);
$self->fft_edge($edge);
};
#Demeter->pjoin($self->is_z, $self->is_edge);
# if (is_Element($self->is_z) and is_Edge($self->is_edge)) {
# my $target = Xray::Absorption->get_energy( $self->is_z, $self->is_edge);
# my $value = $self->bkg_e0;
# if (abs($target - $value) > $self->is_edge_margin) {
# $self->bkg_z($self->is_z);
# $self->fft_edge($self->is_edge);
# $e0 = $self->e0_atomic;
# $self->bkg_e0($e0);
# $e0 = $self->e0_fraction;
# $self->bkg_e0($e0);
# };
# };
$self->update_norm(1);
return $e0;
};
sub enforce_e0 {
my ($self, $z, $edge, $margin) = @_;
if ($z) {
Demeter->dd->is_z(get_symbol($z));
Demeter->dd->is_edge(Xray::Absorption -> get_Siegbahn($edge));
Demeter->dd->is_edge_margin($margin);
} else {
Demeter->dd->is_z(q{});
Demeter->dd->is_edge(q{});
Demeter->dd->is_edge_margin(15);
};
};
sub e0_ifeffit {
my ($self) = @_;
$self->dispense('process', 'find_e0');
my $was = $self->bkg_e0;
my $e0 = $self->fetch_scalar('e0');
#print '>>>>> ', $e0, $/;
if (abs($was - $e0) > $EPSILON3) {
$self->bkg_e0(sprintf("%.5f", $e0));
return $e0;
} else {
return $was; # avoid a tiny numerical "surprise" from Larch
};
};
sub e0_fraction {
my ($self) = @_;
my $efrac = 0;
my $fraction = $self->bkg_e0_fraction;
$fraction ||= 0.5;
($fraction = 0.5) if ($fraction <= 0);
($fraction = 1.0) if ($fraction > 1);
my $esh = $self->bkg_eshift;
my $prior = 0;
my $count = 1;
while (abs($self->bkg_e0-$prior) > $EPSILON3) {
$prior = $self->bkg_e0;
$self->normalize;
my $fracstep = $fraction * $self->bkg_step;
my @x = map {$_ + $esh} $self->get_array("energy");
my @y = $self->get_array("pre");
$efrac = 0;
foreach my $i (0 .. $#x) {
next if ($y[$i] < $fracstep);
my $frac = ($fracstep - $y[$i-1]) / ($y[$i] - $y[$i-1]);
$efrac = $x[$i-1] + $frac*($x[$i] - $x[$i-1]);
last;
};
$self -> bkg_e0($efrac);
++$count;
return $efrac if ($count > 5); # it shouldn't take more than three
# unless something is very wrong with
# these data
};
return $efrac;
};
sub e0_zero_crossing {
my ($self) = @_;
my $shift = $self->bkg_eshift;
my @energy = map {$_ + $shift} $self->get_array("energy");
my @second = $self->get_array("sec");
my $e0index = 0;
foreach my $e (@energy) {
last if ($e > $self->bkg_e0);
++$e0index;
};
my ($enear, $ynear) = ($energy[$e0index], $second[$e0index]);
my ($ratio, $i) = (1, 1);
my ($above, $below) = (0,0);
while (1) { # find points that bracket the zero crossing
(($above, $below) = (0,0)), last unless (exists($second[$e0index + $i]) and $second[$e0index]);
$ratio = $second[$e0index + $i] / $second[$e0index]; # this ratio is negative for a point bracketing the zero crossing
($above, $below) = ($e0index+$i, $e0index+$i-1);
last if ($ratio < 0);
(($above, $below) = (0,0)), last unless exists($second[$e0index - $i]);
$ratio = $second[$e0index - $i] / $second[$e0index]; # this ratio is negative for a point bracketing the zero crossing
($above, $below) = ($e0index-$i+1, $e0index-$i);
last if ($ratio < 0);
++$i;
};
carp("Could not find zero crossing.\n\n"), return if (($above == 0) and ($below == 0));
## linearly interpolate between points that bracket the zero crossing
my $e0 = sprintf("%.5f", $energy[$below] - ($second[$below]/($second[$above]-$second[$below])) * ($energy[$above] - $energy[$below]));
return $e0;
};
sub e0_atomic {
my ($self) = @_;
my $e0 = Xray::Absorption->get_energy( $self->bkg_z, $self->fft_edge);
return $e0;
};
sub e0_dmax {
my ($self) = @_;
my @x = $self->get_array('energy');
my @y = $self->get_array('der');
my $max = max(@y);
my $i = firstidx {$_ >= $max} @y;
return $x[$i];
};
sub e0_wl {
my ($self) = @_;
my $e0 = $self->find_white_line;
return $e0;
};
sub calibrate {
my ($self, $ref, $e0) = @_;
$self -> _update("background");
$ref ||= $self->bkg_e0;
if (not $e0) {
my ($z, $edge) = ($self->bkg_z, $self->fft_edge);
croak("You must specify the absorber element to calibrate to the tabulated edge energy.")
if (not is_Element($z));
croak("You must specify the absorber edge to calibrate to the tabulated edge energy.")
if (not to_Edge($edge));
$e0 = Xray::Absorption->get_energy($z, $edge);
};
my $delta = $e0 - $ref;
my $shift = $self->bkg_eshift + $delta;
$self->bkg_e0($e0);
$self->bkg_eshift($shift);
$self->update_bkg(1);
$self->bkg_e0($e0);
$self->update_bkg(0);
$self->update_norm(0);
return $e0;
};
sub align {
my ($self, @data) = @_;
my $standard = $self->get_mode('standard');
$self->standard;
my $shift = 0;
$self -> _update("background");
foreach my $d (@data) {
next if (ref($d) !~ m{Data});
next if ($d->group eq $self->group);
$self->mo->current($d); # these two lines allow a GUI to
$self->call_sentinal; # display progress messages
$d -> _update("background") if not $d->quickmerge;
$d -> dispense("process", "align");
$shift = sprintf("%.3f", $d->fetch_scalar("aa___esh"));
#print ">>>>>>", $shift, $/;
$d -> bkg_delta_eshift(sprintf("%.3f", $self->fetch_scalar('delta_aa___esh')));
$d -> bkg_eshift($shift);
$d -> update_bkg(1);
if ($d->reference) {
$d -> reference -> bkg_delta_eshift($d -> bkg_delta_eshift);
$d -> reference -> update_bkg(1);
};
};
$self->mo->current(q{});
$standard->standard if (ref($standard) =~ m{Data});
return $shift;
};
sub align_with_reference {
my ($self, @data) = @_;
my $selfref = $self->reference;
$self -> _update("background");
$self -> reference -> _update("background") if $self->reference;
my $standard = $self->get_mode('standard');
my $shift = 0;
foreach my $d (@data) {
next if (ref($d) !~ m{Data});
$self->mo->current($d); # these two lines allow a GUI to
$self->call_sentinal; # display progress messages
my $useref = $selfref and $d->reference;
if ($useref) {
$self->reference->standard;
} else {
$self->standard;
};
my $this = ($useref) ? $d->reference : $d;
$this -> _update("background");
$this -> dispense("process", "align");
$shift = sprintf("%.3f", $self->fetch_scalar("aa___esh"));
$this -> bkg_delta_eshift(sprintf("%.3f", $self->fetch_scalar('delta_aa___esh')));
$this -> bkg_eshift($shift);
$this -> update_bkg(1);
if ($this->reference) {
$this -> reference -> bkg_delta_eshift($this -> bkg_delta_eshift);
$this -> reference -> update_bkg(1);
};
};
$self->mo->current(q{});
$standard->standard if (ref($standard) =~ m{Data});
return $shift;
};
alias alignwr => 'align_with_reference';
sub tie_reference { # extend to more than two...?
my ($self, $tie) = @_;
$self->tying(1); # prevent deep recursion
$tie->reference($self) if $self->reference;
return $self;
};
sub shift_reference { # extend to more than two...?
my ($self) = @_;
return if not $self->reference;
$self->tying(1); # prevent deep recursion
my $this = $self->bkg_eshift;
$self->reference->bkg_eshift($this);
return $self;
};
sub untie_reference {
my ($self) = @_;
if ($self->reference) {
my $ref = $self->reference;
$ref->reference(q{});
$self->reference(q{});
};
return $self;
};
sub _e0_marker_command {
my ($self, $requested) = @_;
my $pf = $self->po;
my $suffix = ($pf->e_norm and $pf->e_der) ? "nder" :
($pf->e_norm and $pf->e_sec) ? "nsec" :
($pf->e_norm and $self->bkg_flatten) ? "flat" :
($pf->e_norm) ? "norm" :
($pf->e_der) ? "der" :
($pf->e_sec) ? "sec" :
"xmu";
my $y = $self->yofx($suffix, "", $self->bkg_e0);
my $command = $self->template("plot", "marker", { x => $self->bkg_e0,
'y'=> $y+$self->y_offset});
return $command;
};
sub _preline_marker_command {
my ($self, $requested) = @_;
my $pf = $self->po;
my $suffix = ($pf->e_norm and $self->bkg_flatten) ? "flat" :
($pf->e_norm) ? "norm" :
"xmu";
my $x = $self->bkg_pre1 + $self->bkg_e0;
my $y = $self->yofx($suffix, "", $x);
my $command = $self->template("plot", "marker", { x => $x, 'y'=> $y});
$x = $self->bkg_pre2 + $self->bkg_e0;
$y = $self->yofx($suffix, "", $x);
$command .= $self->template("plot", "marker", { x => $x, 'y'=> $y});
return $command;
};
sub _postline_marker_command {
my ($self, $requested) = @_;
my $pf = $self->po;
my $suffix = ($pf->e_norm and $self->bkg_flatten) ? "flat" :
($pf->e_norm) ? "norm" :
"xmu";
my $x = $self->bkg_nor1 + $self->bkg_e0;
my $y = $self->yofx($suffix, "", $x);
my $command = $self->template("plot", "marker", { x => $x, 'y'=> $y});
$x = $self->bkg_nor2 + $self->bkg_e0;
$y = $self->yofx($suffix, "", $x);
$command .= $self->template("plot", "marker", { x => $x, 'y'=> $y});
return $command;
};
1;
=head1 NAME
Demeter::Data::E0 - Calibrate and align XAS mu(E) data
=head1 VERSION
This documentation refers to Demeter version 0.9.26.
=head1 DESCRIPTION
This subclass of Demeter::Data contains methods for calibrating
mu(E) data and adjusting e0.
=head1 METHODS
=over 4
=item C<calibrate>
This calibrates data by setting a chosen energy value to a new value. This
method simultaneously sets the C<bkg_e0> and C<bkg_eshift> Data attributes.
$e0 = $data -> calibrate($edge_point, $edge_energy);
Both arguments are optional. If the C<$edge_point> is 0 or not given, then
the current value of C<bkg_e0> will be used. If the C<$edge_energy> is not
given, then the tabulated energy for the absorber species and edge will be
used. If C<$edge_energy> is 0 or not given and the Data object does not have
valid values for the C<bkg_z> and C<fft_edge> attributes, an exception will be
thrown. The return value is the new value of the edge energy.
=item C<align>
This method aligns each item in a list of data objects to the Data object on
which the method is called. That is, align each Data object in the argument
list to the calling object.
$standard_data -> align(@list_of_data_to_align);
Each argument must be a Data object. The return value is the energy shift of
the last Data object in the list.
=item C<align_with_reference>
This method align each item in a list of data objects to the Data
object on which the method is called using the reference channels, if
available. That is, align each Data object in the argument list to
the calling object, using their reference channels.
$standard_data -> align_with_reference(@list_of_data_to_align);
Each argument must be a Data object. The return value is the energy shift of
the last Data object in the list.
=item C<alignwr>
This is an alias for C<align_with_reference>.
=item C<e0>
This method is used to set the edge energy for mu(E) data either to a
number or a calculated value.
$e0 = $data -> e0($how);
The C<$how> argument can be any of the following. If C<$how> is
omitted, it defaults to "ifeffit".
=over 4
=item I<ifeffit>
Use the internal algorithm from the data processing backend
(Ifeffit/Larch) for finding the edge energy. This is very similar to,
but not exactly the same as, the first peak of the first derivative.
Ifeffit and Larch actually uses a simple peak-finding algorithm to
distinguish the edge from noise in the pre-edge. The result of this
is that an energy is often chosen that is one or two data points above
what the human eye would recognize as the peak of the first
derivative.
=item I<zero>
Find the zero crossing of the second derivative of mu(E). Starting
from the current value of the edge energy (or from the value returned
by the backend algorithm if the edge energy has not yet been set),
step forward and backward until the parity of the second derivative
spectrum switches. Then, linearly interpolate between the values
bracketing the parity change to find the zero value.
=item I<fraction>
Find the point in the edge of the normalized spectrum whose y-value is
a given fraction of the edge step. By default, this fraction is 0.5,
but that can be set by the C<bkg_e0_fraction> attribute of the Data
object. This point is linearly interporlated from the normalized data.
The data are normalized again and the fractional point is found again
until its energy value changes by less than 0.001 volts, up to a
maximum of five iterations.
=item I<atomic>
Use the tabulated value of the zero-valent atomic binding energy as
the edge energy.
=item I<Data object>
If the C<$mode> is another Data object, set the edge energy of this
Data object to the value of the other one.
=item I<number>
If the C<$mode> is recognizable as a number, set the edge energy to
that value.
=back
=back
=head1 CONFIGURATION
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 *
Need a white line peak option to the C<e0> method
=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
|