本文整理汇总了Python中JLA_library.getDateOfMax方法的典型用法代码示例。如果您正苦于以下问题:Python JLA_library.getDateOfMax方法的具体用法?Python JLA_library.getDateOfMax怎么用?Python JLA_library.getDateOfMax使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JLA_library
的用法示例。
在下文中一共展示了JLA_library.getDateOfMax方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: fitDateOfMax
# 需要导入模块: import JLA_library [as 别名]
# 或者: from JLA_library import getDateOfMax [as 别名]
def fitDateOfMax(self,lightCurveFile,params):
# A full salt2 fit
outputFile=lightCurveFile.replace('.list','.res')
os.environ['SALTPATH']=JLA.get_full_path(params['defsaltModel'])
JLA.fitLC(lightCurveFile, outputFile, salt_prefix='')
self.dateofMax,self.dateofMaxError=JLA.getDateOfMax(outputFile)
# Remove the old date of max and insert the new one
lc=open(lightCurveFile)
lc_lines=lc.readlines()
lc.close()
lc=open(lightCurveFile,'w')
lc.write('@DayMax %s %s\n' % (self.dateofMax,self.dateofMaxError))
for line in lc_lines:
if 'DayMax' in line:
pass
else:
lc.write(line)
lc.close()
return