geometry
Tasks for working with and optimizing geometry.
Classes:
Name | Description |
---|---|
OptimizeAgBhGeometryExhaustive |
Task to optimize the beam center and detector distance based on a powder pattern from an Ag Behenate run. Performs an exhaustive grid search. |
OptimizeAgBhGeometryExhaustive
Bases: Task
Task to perform geometry optimization.
Source code in lute/tasks/geometry.py
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 |
|
_calc_and_score_ideal_rings(q_peaks)
Score inter-peak distances in q-space based on known behenate pattern.
Relies on the equidistance of peaks in q-space for silver behenate powder.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
q_peaks
|
ndarray[float64]
|
Positions of powder peaks in q-space (inverse Angstrom). 1 dimensional. |
required |
Returns:
Name | Type | Description |
---|---|---|
rings |
ndarray[float64]
|
Predicted positions of peaks based on the best fit q-spacing. 1 dimensional. |
final_score |
float
|
Final score calculated from residuals associated with each q-spacin. |
Source code in lute/tasks/geometry.py
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 |
|
_center_guesses(powder)
Return starting beam center points based on dx/dy parameters.
This method returns a list of starting values for the beam center to be used as initial guesses for the optimization routine. The output of this method is tuned by the dx/dy parameters provided in the TaskParameters model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
powder
|
ndarray[float64]
|
Powder image. |
required |
Returns:
Name | Type | Description |
---|---|---|
guesses |
List[Tuple[float, float]]
|
Starting guesses for the beam center optimization routine. |
Source code in lute/tasks/geometry.py
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 |
|
_check_if_path_and_type(string)
Check if a string is a valid path and determine the filetype.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
string
|
str
|
The string that may be a file path. |
required |
Returns:
Name | Type | Description |
---|---|---|
is_valid_path |
bool
|
If it is a valid path. |
powder_type |
Optional[str]
|
If is_valid_path, the file type. |
Source code in lute/tasks/geometry.py
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 |
|
_estimate_distance()
Estimate a starting distance.
Will estimate the distance based on current geometry if no guess is provided, otherwise this method returns the provided guess.
Returns:
Name | Type | Description |
---|---|---|
distance |
float
|
Estimated distance, or user-provided guess if one was present in the TaskParameters. |
Source code in lute/tasks/geometry.py
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 |
|
_extract_mask(mask_path)
Extract a mask.
May take a smalldata file or numpy array.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
mask_path
|
str
|
Path to the object containing the mask. |
required |
Returns:
Name | Type | Description |
---|---|---|
mask |
Optional[ndarray[float64]]
|
The extracted mask. Returns None if no powder could be extracted and no specific error was encountered. |
Source code in lute/tasks/geometry.py
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 |
|
_extract_powder(powder_path)
Extract a powder image.
May take a smalldata file or numpy array.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
powder_path
|
str
|
Path to the object containing the powder image. |
required |
Returns:
Name | Type | Description |
---|---|---|
powder |
Optional[ndarray[float64]]
|
The extracted powder image. Returns None if no powder could be extracted and no specific error was encountered. |
Source code in lute/tasks/geometry.py
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 |
|
_get_pixel_size_and_wavelength(ds, det)
Extract pixel size in mm and wavelength in Angstroms.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ds
|
DataSource
|
psana DataSource object. |
required |
det
|
Detector
|
psana Detector object for which the pixel size will be extracted. |
required |
Returns:
Name | Type | Description |
---|---|---|
pixel_size |
float
|
Pixel size of det in mm. |
wavelength |
float
|
X-ray wavelength in Angstroms. |
Source code in lute/tasks/geometry.py
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 |
|
_initial_image_center(powder)
Estimate a beam center.
Will estimate the center as the powder image center if no guess is provided, otherwise this method returns the provided guess.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
powder
|
ndarray[float64]
|
Powder image. |
required |
Returns:
Name | Type | Description |
---|---|---|
center |
ndarray[float64]
|
Estimated center, or user-provided guess if one was present in the TaskParameters. |
Source code in lute/tasks/geometry.py
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 |
|
_opt_center(powder, indices, center_guess)
Optimize the beam center position on the detector.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
powder
|
ndarray[float64]
|
2-D assembled powder image. |
required |
indices
|
ndarray[float64]
|
Indices of peaks in a radial profile of the azimuthally integrated powder image. |
required |
center_guess
|
Tuple[float, float]
|
Starting guess for the beam center in pixels. |
required |
Returns:
Name | Type | Description |
---|---|---|
res |
MinimizerResult
|
Result from the minimization. res.params["cx"] and res.params["cy"] contain the new beam center. |
Source code in lute/tasks/geometry.py
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 |
|
_opt_distance(radial_profile, distance_guess, wavelength, pixel_size)
Optimize the detector distance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
radial_profile
|
ndarray[float64]
|
1-D array of peak intensities for an azimuthally integrated powder image. |
required |
distance_guess
|
float
|
Starting guess for the detector distance. |
required |
wavelength
|
float
|
X-ray wavelength in angstroms. |
required |
pixel_size
|
float
|
Size of detector pixels in mm. |
required |
Returns:
Name | Type | Description |
---|---|---|
peak_indices |
ndarray[int64]
|
1-D array of peak indices. |
selected_peaks |
ndarray[float64]
|
Array of selected peaks. |
new_distance |
float
|
New, optimized, detector distance. |
final_score |
float
|
Final score calculated from residuals associated with each q-spacing. |
Source code in lute/tasks/geometry.py
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 |
|
_opt_geom(powder, mask, params_guess, n_iterations, wavelength, pixel_size)
Optimize the detector distance and beam center.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
powder
|
ndarray[float64]
|
2-D assembled powder image. |
required |
mask
|
ndarray[float64]
|
Corresponding binary mask for the powder image. |
required |
params_guess
|
Tuple[int, Tuple[float, float], float]
|
Initial guesses. In format: (n_peaks, (center_x, center_y), distance). |
required |
n_iterations
|
int
|
Number of iterations to perform. |
required |
wavelength
|
float
|
X-ray wavelength in angstroms. |
required |
pixel_size
|
float
|
Size of detector pixels in mm. |
required |
Returns:
Name | Type | Description |
---|---|---|
peak_indices |
ndarray[int64]
|
1-D array of peak indices. |
selected_peaks |
ndarray[float64]
|
Array of selected peaks. |
final_scores |
float
|
Final scores calculated from residuals associated with each q-spacing for each iteration of optimization. |
calc_distances |
List[float]
|
Optimized distances associated with each score. |
calc_centers |
List[Tuple[float, float]]
|
Optimized centers associated with each score. |
Source code in lute/tasks/geometry.py
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 |
|
_radial_profile(powder, mask, center, threshold=10.0, filter_profile=False, filter_order=2, filter_threshold=0.25)
Compute the radial intensity profile of an image.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
powder
|
ndarray[float64]
|
2-D assembled powder image. |
required |
mask
|
Optional[ndarray[float64]]
|
Corresponding binary mask for the powder image. |
required |
center
|
Tuple[float, float]
|
Beam center in the image, in pixels. |
required |
threshold
|
float
|
Default: 10. Below this intensity set the intensity of the radial profile to 0. |
10.0
|
filter_profile
|
bool
|
Default: False. If True apply a lowpass Butterworth filter to the profile. |
False
|
filter_order
|
int
|
Default: 2. If applying a filter, the order of the filter. |
2
|
filter_threshold
|
float
|
Default: 0.25. Critical frequency for the Butterworth filter, if applying it. |
0.25
|
Returns:
Name | Type | Description |
---|---|---|
radial_profile |
ndarray[float64]
|
1-D array of peak intensities for an azimuthally integrated powder image. |
Source code in lute/tasks/geometry.py
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 |
|
_run()
Perform geometry optimization of detector distance and beam center.
Requires a powder image from data acquired of Ag Behenate.
Source code in lute/tasks/geometry.py
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 |
|