Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.idea/
*~
*.pyc
.DS_Store
00ToDo
1 change: 1 addition & 0 deletions .gitignore~
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea/
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ additional command line arguments
<b> --md MD </b> metallicity scales to calculate. default is 'all',
options are: D02, Z94, M91, M08, P05,P10, PP04, M13, D13, KD02,
KD02comb, DP00 (deprecated), P01 (deprecated), C01 (deprecated)


<b> --unpickle </b> if it exists, a pickle file generated in a previous run for this \<filename\> and this
number of samples is read in instead of recalculating the metalicity
Expand All @@ -72,6 +73,8 @@ additional command line arguments

<b> --nodust </b> don't do dust corrections (default is to do it)

<b> --bluedust </b> Calculate extinction based on Hg/Hb (default is to do Hb/Ha)

<b> --noplot </b> don't plot individual distributions (default is to
plot all distributions)

Expand Down
7 changes: 7 additions & 0 deletions build/lib/pyMCZ/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import os

p = os.path.abspath('./')
if not os.path.exists(p + '/output'):
os.makedirs(p + '/output')

__all__ = ["mcz", "metallicity", "metscales", "testcompleteness"]
Loading