Skip to content

Commit

Permalink
column_names: Add individual filenames in filename_dict; additional c…
Browse files Browse the repository at this point in the history
…omments for documentation (iss #25)
  • Loading branch information
astrochun committed Feb 22, 2020
1 parent b04a93a commit 746f037
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Metallicity_Stack_Commons/column_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,18 @@

# Dictionary containing filenames
filename_dict = dict()

# Bin-related files
filename_dict['bin_info'] = 'bin_info.tbl'
filename_dict['bin_valid'] = 'bin_validation.tbl'
filename_dict['bin_fit'] = 'bin_emission_line_fit.tbl'
filename_dict['bin_fit_rev'] = filename_dict['bin_fit'].replace('.tbl', '.revised.tbl')
filename_dict['bin_derived_prop'] = 'bin_derived_properties.tbl'
filename_dict['bin_derived_prop_rev'] = filename_dict['bin_derived_prop'].replace('.tbl', '.revised.tbl')
filename_dict['indv_derived_prop'] = 'indv_derived_properties.tbl'

# Individual galaxy/spectra-related files
filename_dict['indv_prop'] = 'individual_properties.tbl'
filename_dict['indv_derived_prop'] = 'individual_derived_properties.tbl'


def merge_column_names(*args):
Expand Down

0 comments on commit 746f037

Please sign in to comment.