-
Notifications
You must be signed in to change notification settings - Fork 15
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 the way the mapmaker handles signals #182
Conversation
This change will make calls to `destripe` clearer even without having to look at the documentation.
Hi, I have renamed params = lbs.DestriperParameters(
nside=16,
baseline_length_s=100,
return_destriped_map=True,
) I have updated @sgiardie 's notebook accordingly, but I fear that there will be changes to be made in the production scripts. Do you think this is reasonable to do? |
Hi @ziotom78 , sorry for the late reply. I think it is a reasonable change, and also not so impacting on the production scripts (it would require just to rename that variable, I guess) |
Yes, that's right, it's something you can do automatically if you use an IDE like PyCharm or Spyder. I'll draft release v0.6.0 then, instead of v0.5.1, as this is a breaking change. |
Wait, I just realized that we can keep |
Mmm, no, deprecating a field of a dataclass is not trivial and I fear to complicate the code too much for little gain. Sorry for the noise. |
This PR modifies
_Toast2FakeCache
so that it performs deep copies even whenSignal.copy()
is called.