This commit is contained in:
Ryan@fsunuc 2023-01-11 20:58:46 -05:00
parent d3cd22d7ad
commit 0e9eda9082
3 changed files with 21 additions and 11 deletions

View File

@ -33,7 +33,7 @@
<li>The easiest way to do DWBA and Monte Carlo Simulation is use the <a href="simpleSim.html" target="uploaded">Simplied Interface</a> <li>The easiest way to do DWBA and Monte Carlo Simulation is use the <a href="simpleSim.html" target="uploaded">Simplied Interface</a>
<li>The kenimatic calculation is documented in <a href="https://wiki.anl.gov/wiki_heliosdaq/images/3/3f/Kinematics_of_HELIOS.pdf" target="_blank" >Here</a>.</li> <li>The kenimatic calculation is documented in <a href="https://wiki.anl.gov/wiki_heliosdaq/images/3/3f/Kinematics_of_HELIOS.pdf" target="_blank" >Here</a>.</li>
<li>The DWBA calucation is using Ptolemy. <a href="https://www.phy.anl.gov/theory/research/ptolemy/" target="_blank">Here</a> for more detail. </li> <li>The DWBA calucation is using Ptolemy. <a href="https://www.phy.anl.gov/theory/research/ptolemy/" target="_blank">Here</a> for more detail. </li>
<li>Past calculations can be found <a href="files/" target="uploaded">Here</a></li> <li>Past calculations can be found <a href="files/" target="uploaded">Here</a>. Clear every day</li>
</ul> </ul>
</p> </p>

View File

@ -170,7 +170,7 @@ plotStr="{"
plotSize=len(plot) plotSize=len(plot)
for i in range(plotSize): for i in range(plotSize):
plotStr += plot[i] + ", " plotStr += plot[i] + ", "
if( i == (int)(plotSize/2) and i > 3 ) : if( i == (int)(plotSize/2) and plotSize > 3 ) :
plotStr += "break, " plotStr += "break, "
plotStr +="pInfo}\n" plotStr +="pInfo}\n"
@ -290,6 +290,8 @@ if isDWBA:
print ("<br><span style=\"white-space: pre-line\"> %s </span>" % result) print ("<br><span style=\"white-space: pre-line\"> %s </span>" % result)
print ("<br><span style=\"white-space: pre-line\"> %s </span>" % haha) print ("<br><span style=\"white-space: pre-line\"> %s </span>" % haha)
print (plotStr)
print ("</body>") print ("</body>")
print ("</html>") print ("</html>")

View File

@ -154,15 +154,23 @@
<h3> Plot config:</h3> <h3> Plot config:</h3>
<input type="checkbox" name="plot" value="pEZ" checked/>E vs Z<br> <table>
<input type="checkbox" name="plot" value="pExCal" checked/>Ex (cal.)<br> <tr>
<input type="checkbox" name="plot" value="pThetaCM" checked/>ThetaCM<br> <td><input type="checkbox" name="plot" value="pEZ" checked/>E vs Z</td>
<input type="checkbox" name="plot" value="pThetaCM_Z" checked/>ThetaCM vs Z<br> <td><input type="checkbox" name="plot" value="pExCal" checked/>Ex (cal.)</td>
<input type="checkbox" name="plot" value="pRecoilXY" checked/>Recoil X vs Y<br> <td><input type="checkbox" name="plot" value="pThetaCM" checked/>ThetaCM</td>
<input type="checkbox" name="plot" value="pRecoilRThetaCM"/>Recoil-R vs ThetaCM<br> </tr>
<input type="checkbox" name="plot" value="pRecoilRZ"/>Recoil R vs Z<br> <tr>
<input type="checkbox" name="plot" value="pTDiffZ"/>Time diff vs Z<br> <td><input type="checkbox" name="plot" value="pThetaCM_Z" checked/>ThetaCM vs Z</td>
<input type="checkbox" name="plot" value="pArrayXY"/>Array X vs Y<br> <td><input type="checkbox" name="plot" value="pRecoilXY" checked/>Recoil X vs Y</td>
<td><input type="checkbox" name="plot" value="pRecoilRThetaCM"/>Recoil-R vs ThetaCM</td>
</tr>
<tr>
<td><input type="checkbox" name="plot" value="pRecoilRZ"/>Recoil R vs Z</td>
<td><input type="checkbox" name="plot" value="pTDiffZ"/>Time diff vs Z</td>
<td><input type="checkbox" name="plot" value="pArrayXY"/>Array X vs Y</td>
</tr>
</table>
<p></p> <p></p>