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

adding in ACS SBC, WFC3 and ACS narrow, and JWST filters and enhancing the filter plotting routine #799

Merged
merged 24 commits into from
May 23, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
making code simpler
  • Loading branch information
karllark committed May 14, 2024
commit 5153913fd7be3f8149b001123f56c9c4279078c4
8 changes: 4 additions & 4 deletions beast/tools/make_libfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -678,10 +678,10 @@ def make_vega_libfile():
lum = []
mag = []

for i in range(len(flist)):
fname.append(flist[i].name)
cwave.append(flist[i].cl)
flux = flist[i].getFlux(vl, vf)
for cfilt in flist:
fname.append(cfilt.name)
cwave.append(cfilt.cl)
flux = cfilt.getFlux(vl, vf)
lum.append(flux)
mag.append(-2.5 * np.log10(flux))

Expand Down