Skip to content

Commit

Permalink
Added O'Connel Effect Option
Browse files Browse the repository at this point in the history
Add the ability analyze the O'Connel effect.
  • Loading branch information
kjkoeller committed Aug 30, 2022
1 parent 7948e9f commit f0011dc
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@
Author: Kyle Koeller
Created: 8/29/2022
Last Updated: 8/29/2022
Python Version 3.9
Last Updated: 8/30/2022
"""

import tess_data_search
import AIJ_Night_Filters
import TESS_Night_Filters
import APASS_AIJ_comparison_selector
import OConnell


def main():
print()
print("Which program do you want to run?")
print("TESS database search, AIJ/TESS Night Filters, or AIJ Comp Selector")
print("TESS database search, AIJ/TESS Night Filters, AIJ Comp Selector, or O'Connel Effect")
print("")

while True:
Expand All @@ -38,6 +38,9 @@ def main():
elif prompt.lower() == "aij comp selector":
APASS_AIJ_comparison_selector.main()
break
elif prompt.lower() == "o'connel effect":
OConnell.main()
break
else:
print("You have not entered any of the allowed entries, please try again.")
print()
Expand Down

0 comments on commit f0011dc

Please sign in to comment.