10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-10-02 22:40:59 +02:00

Change correction to corrected

This commit is contained in:
Mickaël Véril 2019-11-26 10:01:54 +01:00
parent 8665b7f52a
commit 1a61c2c6a7
2 changed files with 4 additions and 4 deletions

View File

@ -76,10 +76,10 @@ class excitationBase {
}
}
class excitationValue extends excitationBase {
constructor(initial, final, value,correction=null) {
constructor(initial, final, value,corrected=null) {
super(initial, final)
this.value = value
this.correction = correction
this.corrected = corrected
}
}

View File

@ -146,7 +146,7 @@ class dataFileBase(object):
####################### ####################### #################
# Number Spin Symm Number Spin Symm E_{:5s} Corr\n""".format(self.GetFileType().name.lower()))
for ex in self.excitations:
mystr=" {:8s}{:7s}{:10s}{:8s}{:6s}{:13s}{:8s}{}\n".format(str(ex.initial.number),str(ex.initial.multiplicity),ex.initial.symetry,str(ex.final.number),str(ex.final.multiplicity),ex.final.symetry,str(ex.value) if ex.value is not None else "_",str(ex.Correction) if ex.Correction is not None else "_")
mystr=" {:8s}{:7s}{:10s}{:8s}{:6s}{:13s}{:8s}{}\n".format(str(ex.initial.number),str(ex.initial.multiplicity),ex.initial.symetry,str(ex.final.number),str(ex.final.multiplicity),ex.final.symetry,str(ex.value) if ex.value is not None else "_",str(ex.corrected) if ex.corrected is not None else "_")
f.write(mystr)
class method:
def __init__(self,name, *args):
@ -238,4 +238,4 @@ class excitationValue(excitationBase):
def __init__(self,initial, final, value,*args):
super(excitationValue,self).__init__(initial, final)
self.value = value
self.Correction=args[0] if len(args)>0 else None
self.corrected=args[0] if len(args)>0 else None