Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update wavelengths #155

Merged
merged 5 commits into from
Jan 30, 2025
Merged

fix: update wavelengths #155

merged 5 commits into from
Jan 30, 2025

Conversation

yucongalicechen
Copy link
Collaborator

closes #153
@sbillinge ready for review

Copy link

codecov bot commented Jan 27, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 99.21%. Comparing base (983a7b0) to head (63df4ff).
Report is 6 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #155   +/-   ##
=======================================
  Coverage   99.21%   99.21%           
=======================================
  Files           5        5           
  Lines         254      254           
=======================================
  Hits          252      252           
  Misses          2        2           
Files with missing lines Coverage Δ
tests/test_tools.py 98.50% <ø> (ø)

Copy link
Contributor

@sbillinge sbillinge left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks great, please see one comment

Copy link
Contributor

@sbillinge sbillinge left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pls see inline

args.wavelength = WAVELENGTHS[args.anode_type]
else:
elif not args.wavelength:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if the default should be MoKa1. I am not sure which is the most commonly used. Also, it would be good if it could be loaded from a config file. In this way, if it is lab diffractometer, the correct one could be in the config file and loaded by default, but in a different lab, they could update the config file accordingly.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah that makes sense. Is Ka1 more commonly used in general? If so should we have Mo = MoKa1 instead?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This may be a question for @till-schertenleib or probably Pascal. But we should use the one that is most common.

if args.wavelength:
delattr(args, "anode_type")
elif args.anode_type:
elif not args.wavelength and args.anode_type:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this code seems somewhat convoluted. Is this really the simplest way to do it?

Copy link
Contributor

@sbillinge sbillinge left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As well as the comments here, I was wondering if we could read the anode-type from a config file as an option. This way a lab could set things up with their diffractometer for all their users.

@till-schertenleib
Copy link
Collaborator

till-schertenleib commented Jan 28, 2025 via email

@sbillinge
Copy link
Contributor

every company has their own file type. Bruker has .brml files which contain all this meta information. But we (everyone) always exports to .xy or .xye where this information is lost.

On Tue, 28 Jan 2025 at 14:30, Simon Billinge @.> wrote: @.* commented on this pull request. As well as the comments here, I was wondering if we could read the anode-type from a config file as an option. This way a lab could set things up with their diffractometer for all their users. — Reply to this email directly, view it on GitHub <#155 (review)>, or unsubscribe https://github.com/notifications/unsubscribe-auth/A2XYJRT3VNCVTH5ZQFP6FXD2M6A77AVCNFSM6AAAAABV5B5AVGVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZDKNZYGI2DKMZSGY . You are receiving this because you were mentioned.Message ID: @.***>
-- Till Schertenleib EPFL, Switzerland Phone: +41 78 729 21 31

Thanks @till-schertenleib . I meant our own config file (that has username in for example). We just store the anode type, and anyone running the software on that computer will get that anode type by default (but can override it of course). Right now, the default if nothing is given is "Mo" which may not be the greatest idea. We need to discuss the workflow we would like users to have, and then implement it.

@yucongalicechen
Copy link
Collaborator Author

I put the wavelength in a config json file. Since we get anode types from wavelength file directly, I think we don't need a separate file for that. I pushed my progress.
@till-schertenleib I think the question here is if we want to put the default value Mo or Mo-Ka1?

Copy link
Contributor

@sbillinge sbillinge left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please see the comments. This went is a slightly odd direction. Also, we still don't hve teh config file workflow. If you like we could put that on a separate PR. Just make an issue and we can merge this without that.

@@ -0,0 +1,11 @@
{
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this should just be in one of the python files. We don't want to have to maintain a dtabase-like json file separately. Is there a reason you moved this from tools.py? This seems like unnecessary infrastructure for us to maintain.

"No valid wavelength. Please rerun specifying a known anode_type or a positive wavelength."
)
else:
delattr(args, "anode_type")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do I understand that if the user enters both a valid wavelength and an anode type we default to the wavelength? Is there a good use-case where this makes sense? Otherwise it looks to me like magic and we should just crash if the user provides both (i.e., I can see that they would do htat by mistake, I can't see that they would do that on purpose, though there may be a UC that you have in mind.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes so if the user enters only wavelength=0.25 and leaves the anode type empty, it will be automatically loaded as anode type = Mo, but that's wrong. Maybe we can add a check box somewhere to allow user to remove anode type (or automatically remove it when user enters a wavelength, which is kind of what we're doing now)?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would throw an error if both are specified. Unless you can think of a case where the user would intentionally do that for some reason.

Copy link
Contributor

@sbillinge sbillinge left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please see inline comment

@yucongalicechen
Copy link
Collaborator Author

@sbillinge this PR is ready to be merged now. I've opened new issues for the config workflow

@sbillinge sbillinge merged commit f805fe3 into diffpy:main Jan 30, 2025
5 checks passed
@yucongalicechen yucongalicechen deleted the wavelength branch January 30, 2025 00:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

fix: update wavelengths
3 participants