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 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
|
package Demeter::Plot;
=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 MooseX::AlwaysCoerce; # this might be useful....
#use Moose::Util::TypeConstraints;
use Demeter::StrTypes qw( Element
Edge
Clamp
PlotType
FitSpace
Window
Empty
DataType
PgplotLine
MERIP
PlotWeight
Interp
);
use Demeter::NumTypes qw( Natural
PosInt
PosNum
NonNeg
OneToFour
OneToTwentyNine
);
use Carp;
use vars qw($PGPLOT_exists);
$PGPLOT_exists = (eval "require PGPLOT");
eval "PGPLOT->import" if $PGPLOT_exists;
{
## suppress a trivial warning at "./Build test" time
no warnings;
my $foo = *PGPLOT::HANDLE;
}
use List::MoreUtils qw(none zip);
#use YAML::Tiny;
use Graphics::GnuplotIF;
## why do these not get inherited properly?
has 'group' => (is => 'rw', isa => 'Str', default => sub{shift->_get_group()});
has 'name' => (is => 'rw', isa => 'Str', default => q{});
has 'plottable' => (is => 'ro', isa => 'Bool', default => 0);
has 'data' => (is => 'rw', isa => 'Any', default => q{});
has 'backend' => (is => 'rw', isa => 'Str', default => q{pgplot});
has 'version' => (is => 'ro', isa => 'Str', default => q{5.2});
## -------- legend parameters
has 'charsize' => (is => 'rw', isa => PosNum, default => sub{ shift->co->default("plot", "charsize") || 1.2});
has 'charfont' => (is => 'rw', isa => OneToFour, default => sub{ shift->co->default("plot", "charfont") || 1});
has 'key_x' => (is => 'rw', isa => PosNum, default => sub{ shift->co->default("plot", "key_x") || 0.8});
has 'key_y' => (is => 'rw', isa => PosNum, default => sub{ shift->co->default("plot", "key_y") || 0.9});
has 'key_dy' => (is => 'rw', isa => PosNum, default => sub{ shift->co->default("plot", "key_dy") || 0.075});
has 'showlegend'=> (is => 'rw', isa => 'Bool', default => 1);
has 'legendoutside'=> (is => 'rw', isa => 'Bool', default => 0);
## -------- colors
## I need a Color type
has 'bg' => (is => 'rw', isa => 'Str', default => sub{ shift->co->default("plot", "bg") || "white"});
has 'fg' => (is => 'rw', isa => 'Str', default => sub{ shift->co->default("plot", "fg") || "black"});
has 'showgrid' => (is => 'rw', isa => 'Bool', default => sub{ shift->co->default("plot", "showgrid") || 1});
has 'gridcolor' => (is => 'rw', isa => 'Str', default => sub{ shift->co->default("plot", "gridcolor") || "grey82"});
has 'increm' => (is => 'rw', isa => Natural, default => 0);
has 'col0' => (is => 'rw', isa => 'Str', default => sub{ shift->co->default("plot", "col0") || "blue"});
has 'col1' => (is => 'rw', isa => 'Str', default => sub{ shift->co->default("plot", "col1") || "red"});
has 'col2' => (is => 'rw', isa => 'Str', default => sub{ shift->co->default("plot", "col2") || "green4"});
has 'col3' => (is => 'rw', isa => 'Str', default => sub{ shift->co->default("plot", "col3") || "darkviolet"});
has 'col4' => (is => 'rw', isa => 'Str', default => sub{ shift->co->default("plot", "col4") || "darkorange"});
has 'col5' => (is => 'rw', isa => 'Str', default => sub{ shift->co->default("plot", "col5") || "brown"});
has 'col6' => (is => 'rw', isa => 'Str', default => sub{ shift->co->default("plot", "col6") || "deeppink"});
has 'col7' => (is => 'rw', isa => 'Str', default => sub{ shift->co->default("plot", "col7") || "gold3"});
has 'col8' => (is => 'rw', isa => 'Str', default => sub{ shift->co->default("plot", "col8") || "cyan3"});
has 'col9' => (is => 'rw', isa => 'Str', default => sub{ shift->co->default("plot", "col9") || "yellowgreen"});
# -------- line types
has 'datastyle' => (is => 'rw', isa => PgplotLine, default => sub{ shift->co->default("plot", "datastyle") || "solid"});
has 'fitstyle' => (is => 'rw', isa => PgplotLine, default => sub{ shift->co->default("plot", "fitstyle") || "solid"});
has 'partstyle' => (is => 'rw', isa => PgplotLine, default => sub{ shift->co->default("plot", "partstyle") || "solid"});
has 'pathstyle' => (is => 'rw', isa => PgplotLine, default => sub{ shift->co->default("plot", "pathstyle") || "solid"});
## -------- default plotting space
has 'space' => (is => 'rw', isa => PlotType, default => 'r', coerce => 1);
has 'single' => (is => 'rw', isa => 'Bool', default => 0);
## -------- energy plot parameters
has 'emin' => (is => 'rw', isa => 'LaxNum', default => sub{ shift->co->default("plot", "emin") || -200});
has 'emax' => (is => 'rw', isa => 'LaxNum', default => sub{ shift->co->default("plot", "emax") || 800});
has 'e_mu' => (is => 'rw', isa => 'Bool', default => sub{ shift->co->default("plot", "e_mu") || 1});
has 'e_bkg' => (is => 'rw', isa => 'Bool', default => sub{ shift->co->default("plot", "e_bkg") || 0});
has 'e_pre' => (is => 'rw', isa => 'Bool', default => sub{ shift->co->default("plot", "e_pre") || 0});
has 'e_post' => (is => 'rw', isa => 'Bool', default => sub{ shift->co->default("plot", "e_post") || 0});
has 'e_norm' => (is => 'rw', isa => 'Bool', alias => 'e_nor', default => sub{ shift->co->default("plot", "e_norm") || 0});
has 'e_der' => (is => 'rw', isa => 'Bool', default => sub{ shift->co->default("plot", "e_der") || 0});
has 'e_sec' => (is => 'rw', isa => 'Bool', default => sub{ shift->co->default("plot", "e_sec") || 0});
has 'e_i0' => (is => 'rw', isa => 'Bool', default => sub{ shift->co->default("plot", "e_i0") || 0});
has 'e_signal' => (is => 'rw', isa => 'Bool', default => sub{ shift->co->default("plot", "e_signal") || 0});
has 'e_markers' => (is => 'rw', isa => 'Bool', alias => 'e_marker', default => sub{ shift->co->default("plot", "e_markers") || 0});
has 'e_part' => (is => 'rw', isa => 'Str', default => q{});
has 'e_smooth' => (is => 'rw', isa => 'Int', default => sub{ shift->co->default("plot", "e_smooth") || 0});
has 'e_zero' => (is => 'rw', isa => 'Bool', default => 0);
has 'e_margin' => (is => 'rw', isa => 'Bool', default => 0);
has 'margin' => (is => 'rw', isa => 'LaxNum', default => 0);
has 'margin_min' => (is => 'rw', isa => 'LaxNum', default => 0);
has 'margin_max' => (is => 'rw', isa => 'LaxNum', default => 0);
## -------- k, R, and q plot parameters
has 'kmin' => (is => 'rw', isa => 'LaxNum', default => sub{ shift->co->default("plot", "kmin") || 0});
has 'kmax' => (is => 'rw', isa => 'LaxNum', default => sub{ shift->co->default("plot", "kmax") || 15});
has 'chie' => (is => 'rw', isa => 'Bool', default => 0);
has 'bkgk' => (is => 'rw', isa => 'Bool', default => 0);
has 'rmin' => (is => 'rw', isa => 'LaxNum', default => sub{ shift->co->default("plot", "rmin") || 0});
has 'rmax' => (is => 'rw', isa => 'LaxNum', default => sub{ shift->co->default("plot", "rmax") || 6});
has 'r_pl' => (is => 'rw', isa => MERIP, default => sub{ shift->co->default("plot", "r_pl") || "m"});
has 'dphase' => (is => 'rw', isa => 'Bool', default => 0);
has 'smag' => (is => 'rw', isa => 'Bool', default => 0);
has 'qmin' => (is => 'rw', isa => 'LaxNum', default => sub{ shift->co->default("plot", "qmin") || 0});
has 'qmax' => (is => 'rw', isa => 'LaxNum', default => sub{ shift->co->default("plot", "qmax") || 15});
has 'q_pl' => (is => 'rw', isa => MERIP, default => sub{ shift->co->default("plot", "q_pl") || "r"});
has 'kweight' => (is => 'rw', isa => 'LaxNum', default => "1",
trigger => sub{my ($self) = @_; $self->propagate_kweight});
has 'window_multiplier' => (is => 'rw', isa => 'LaxNum', default => 1.05);
has 'plot_data' => (is => 'rw', isa => 'Bool', default => 0);
has 'plot_fit' => (is => 'rw', isa => 'Bool', default => 0);
has 'plot_win' => (is => 'rw', isa => 'Bool', default => 0);
has 'plot_res' => (is => 'rw', isa => 'Bool', default => 0);
has 'plot_bkg' => (is => 'rw', isa => 'Bool', default => 0);
has 'plot_run' => (is => 'rw', isa => 'Bool', default => 0);
has 'plot_paths' => (is => 'rw', isa => 'Bool', default => 0);
has 'plot_rmr_offset' => (is => 'rw', isa => NonNeg, default => 0);
has 'plot_pause' => (is => 'rw', isa => 'LaxNum', default => 0);
## -------- ornaments
#has 'nindicators' => (is => 'rw', isa => PosInt, default => sub{ shift->co->default("indicator", "n") || 8});
has 'indicatorcolor' => (is => 'rw', isa => 'Str', default => sub{ shift->co->default("indicator", "color") || "violetred"});
has 'indicatorline' => (is => 'rw', isa => 'Str', default => sub{ shift->co->default("indicator", "line") || "solid"});
has 'showmarker' => (is => 'rw', isa => 'Str', default => sub{ shift->co->default("marker", "show") || 1});
has 'markertype' => (is => 'rw', isa => OneToTwentyNine, default => sub{ shift->co->default("marker", "type") || 9}); # number 1 to 29, 9 is a dotted circle
has 'markersize' => (is => 'rw', isa => 'LaxNum', default => sub{ shift->co->default("marker", "size") || 2});
has 'markercolor' => (is => 'rw', isa => 'Str', default => sub{ shift->co->default("marker", "color") || "orange"});
has 'stackjump' => (is => 'rw', isa => 'LaxNum', default => 0);
has 'stackstart' => (is => 'rw', isa => 'LaxNum', default => 0);
has 'stackinc' => (is => 'rw', isa => 'LaxNum', default => 0);
has 'stackdo' => (is => 'rw', isa => 'Bool', default => 0);
has 'stackdata' => (is => 'rw', isa => 'LaxNum', default => 0);
has 'invert_paths' => (is => 'rw', isa => 'Int', default => 0);
## -------- miscellaneous plotting parameters
has 'New' => (is => 'rw', isa => 'Bool', default => 0);
has 'color' => (is => 'rw', isa => 'Any', default => q{});
has 'xlabel' => (is => 'rw', isa => 'Any', default => q{});
has 'ylabel' => (is => 'rw', isa => 'Any', default => q{});
has 'key' => (is => 'rw', isa => 'Any', default => q{});
has 'title' => (is => 'rw', isa => 'Any', default => q{},
trigger => sub{my ($self, $new) = @_; $new =~ s{_}{\\\\_}g; $self->escapedtitle($new);});
has 'escapedtitle' => (is => 'rw', isa => 'Any', default => q{});
has 'output' => (is => 'rw', isa => 'Str', default => q{});
has 'tempfiles' => (
traits => ['Array'],
is => 'rw',
isa => 'ArrayRef[Str]',
default => sub { [] },
handles => {
'add_tempfile' => 'push',
'remove_tempfile' => 'pop',
'clear_tempfiles' => 'clear',
}
);
has 'lastplot' => (is => 'rw', isa => 'Any', default => q{});
## interpolation parameters
has 'interp' => (is => 'rw', isa => Interp, default => sub{ shift->co->default("interpolation", "type") || "interp"});
## -------- facilitating other back-ends
## Gnuplot:
has 'terminal_number' => (is => 'rw', isa => 'Str', default => 1);
has 'error_log' => (is => 'ro', isa => 'Str', default => q{});
has 'markersymbol' => (is => 'rw', isa => 'Int', default => 305);
sub BUILD {
my ($self) = @_;
$self -> mo -> plot($self);
$self -> mo -> push_Plot($self);
$self -> start_plot;
return;
};
sub DEMOLISH {
my ($self) = @_;
$self->alldone;
};
override 'alldone' => sub {
my ($self) = @_;
$self->end_plot;
$self->remove;
};
sub all {
my ($self) = @_;
my @keys = map {$_->name} grep {$_->name !~ m{\A(?:data|plot|plottable|is_mc|mode|error_log|lastplot|pathtype|sentinal|version)\z}} $self->meta->get_all_attributes;
my @values = map {$self->$_} @keys;
my %hash = zip(@keys, @values);
return %hash;
};
## this is a little crufty, but I don't want to save all attribute
## values in the plot_with method -- just the ones that need to be
## saved
sub clonable {
return qw(
charsize charfont key_x key_y key_dy bg fg showgrid gridcolor
datastyle fitstyle partstyle pathstyle
space emin emax e_mu e_norm e_bkg e_pre e_post e_der e_sec e_i0 e_signal e_markers e_smooth e_zero
kmin kmax rmin rmax r_pl qmin qmax q_pl kweight window_multiplier
plot_data plot_fit plot_win plot_res plot_run plot_bkg plot_paths plot_rmr_offset
);
};
sub start_plot {
my ($self) = @_;
$self->cleantemp;
my $color = $self->col0;
$self -> New(1);
$self -> color($color);
$self -> xlabel(q{});
$self -> ylabel(q{});
$self -> title(q{});
$self -> increm(0);
$self -> lastplot(q{});
$self -> co -> set(plot_part=>q{});
return $self;
};
alias startplot => 'start_plot';
sub finish {
1;
};
sub increment {
my ($self) = @_;
my $incr = $self->increm;
++$incr;
$incr = $incr % 10;
my $cc = 'col' . $incr;
my $color = $self->$cc;
$self->New(0);
$self->color($color);
return $self->increm($incr);
};
sub reinitialize {
my ($self, $xl, $yl) = @_;
$self -> xlabel($xl);
$self->ylabel($yl);
$self->key(q{});
$self->title(q{});
#$self->color(q{});
#$self->New(1);
$self->e_part(q{});
return $self->increm;
};
sub end_plot {
my ($self) = @_;
$self->cleantemp;
return $self;
};
sub just_mu {
my ($self) = @_;
$self -> set(e_mu=>1, e_bkg=>0, e_pre=>0, e_post=>0,
e_norm=>0, e_der=>0, e_sec=>0, e_markers=>0,
e_i0=>0, e_signal=>0, e_zero=>0);
return $self;
};
alias just_mue => 'just_mu';
alias just_xmu => 'just_mu';
sub after_plot_hook {
my ($self, $data, $part) = @_;
1;
};
sub tempfile {
my ($self) = @_;
my $this = File::Spec->catfile($self->stash_folder, Demeter->randomstring(8));
$self->add_tempfile($this);
return $this;
};
sub cleantemp {
my ($self) = @_;
foreach my $f (@{ $self->tempfiles }) {
unlink $f;
};
$self -> clear_tempfiles;
#$self->tempfiles([]);
return $self;
};
sub legend {
my ($self, @arguments) = @_;
my %args = @arguments; # coerce to a hash
foreach my $which (qw(dy y x)) {
my $k = "key_".$which;
$args{$which} ||= $args{$k};
$args{$which} ||= $self->$k;
};
foreach my $key (keys %args) {
next if ($key !~ m{\A(?:dy|x|y)\z});
my $k = "key_".$key;
$self->$k($args{$key});
};
$self->place_scalar('&plot_key_x' , $self->key_x);
$self->place_scalar('&plot_key_y0', $self->key_y);
$self->place_scalar('&plot_key_dy', $self->key_dy);
return $self;
};
## size cannot be negative, font must be 1-4
sub font {
my ($self, @arguments) = @_;
my %args = @arguments; # coerce to a hash
$args{font} ||= $args{charfont};
$args{size} ||= $args{charsize};
$args{font} ||= $self->charfont;
$args{size} ||= $self->charsize;
foreach my $key (keys %args) {
next if ($key !~ m{\A(?:font|size)\z});
my $k = "char$key";
$self->$k($args{$key});
};
my $command = sprintf("plot(charfont=%d, charsize=%s)\n", $self->charfont, $self->charsize);
$self->dispose($command);
return $self;
};
sub textlabel {
my ($self, $x, $y, $text) = @_;
my $command = $self->template("plot", "label", { x => $x,
'y' => $y,
text => $text
});
#if ($self->get_mode("template_plot") eq 'gnuplot') {
# $self->get_mode('external_plot_object')->gnuplot_cmd($command);
#} else {
$self -> dispose($command, "plotting");
#};
return $self;
};
## also need r and q, then override in D::P::Gnuplot
sub plot_kylabel {
my ($self) = @_;
my $kw = $self->kweight;
my $ylorig = $self->ylabel;
my $yl = (($kw>0) and ($ylorig =~ m{\A\s*\z})) ? sprintf("k\\u%d\\d\\gx(k) (\\A\\u-%d\\d)", $kw, $kw)
: (($kw<0) and ($ylorig =~ m{\A\s*\z})) ? sprintf("k\\u%d\\d\\gx(k) (variable k-weighting)", $kw)
: ((not $kw) and ($ylorig =~ m{\A\s*\z})) ? "\\gx(k)" # special y label for kw=0
: $ylorig;
return $yl;
};
sub plot_rylabel {
my ($self) = @_;
return $self->ylabel if ($self->ylabel !~ m{\A\s*\z});
my %open = ('m'=>"|", e=>"Env[", r=>"Re[", i=>"Im[", p=>"Phase[");
my %close = ('m'=>"|", e=>"]", r=>"]", i=>"]", p=>"]");
($open{p}, $close{p}) = ("Deriv(Phase[", "])") if $self->dphase;
my $part = lc($self->r_pl);
if ($self->kweight >= 0) {
return sprintf("%s\\gx(R)%s (\\A\\u-%.3g\\d)", $open{$part}, $close{$part}, $self->kweight+1);
} else {
return sprintf("%s\\gx(R)%s (variable k-weighting)", $open{$part}, $close{$part});
};
};
sub plot_qylabel {
my ($self) = @_;
return $self->ylabel if ($self->ylabel !~ m{\A\s*\z});
my %open = ('m'=>"|", e=>"Env[", r=>"Re[", i=>"Im[", p=>"Phase[");
my %close = ('m'=>"|", e=>"]", r=>"]", i=>"]", p=>"]");
my $part = lc($self->q_pl);
if ($self->kweight >= 0) {
return sprintf("%s\\gx(q)%s (\\A\\u-%.3g\\d)", $open{$part}, $close{$part}, $self->kweight);
} else {
return sprintf("%s\\gx(q)%s (variable k-weighting)", $open{$part}, $close{$part});
};
};
sub outfile {
my ($self, $type, $file) = @_;
my %devices = (png => '/png', ps => '/cps');
my $command = $self->template("plot", "file", { device => $devices{$type},
file => $file });
$self -> dispose($command, "plotting");
return $self;
};
sub propagate_kweight {
my ($self) = @_;
$_->update_fft(1) foreach (
@{ $self->mo->Data },
@{ $self->mo->Path },
@{ $self->mo->SSPath },
@{ $self->mo->ThreeBody },
@{ $self->mo->FPath },
@{ $self->mo->VPath },
);
};
sub i0_text {
return 'I\d0\u';
};
sub is_i0_plot {
my ($self) = @_;
my @rest = $self->get(qw(e_mu e_zero e_bkg e_pre e_post e_norm e_der e_sec e_signal));
return ($self->e_i0 and (none {$_} @rest));
};
sub is_d0s_plot {
my ($self) = @_;
my @rest = $self->get(qw(e_zero e_bkg e_pre e_post e_norm e_der e_sec));
return ($self->e_mu and $self->e_i0 and $self->e_signal and (none {$_} @rest));
};
sub copyright_text {
my ($self) = @_;
return q{} if not $PGPLOT_exists;
#{ # this does not work
#eval "pgupdt()";
#return q{} if $@; # test for situation where PGPLOT was not linked correctly
#};
#if ($self->co->default("plot", "showcopyright")) {
# pgsch(0.7);
# my $string = sprintf("%s %s \\(0274) 2006-2019 Bruce Ravel", "Demeter", $self->version);
# pgmtxt('B', 7, 0.65, 0.0, $string);
# pgsch(1.0);
#};
return q{};
};
## avoid repeating the legend entry twice for the envelope function
sub fix_envelope {
my ($self, $string, $datalabel) = @_;
## (?<= ) is the positive zero-width look behind -- it only
## replaces the label when it follows q{key="}, i.e. it won't get
## confused by the same text in the title for a newplot
$string =~ s{(?<=key=")$datalabel}{};
return $string;
};
#__PACKAGE__->meta->make_immutable;
1;
=head1 NAME
Demeter::Plot - Controlling plots of XAS data
=head1 VERSION
This documentation refers to Demeter version 0.9.26.
=head1 SYNOPSIS
$object -> po -> set(kweight=>3);
=head1 DESCRIPTION
This subclass of Demeter is for holding information pertaining to how
plots of data and paths are made.
=head1 METHODS
This uses the C<set>, and C<get> methods of the parent class.
The typical way of accessing these methods is in a chain with the
C<po> method. All of the examples below demonstrate that. You can
also store the reference to the plot object as a scalar and used that:
$plot_object - $other_object -> po;
$plot_object -> set(kweight=>3);
=over 4
=item C<start_plot>
This method reinitializes a plot. In terms of Ifeffit, the next plot made
after running this method will be a C<newplot()>. Each subsequent plot until
the next time C<start_plot> is called will be a C<plot()>. Also, the sequence
of colors is reset when this method is called.
$object -> po -> start_plot;
=item C<legend>
This is a convenience method for controlling the appearence of the legend in
the plot. This will set the legend parameters (C<key_x>, C<key_y>, and
C<key_dy>) and return the Ifeffit command to reset the legend.
$object -> po -> legend(x=>0.6, y=>0.8, dy=>0.05);
Note that you get to drop "key" in the arguments to this method,
although C<x> and C<key_x> will be interpreted the same.
=item C<font>
This is a convenience method for controlling the appearence of the text in
the plot. This will set the text attributes (C<charfont> and
C<charsize>) and return the Ifeffit command to reset the text.
$object -> po -> font(font=>4, size=>1.8)
Note that you get to drop "char" in the arguments to this method,
although C<font> and C<charfont> will be interpreted the same.
The available pgplot fonts are: 1=sans serif, 2=roman, 3=italic,
4=script. If the font is not one of those numbers, it will fall back
to 1. The size cannot be negative. Values larger than around 1.8 are
allowed, but are probably a poor idea.
=item C<label>
Place a textual label on the plot at a specified point.
$object -> po -> label($x, $y, $text);
=item C<plot_kylabel>
Construct the label for the y-axis of a plot in k using the correct
value of k-weighting according to the current value of the C<kweight>
attribute.
=item C<plot_rylabel>
Construct the label for the y-axis of a plot in R using the correct
value of k-weighting according to the current value of the C<kweight>
attribute.
=item C<plot_qylabel>
Construct the label for the y-axis of a plot in q using the correct
value of k-weighting according to the current value of the C<kweight>
attribute.
=back
=head1 ATTRIBUTES
The following are the attributes of the Plot object. Attempting to
access an attribute not on this list will throw an exception.
The type of argument expected in given in parentheses. i.e. number,
integer, string, and so on. The default value, if one exists, is
given in square brackets.
=over 4
=item C<group> (string) I<[a random five-letter string]>
This string is used as the unique identifier for the Plot object.
=item C<space> (letter) I<[r]>
The space in which to preform the plot. It must be one of E, k, r, or q.
=item C<color>
The next line color to be used. This is updated automatically by the
plotting methods.
=item C<increment>
A counter for the number of traces already drawn in the current plot.
=item C<new>
A flag indicating whether to start a new plot or to plot over the
current one.
=back
=head2 Text and colors
=over 4
=item C<charsize> (number) I<[1.2]>
The character size in PGPLOT plots.
=item C<charfont> (integer) I<[1]>
The font type used in plots with PGPLOT. The available fonts are:
1=sans serif, 2=roman, 3=italic, 4=script.
=item C<key_x> (number) I<[0.8]>
The location in x of the plot legend as a fraction of the full window
width.
=item C<key_y> (number) I<[0.9]>
The location in y of the plot legend as a fraction of the full window
height.
=item C<key_dy> (number) I<[0.075]>
The separation in y of the entried in the plot legend as a fraction of
the full window height.
=item C<bg> (color) I<[white]>
The plot background color.
=item C<fg> (color) I<[black]>
The plot foreground color, used for text and the plot frame.
=item C<showlegend> (boolean) I<[1]>
When true, a legend will be shown on the plot.
=item C<showgrid> (boolean) I<[1]>
When true, a grid will be shown on the plot.
=item C<gridcolor> (color) I<[grey82]>
The color of the grid drawn on the plot.
=item C<c0> to C<c9> (color)
The line colors. These are the default colors (as defined in the X
windows F<rgb.txt> file) in order: blue red green4 darkviolet
darkorange brown deeppink gold3 cyan3 yellowgreen.
=back
=head2 Line types
The line type attributes take these possible values:
solid dashed dotted dot-dash points linespoints
=over 4
=item C<datastyle> (string) I<[solid]>
The line type for plots of data.
=item C<fitstyle> (string) I<[solid]>
The line type for the fit array.
=item C<partstyle> (string) I<[solid]>
The line type for a part of the data, such as the window or the
background.
=item C<pathstyle> (string) I<[solid]>
The line type for a path.
=back
=head2 Energy plots
=over 4
=item C<emin> (number) I<[-200]>
The lower bound of the plot range in energy, relative to e0 of the
data group.
=item C<emax> (number) I<[800]>
The upper bound of the plot range in energy, relative to e0 of the
data group.
=item C<e_mu> (boolean) I<[1]>
A flag for whether to plot mu(E) in an energy plot.
=item C<e_bkg> (boolean) I<[0]>
A flag for whether to plot the background in an energy plot.
=item C<e_pre> (boolean) I<[0]>
A flag for whether to plot the pre-edge line in an energy plot.
=item C<e_post> (boolean) I<[0]>
A flag for whether to plot the post-edge line in an energy plot.
=item C<e_norm> (boolean) I<[0]>
A flag for whether to plot mu(E) and the background as normalized data
in an energy plot.
=item C<e_der> (boolean) I<[0]>
A flag for whether to plot muE() as a derivative spectrum in an energy
plot.
=item C<e_sec> (boolean) I<[0]>
A flag for whether to plot the mu(E) as a second derivative spectrum
in an energy plot.
=item C<e_i0> (boolean) I<[0]>
A flag for whether to plot I0 in an energy plot.
=item C<e_signal> (boolean) I<[0]>
A flag for whether to plot the signal (i.e. the unormalized
transmission or fluorescence channel -- this combined with the I0
signal make up mu(E)) in an energy plot.
=item C<C<e_markers>> (boolean) I<[0]>
If true, than markers will be plotted in energy as appropriate to indicate the
positions of E0 and the boundaries of the pre- and post-edge resions.
=item C<e_part> () I<[]>
q{},
=item C<e_smooth> (integer) I<[0]>
When non-zero, data plotted in energy will be smoothed using a
three-point smoothing function. The number is the number of
repititions of the smoothing function.
=item C<e_zero> (boolean) I<[0]>
When true, data plotted in energy have C<bkg_e0> subtracted from the
energy array. Thus mu(E) data are plotted with the edge energy at 0.
The purpose of this is to facilitate overplotting mu(E) data from
different edges.
=back
=head2 k plots
=over 4
=item C<kmin> (number) I<[0]>
The lower bound of the plot range in k.
=item C<kmax> (number) I<[15]>
The upper bound of the plot range in k.
=item C<kweight> (number) I<[1]>
The k-weighting to use when plotting in k or in a Fourier transform
before plotting in R or q. Typically, this is 1, 2, or 3, but can
actually be any number. When this gets changed, all Data, Path, and
VPath objects will be flagged as needing to be brought up-to-date for
their forward Fourier transform.
A negative value is interpreted to mean that the value of
C<fit_karb_value> should be used as the k-weighting to each data
group. This allows data to be overplotted with variable k-weighting.
=item C<chie> (boolean) I<[0]>
When this flag is true, plots of chi(k) will be plotted instead as
chi(E).
=back
=head2 R plots
=over 4
=item C<rmin> (number) I<[0]>
The lower bound of the plot range in R.
=item C<rmax> (number) I<[6]>
The upper bound of the plot range in R.
=item C<r_pl> (letter) I<[m]>
The part of the Fourier transform to plot when making a multiple data
set plot in R. The choices are m, p, r, and i for magnitude, phase,
real, and imaginary.
=item C<dphase> (boolean) I<[0]>
When this flag is true, plots of the phase of chi(R) will be plotted
in the derivative.
=item C<smag> (boolean) I<[0]>
When this flag is true, plots of the magnitude of chi(R) will be plotted
in the second derivative. (Not implemented yet.)
=back
=head2 q plots
=over 4
=item C<qmin> (number) I<[0]>
The lower bound of the plot range in backtransform k.
=item C<qmax> (number) I<[15]>
The upper bound of the plot range in backtransform k.
=item C<q_pl> (letter) I<[r]>
The part of the Fourier transform to plot when making a multiple data
set plot in q. The choices are m, p, r, and i for magnitude, phase,
real, and imaginary.
=back
=head2 Data parts
=over 4
=item C<plot_data> (boolean) I<[1]>
When making a plot after a fit, the data will be plotted when
this is true.
=item C<plot_fit> (boolean) I<[0]>
When making a plot after a fit, the fit will be plotted when this is
true.
=item C<plot_win> (boolean) I<[0]>
When making a plot after a fit, the Fourier transform window will be
plotted when this is true.
=item C<window_multiplier> (number) I<[1.05]>
This is the scaling factor by which the window is multipled so that it
plots nicely with the data. The window will be multiplied by the
value of the largest point in the plot, then by this number. => (is => 'rw', isa => 'Bool', default => 0);
=item C<plot_res> (boolean) I<[0]>
When making a plot after a fit, the residual will be plotted when this
is true.
=item C<plot_run> (boolean) I<[0]>
When making a plot after a fit, the running R-factor will be plotted
when this is true.
=item C<plot_bkg> (boolean) I<[0]>
When making a plot after a fit, the background will be plotted when
this is true, if the background was corefined in the fit..
=item C<plot_paths> (boolean) I<[0]>
When making a plot after a fit, all paths used in the fit will be
plotted when this is true.
=back
=head2 Plot ornaments
=over 4
=item C<indicatorcolor> (color) I<[violetred]>
The color of the plot indicators.
=item C<indicatorline> (string) I<[solid]>
The line type of the plot indicator. It must be one of
solid dashed dotted dot-dash points linespoints
=item C<showmarker> (boolean) I<[1]>
Plot markers for things like e0 and the normalization range will be
displayed when this true.
=item C<markertype> (number) I<[9]>
The point style of t he plot marker. In PGPLOT, this can be a number
between 1 and 29 and 9 is a dotted circle.
=item C<markersize> (number) I<[2]>
The size of the plot marker.
=item C<markercolor> (color) I<[orange]>
The color of the plot marker.
=back
=head1 DIAGNOSTICS
These messages are classified as follows (listed in increasing order
of desperation):
(W) A warning (optional).
(F) A fatal error (trappable).
=over 4
=item C<$key is not a valid Demeter::Data parameter>
You have tried to set in invalid Plot parameter
=item C<Demeter::Plot: $k must be a number>
You have attempted to set an attribute that takes a numerical value to
something other than a number.
=item C<key_X must be a positive number>
(W) You have tried to set one of the legend parameters to something that is
not a positive number. It was reset to its default.
=item C<The font must be an integer from 1 to 4.>
(W) There are only four types of fonts available and they are numbered 1
through 4. The font was reset to sans-serif, which is number 1.
=item C<The size must be a positive number>
(W) You have tried to set the font size to something that is not a positive
number. It was reset to size 1.2.
=item C<Demeter::Plot: $k must be one of solid, dashed, dotted, dot-dash, points, or linespoints>
You have attempted to set an attribute controlling a line to an
unknown line type.
=item C<Demeter::Plot: $k must be one of m, e, r, i, or p>
You have set an attribute controlling which part of complex function
is plotted to something that is not understood as complex function
part. The choices are C<m>agnitude, C<e>nvelope, C<r>eal,
C<i>maginary, and C<p>hase.
=back
=head1 SERIALIZATION AND DESERIALIZATION
Serialization of a Plot object is still an open question.
=head1 CONFIGURATION AND ENVIRONMENT
See L<Demeter::Config> for a description of the configuration system.
The plot and ornaments configuration groups control the attributes of
the Plot object.
=head1 DEPENDENCIES
Demeter's dependencies are in the F<Build.PL> file.
=head1 BUGS AND LIMITATIONS
=over 4
=item *
Need a boolean flag for indicating energy plots from 0 (i.e. with
bkg_e0 subtracted from the energy array). With this mu(E) from
different edges can be easily overplotted.
=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
|