2022-12-10 19:12:39 -05:00
|
|
|
|
2022-12-09 18:31:19 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2022-12-10 01:00:10 -05:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
2022-12-09 18:31:19 -05:00
|
|
|
<form action = "simpleInput.py" method = "POST" target = "uploaded">
|
|
|
|
|
|
|
|
<h3>Reaction:</h3>
|
|
|
|
|
|
|
|
<table>
|
2022-12-10 19:12:39 -05:00
|
|
|
<tr>
|
|
|
|
<td>Beam Energy</td>
|
|
|
|
<td></td>
|
|
|
|
<td><input type = "text" name = "KEA" size="5" value="10"/></td>
|
|
|
|
<td style="text-align:left">MeV/u</td>
|
|
|
|
</tr>
|
2022-12-09 18:31:19 -05:00
|
|
|
<tr>
|
|
|
|
<td>Beam </td>
|
|
|
|
<td style="text-align:right">A:</td>
|
2022-12-10 19:12:39 -05:00
|
|
|
<td><input type = "text" name = "beam_A" size="5" value="16"/></td>
|
2022-12-09 18:31:19 -05:00
|
|
|
<td style="text-align:right">Z:</td>
|
2022-12-10 19:12:39 -05:00
|
|
|
<td><input type = "text" name = "beam_Z" size="5" value="8"/></td>
|
2022-12-10 02:35:56 -05:00
|
|
|
<td style="text-align:right">J-pi</td>
|
2022-12-10 19:12:39 -05:00
|
|
|
<td><input type = "text" name = "beam_Jpi" size="5" value="0+"/><td>
|
2022-12-09 18:31:19 -05:00
|
|
|
<td style="text-align:right">Ex:</td>
|
2022-12-10 19:12:39 -05:00
|
|
|
<td><input type = "text" name = "beam_Ex" size="5" value="0.00"/></td>
|
2022-12-09 18:31:19 -05:00
|
|
|
<td style="text-align:left">MeV</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Target</td>
|
|
|
|
<td style="text-align:right">A:</td>
|
2022-12-10 19:12:39 -05:00
|
|
|
<td><input type = "text" name = "target_A" size="5" value="2"/></td>
|
2022-12-09 18:31:19 -05:00
|
|
|
<td style="text-align:right">Z:</td>
|
2022-12-10 19:12:39 -05:00
|
|
|
<td><input type = "text" name = "target_Z" size="5" value="1"/></td>
|
2022-12-09 18:31:19 -05:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Light recoil</td>
|
|
|
|
<td style="text-align:right">A:</td>
|
2022-12-10 19:12:39 -05:00
|
|
|
<td><input type = "text" name = "lRecoil_A" size="5" value="1"/></td>
|
2022-12-09 18:31:19 -05:00
|
|
|
<td style="text-align:right">Z:</td>
|
2022-12-10 19:12:39 -05:00
|
|
|
<td><input type = "text" name = "lRecoil_Z" size="5" value="1"/></td>
|
2022-12-09 18:31:19 -05:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<h3>Detector:</h3>
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<tr>
|
2022-12-10 19:12:39 -05:00
|
|
|
<input type="radio" name="SSType" value="HELIOS"/>HELIOS
|
|
|
|
<br>
|
|
|
|
<input type="radio" name="SSType" value="SOLARIS" checked="checked"/>SOLARIS
|
2022-12-09 18:31:19 -05:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>B-field </td>
|
2022-12-10 19:12:39 -05:00
|
|
|
<td><input type = "text" name = "BField" size="5" value="-2.5"/></td>
|
|
|
|
<td style="text-align:left">T (minus sign = field point to upstream)</td>
|
2022-12-09 18:31:19 -05:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Array Pos.</td>
|
2022-12-10 19:12:39 -05:00
|
|
|
<td><input type = "text" name = "posArray" size="5" value="-100"/></td>
|
2022-12-09 18:31:19 -05:00
|
|
|
<td style="text-align:left">mm (negative for upstream)</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Recoil Pos.</td>
|
2022-12-10 19:12:39 -05:00
|
|
|
<td><input type = "text" name = "posRecoil" size="5" value="500"/></td>
|
2022-12-09 18:31:19 -05:00
|
|
|
<td style="text-align:left">mm (negative for upstream)</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<h3>DWBA and Ex List:</h3>
|
|
|
|
|
2022-12-10 19:12:39 -05:00
|
|
|
<input type="checkbox" name="DWBA" value="On"/>Cal. DWBA
|
2022-12-10 02:35:56 -05:00
|
|
|
|
|
|
|
<p></p>
|
2022-12-09 18:31:19 -05:00
|
|
|
|
2022-12-10 02:35:56 -05:00
|
|
|
<table id="ExTable">
|
|
|
|
<tr>
|
|
|
|
<td> Ex [MeV]</td>
|
|
|
|
<td> J-pi</td>
|
|
|
|
<td> Orbital </td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
2022-12-10 19:12:39 -05:00
|
|
|
<td><input type="text" name="Ex" size="5" value="0"/></td>
|
|
|
|
<td><input type="text" name="Jpi" size="5" value="3/2+"/></td>
|
|
|
|
<td><input type="text" name="Orb" size="5" value="0d3/2"/></td>
|
2022-12-10 02:35:56 -05:00
|
|
|
</tr>
|
2022-12-09 18:31:19 -05:00
|
|
|
<tr>
|
2022-12-10 02:35:56 -05:00
|
|
|
<td><button type="button" onclick="addRow()">Add Ex</button></td>
|
|
|
|
<td></td>
|
|
|
|
<td><button type="button" onclick="deleteRow()">Remove Ex</button></td>
|
2022-12-09 18:31:19 -05:00
|
|
|
</tr>
|
2022-12-10 02:35:56 -05:00
|
|
|
</table>
|
|
|
|
|
|
|
|
<p></p>
|
|
|
|
|
|
|
|
<table>
|
2022-12-09 18:31:19 -05:00
|
|
|
<tr>
|
2022-12-10 02:35:56 -05:00
|
|
|
<td>Incoming Channel</td>
|
2022-12-09 18:31:19 -05:00
|
|
|
<td>
|
2022-12-10 19:12:39 -05:00
|
|
|
<select name="op1">
|
|
|
|
<option value="A" selected>D | An & Cai (2006), E < 183, 12 < A < 238</option>
|
|
|
|
<option value="H">D | Han, Shi, & Shen, (2006), E < 200 | 12 < A < 209</option>
|
|
|
|
<option value="B">D | Bojowald et al., (1988), 50 < E < 80 | 27 < A < 208</option>
|
|
|
|
<option value="K">P | Koning & Delaroche, (2009), E < 200 | 24 < A < 209 | Iso.Dep.</option>
|
|
|
|
<option value="V">P | Varner et al., (1991), 16 < E < 65 | 4 < A < 209</option>
|
|
|
|
<option value="M">P | Menet et al., (1971), 30 < E < 60 | 40 < A </option>
|
|
|
|
<option value="x">A=3 | Xu, Guo, Han, & Shen, (2011), E < 250 | 20 < A < 209 </option>
|
|
|
|
<option value="l">A=3 | Liang, Li, & Cai, (2009), E < 270 | All masses </option>
|
|
|
|
<option value="x">A=4 | Su & Han, (2015), E < 398 | 20 < A < 209 </option>
|
2022-12-10 02:35:56 -05:00
|
|
|
</select>
|
2022-12-09 18:31:19 -05:00
|
|
|
<td>
|
2022-12-10 02:35:56 -05:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>Outgoing Channel</td>
|
2022-12-10 19:12:39 -05:00
|
|
|
<td>
|
|
|
|
<select name="op2">
|
|
|
|
<option value="A">D | An & Cai (2006), E < 183, 12 < A < 238</option>
|
|
|
|
<option value="H">D | Han, Shi, & Shen, (2006), E < 200 | 12 < A < 209</option>
|
|
|
|
<option value="B">D | Bojowald et al., (1988), 50 < E < 80 | 27 < A < 208</option>
|
|
|
|
<option value="K" selected>P | Koning & Delaroche, (2009), E < 200 | 24 < A < 209 | Iso.Dep.</option>
|
|
|
|
<option value="V">P | Varner et al., (1991), 16 < E < 65 | 4 < A < 209</option>
|
|
|
|
<option value="M">P | Menet et al., (1971), 30 < E < 60 | 40 < A </option>
|
|
|
|
<option value="x">A=3 | Xu, Guo, Han, & Shen, (2011), E < 250 | 20 < A < 209 </option>
|
|
|
|
<option value="l">A=3 | Liang, Li, & Cai, (2009), E < 270 | All masses </option>
|
|
|
|
<option value="x">A=4 | Su & Han, (2015), E < 398 | 20 < A < 209 </option>
|
|
|
|
</select>
|
|
|
|
<td>
|
2022-12-09 18:31:19 -05:00
|
|
|
</tr>
|
|
|
|
</table>
|
2022-12-10 02:35:56 -05:00
|
|
|
|
2022-12-10 19:12:39 -05:00
|
|
|
<h3> Plot config (still working on):</h3>
|
|
|
|
|
|
|
|
<input type="checkbox" name="plot" value="pEZ" checked/>E vs Z<br>
|
|
|
|
<input type="checkbox" name="plot" value="pExCal" checked/>Ex (cal.)<br>
|
|
|
|
<input type="checkbox" name="plot" value="pThetaCM" checked/>ThetaCM<br>
|
|
|
|
<input type="checkbox" name="plot" value="pThetaCM_Z" checked/>ThetaCM vs Z<br>
|
|
|
|
<input type="checkbox" name="plot" value="pRecoilXY" checked/>Recoil X vs Y<br>
|
|
|
|
<input type="checkbox" name="plot" value="pRecoilRThetaCM"/>Recoil-R vs ThetaCM<br>
|
|
|
|
<input type="checkbox" name="plot" value="pRecoilRZ"/>Recoil R vs Z<br>
|
|
|
|
<input type="checkbox" name="plot" value="pArrayXY"/>Array X vs Y<br>
|
|
|
|
|
|
|
|
<p></p>
|
|
|
|
|
|
|
|
<input type="checkbox" name="gate" value="hit==1" checked/>Array Hit<br>
|
|
|
|
<input type="checkbox" name="gate" value="loop<=1" checked/>Loop = 1<br>
|
|
|
|
<input type="checkbox" name="gate" value="thetaCM>10" checked/> ThetaCM > 10 deg<br>
|
2022-12-09 18:31:19 -05:00
|
|
|
|
|
|
|
|
2022-12-10 02:35:56 -05:00
|
|
|
<p></p>
|
2022-12-09 18:31:19 -05:00
|
|
|
|
2022-12-10 19:12:39 -05:00
|
|
|
<input type = "submit" value = "Submit and Run Simulation" style="width:200px;height:60px;" />
|
2022-12-09 18:31:19 -05:00
|
|
|
</form>
|
|
|
|
|
2022-12-10 02:35:56 -05:00
|
|
|
|
|
|
|
<script>
|
|
|
|
function addRow() {
|
|
|
|
var table = document.getElementById("ExTable");
|
|
|
|
var nRow = table.rows.length;
|
|
|
|
var row = table.insertRow(nRow-1);
|
2022-12-10 19:12:39 -05:00
|
|
|
row.innerHTML = '<td><input type="text" name="Ex" size="5"/></td> \
|
|
|
|
<td><input type="text" name="Jpi" size="5"/></td> \
|
|
|
|
<td><input type="text" name="Orb" size="5"/></td>';
|
2022-12-10 02:35:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function deleteRow(){
|
|
|
|
var table = document.getElementById("ExTable");
|
|
|
|
var nRow = table.rows.length;
|
|
|
|
if ( nRow > 3){
|
|
|
|
table.deleteRow(nRow-2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
2022-12-09 18:31:19 -05:00
|
|
|
</body>
|
|
|
|
</html>
|