Skip to content

Commit

Permalink
analysis.attenuation.compute_EBV: Fix a typo in Column name (iss #10)
Browse files Browse the repository at this point in the history
  • Loading branch information
astrochun committed Jun 3, 2020
1 parent 7a39db4 commit 0cf7167
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Metallicity_Stack_Commons/analysis/attenuation.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def compute_EBV(fitspath, use_revised=False):
EBV = -2.5 * np.log10(HgHb/HgHb_CaseB)/(k_HGAMMA - k_HBETA)

col1 = Column(HgHb, name=dust0[1])
col2 = Column(HdHb, name=dust0[1])
col3 = Column(EBV, name=dust0[0])
col2 = Column(HdHb, name=dust0[2])
col3 = Column(EBV, name=dust0[0])

out_ascii = join(fitspath, filename_dict['bin_derived_prop_rev']) if use_revised \
else join(fitspath, filename_dict['bin_derived_prop'])
Expand Down

0 comments on commit 0cf7167

Please sign in to comment.