-
Notifications
You must be signed in to change notification settings - Fork 6
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
DM-47303: Add fgcmcal configurations for LSSTComCam #581
Conversation
3c14321
to
40065e0
Compare
|
||
config.outfileBase = "fgcmLSSTComCam" | ||
config.bands = ["u", "g", "r", "i", "z"] | ||
config.fitBands = ["u", "g", "r", "i", "z"] |
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 these need a y?
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.
We don't support y band yet. All the stuff below is a placeholder.
config/comCam/fgcmFitCycle.py
Outdated
} | ||
config.autoPhotometricCutNSig = 3.0 | ||
config.autoHighCutNSig = 3.0 | ||
# Fit aperture corrections with only 2 bins to exercise the code. |
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.
Is this comment relevant still?
"r": fgcmcal.Sedterm(primaryTerm="gr", secondaryTerm="ri", constant=0.9), | ||
"i": fgcmcal.Sedterm(primaryTerm="ri", secondaryTerm="iz", constant=1.1), | ||
"z": fgcmcal.Sedterm(primaryTerm="iz", secondaryTerm="ri", constant=1.0, | ||
extrapolated=True, primaryBand="z", secondaryBand="i", tertiaryBand="r") |
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.
Are primary and secondary bands the correct way round?
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, they are. This is start by using the z band and adjust from there. z is primary to the z.
# extrapolated=True, primaryBand="y", | ||
# secondaryBand="z", tertiaryBand="i") | ||
} | ||
|
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.
Should this still be commented out?
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.
We can uncomment when it supports y band. I added a comment.
"y": False, | ||
} | ||
config.sigFgcmMaxEGrayDict = { | ||
"u": 0.15, |
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.
Is this one supposed to be different to the others?
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! Comment added.
34946af
to
d9b1d00
Compare
This supports ugriz so far.