mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-11-04 21:24:00 +01:00
Fix multiplicity is not integer on final
This commit is contained in:
parent
2167f5bea6
commit
abc2d4cb33
@ -169,7 +169,7 @@ class dataFileBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var start = new state(parseInt(vals[0], 10), parseInt(vals[1], 10), vals[2]);
|
var start = new state(parseInt(vals[0], 10), parseInt(vals[1], 10), vals[2]);
|
||||||
var end = new state(parseInt(vals[3], 10), vals[4], vals[5]);
|
var end = new state(parseInt(vals[3], 10), parseInt(vals[4],10), vals[5]);
|
||||||
var ex = new excitationValue(start, end, parseFloat(vals[6], 10));
|
var ex = new excitationValue(start, end, parseFloat(vals[6], 10));
|
||||||
dat.excitations.push(ex);
|
dat.excitations.push(ex);
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user