10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-10-03 06:50:58 +02:00

Update procedure description

This commit is contained in:
Mickaël Véril 2020-01-28 17:33:56 +01:00
parent 69c4afa43c
commit 1c21235d40

View File

@ -26,8 +26,16 @@ draft: false
<script> <script>
window.onload = async () => { window.onload = async () => {
const LatexInline = ['\\(', '\\)'] const LatexInline = ['\\(', '\\)']
var slist = $("#SelectList")
getAllSelect().each(function () {
$("<li/>").text($('label[for="' + $(this).attr('id') + '"]').text()).appendTo(slist)
})
var cbextl = $("#cb_exTypeList") var cbextl = $("#cb_exTypeList")
var allc = $("#AllowList>li:last-child") var extl = $("#exTypeList")
var vertkindtl=$("#exVertKindList")
for (const [name, value] of VertExcitationKinds.All) {
$("<li/>").text(name).appendTo(vertkindtl)
}
for (const [name, value] of excitationTypes.All) { for (const [name, value] of excitationTypes.All) {
var description = null var description = null
switch (Number(value)) { switch (Number(value)) {
@ -54,7 +62,7 @@ draft: false
description = null; description = null;
break; break;
} }
$("<li/>").text(LatexInline[0] + value.LaTeX + LatexInline[1] + (description == null ? '' : ": " + description)).insertBefore(allc) $("<li/>").text(LatexInline[0] + value.LaTeX + LatexInline[1] + (description == null ? '' : ": " + description)).appendTo(extl)
var cbli = $("<li/>") var cbli = $("<li/>")
$("<input/>", { type: "checkbox", id: "cb_" + name, name: name, value: Number(value) }).change(nestedCheckbox_change).appendTo(cbli); $("<input/>", { type: "checkbox", id: "cb_" + name, name: name, value: Number(value) }).change(nestedCheckbox_change).appendTo(cbli);
$('<label />', { 'for': 'cb_' + name, text: LatexInline[0] + value.LaTeX + LatexInline[1] + (description == null ? '' : ": " + description) }).appendTo(cbli); $('<label />', { 'for': 'cb_' + name, text: LatexInline[0] + value.LaTeX + LatexInline[1] + (description == null ? '' : ": " + description) }).appendTo(cbli);
@ -62,7 +70,8 @@ draft: false
} }
await MathJax.typesetPromise(); await MathJax.typesetPromise();
delete (cbextl) delete (cbextl)
delete (allc) delete (extl)
delete (vertkindtl)
window.doiCache = new DOICache() window.doiCache = new DOICache()
await loadFiles() await loadFiles()
} }
@ -428,17 +437,21 @@ draft: false
In this page you can compare multiple dataset and have somme statistics to evaluate method or basis accuracy. In this page you can compare multiple dataset and have somme statistics to evaluate method or basis accuracy.
For this follow this steps For this follow this steps
<ol> <ol>
<li>Select a value type (Absorption, fluorescence or \(\Delta \text{ZPE}\))</li> <li>Add custom files</li>
<li>You can add custom files if you want</li>
<li>Choose each parameters (of course you can select multiples values for each)</li>
<ul> <ul>
<li>Molecule</li> <li>Absorption</li>
<li>Method</li> <li>Fluorescence</li>
<li>Set</li>
<li>Allow:</li>
<ul id="AllowList">
<li>Unsafe</li>
</ul> </ul>
<li>Choose each parameters (of course you can select multiples values for each) you can use the the <button
disabled>Select all</button> button to select all items</li>
<ul id="SelectList"></ul>
<li>Choose filters:</li>
<ul>
<li>Choose what kind of vertical excitations you want</li>
<ul id="exVertKindList"></ul>
<li>Choose other excitation parameters you want</li>
<ul id="exTypeList"></ul>
<li>Choose if you want to include unsafe values in statistics</li>
</ul> </ul>
<li>Select a reference from <strong>already selected data</strong> (by default first is selected -it's the <abbr <li>Select a reference from <strong>already selected data</strong> (by default first is selected -it's the <abbr
title="Theoretical best estimate">TBE</abbr> if present- is already selected)</li> title="Theoretical best estimate">TBE</abbr> if present- is already selected)</li>