Skip to content

Commit

Permalink
column_names: Add gauss_lines_names0 (iss #25)
Browse files Browse the repository at this point in the history
  • Loading branch information
astrochun committed Feb 20, 2020
1 parent e3fa946 commit 992a3f7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Metallicity_Stack_Commons/column_names.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from . import line_name

# These are common/general column names

# Column names for bin information
Expand All @@ -12,6 +14,11 @@
# Column names for bin information in R23 and O32 line ratios
bin_zcalbase_names0 = ['logR23_min', 'logR23_max', 'logR23_avg', 'logO32_min', 'logO32_max', 'logO32_avg']

# Column names for Gaussian fitting
gauss_names0 = ['Flux_Gaussian', 'Flux_Observed', 'S/N', 'Sigma', 'Norm'] # This is just the suffix
gauss_lines_names0 = []
for line0 in line_name:
gauss_lines_names0 += ['{}_{}'.format(line0, suffix) for suffix in gauss_names0]

def merge_column_names(*args):
"""
Expand Down

0 comments on commit 992a3f7

Please sign in to comment.