Skip to content

Commit

Permalink
removed obselete function
Browse files Browse the repository at this point in the history
  • Loading branch information
timothydmorton committed Sep 3, 2014
1 parent d6c6ca7 commit b926542
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions isochrones/isochrones.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,14 +360,3 @@ def fit_mcmc(self,nwalkers=200,nburn=100,niter=500,threads=1):

self.sampler = sampler



def fehstr(feh,minfeh=-1.0,maxfeh=0.5):
if feh < minfeh:
return '%.1f' % minfeh
elif feh > maxfeh:
return '%.1f' % maxfeh
elif (feh > -0.05 and feh < 0):
return '0.0'
else:
return '%.1f' % feh

0 comments on commit b926542

Please sign in to comment.