Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 1316: Adding fortuitous variable stars to EXOTIC #1339

Draft
wants to merge 13 commits into
base: develop
Choose a base branch
from
Draft
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
7 changes: 5 additions & 2 deletions exotic/api/elca.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,16 +155,19 @@ def binner(arr, n, err=''):

class lc_fitter(object):

def __init__(self, time, data, dataerr, airmass, prior, bounds, neighbors=200, mode='ns', jd_times=None, verbose=True):
def __init__(self, time, data, dataerr, airmass, prior, bounds, neighbors=200, mode='ns',
target_flux=None, comparison_flux=None, jd_times=None, verbose=True):
self.time = time
self.data = data
self.dataerr = dataerr
self.airmass = airmass
self.prior = prior
self.bounds = bounds
self.max_ncalls = 2e5
self.verbose = verbose
self.target_flux = target_flux
self.comparison_flux = comparison_flux
self.jd_times = jd_times
self.verbose = verbose
self.mode = mode
self.neighbors = neighbors
self.results = None
Expand Down
Loading