-
Notifications
You must be signed in to change notification settings - Fork 11
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
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
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
|
There was a problem hiding this 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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pls see inline
src/diffpy/labpdfproc/tools.py
Outdated
args.wavelength = WAVELENGTHS[args.anode_type] | ||
else: | ||
elif not args.wavelength: |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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.
src/diffpy/labpdfproc/tools.py
Outdated
if args.wavelength: | ||
delattr(args, "anode_type") | ||
elif args.anode_type: | ||
elif not args.wavelength and args.anode_type: |
There was a problem hiding this comment.
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?
There was a problem hiding this 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.
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. |
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. |
There was a problem hiding this 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 @@ | |||
{ |
There was a problem hiding this comment.
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") |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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)?
There was a problem hiding this comment.
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.
There was a problem hiding this 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
@sbillinge this PR is ready to be merged now. I've opened new issues for the config workflow |
closes #153
@sbillinge ready for review