This repository has been archived by the owner on Jul 9, 2020. It is now read-only.
forked from CiaranGodfrey/RunInfoDiffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·57 lines (52 loc) · 1.87 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>Run Info Differ</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,700italic,400,600,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="../webHandsaw_beta/webHandsaw.css">
</head>
<body>
<div id="top"><h1>Run Info Differ</h1></div>
<div id="wrapper">
Input the run number for two runs and this page will return the difference between select parameters from those two runs
<br><br>
<form action="/cgi-bin/RunInfoDiffer/truncated_Diff.py" method="get" type="submit">
Run Number 1: <input type="number" name="runnumber1"><br />
<br>
Run Number 2: <input type="number" name="runnumber2"><br />
<br>
<fieldset>
<legend>Uncheck box to ignore partition</legend>
<div>
<input type="checkbox" name="partition" value="HCAL_HO" checked>
<label for="HCAL_HO">HO</label>
</div>
<div>
<input type="checkbox" name="partition" value="HCAL_HF" checked>
<label for="HCAL_HF">HF</label>
</div>
<div>
<input type="checkbox" name="partition" value="HCAL_HBHEa" checked>
<label for="HCAL_HBHEa">HBHEa</label>
</div>
<div>
<input type="checkbox" name="partition" value="HCAL_HBHEb" checked>
<label for="HCAL_HBHEb">HBHEb</label>
</div>
<div>
<input type="checkbox" name="partition" value="HCAL_HBHEc" checked>
<label for="HCAL_HBHEc">HBHEc</label>
</div>
<div>
<input type="checkbox" name="partition" value="HCAL_Laser" checked>
<label for="HCAL_Laser">Laser</label>
</div>
</fieldset>
<input type="submit" value="Get Run Diff" />
</form>
<br>
<a href="http://cmsrc-srv.cms:9500/RunInfoServlet/?userName=hcalpro&sequenceName=" target="_blank">HCAL Local Runs From Runinfo Database</a><br>
<a href="http://cmsrc-srv.cms:9500/RunInfoServlet/?userName=toppro&sequenceName=" target="_blank">HCAL Global Runs From Runinfo Database</a>
</div>
</body>
</html>