-
Notifications
You must be signed in to change notification settings - Fork 6
/
analyzerInterface.html
66 lines (57 loc) · 3.93 KB
/
analyzerInterface.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<html>
<head>
<title>GRIFFIN Analyzer Control Panel</title>
<!--libraries-->
<script src='scripts/HTMLImports.min.js' type="text/javascript"></script>
<script src='scripts/mustache.js' type="text/javascript"></script>
<script src='scripts/easeljs-0.7.0.min.js' type="text/javascript"></script>
<script src='scripts/gammaSpectrum.js' type="text/javascript"></script>
<script src='scripts/fitit.js' type="text/javascript"></script>
<script src='scripts/regression.min.js' type="text/javascript"></script>
<script src="scripts/jquery1-11-3.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="scripts/bootstrap3-3-5.min.js" type="text/javascript"></script>
<!--our scripts-->
<script src='scripts/helpers.js' type="text/javascript"></script>
<script src='scripts/analyzerInterface.js' type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="css/analyzer.css"/>
<script src='templates/analyzer-sorting/analyzer-sorting.js' type="text/javascript"></script>
<script src='templates/analyzer-histograms/analyzer-histograms.js' type="text/javascript"></script>
<script src='templates/analyzer-calibrations/analyzer-calibrations.js' type="text/javascript"></script>
<script src='templates/analyzer-viewer/analyzer-viewer.js' type="text/javascript"></script>
<!--html imports-->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link id='header' rel="import" href="templates/header/header-analyzer.html">
<link id='analyzer-menu' rel="import" href="templates/analyzer-menu/analyzer-menu.html">
<link id='analyzer-sorting' rel="import" href="templates/analyzer-sorting/analyzer-sorting.html">
<link id='analyzer-histograms' rel="import" href="templates/analyzer-histograms/analyzer-histograms.html">
<link id='analyzer-calibrations' rel="import" href="templates/analyzer-calibrations/analyzer-calibrations.html">
<link id='analyzer-viewer' rel="import" href="templates/analyzer-viewer/analyzer-viewer.html">
<link id='globalBlock' rel="import" href="templates/analyzer-histograms/conditionBlock.html">
<link id='gateBlock' rel="import" href="templates/analyzer-histograms/conditionBlock.html">
<link id='histogramBlock' rel="import" href="templates/analyzer-histograms/conditionBlock.html">
<link id='histogramConditionRow' rel="import" href="templates/analyzer-histograms/conditionContents.html">
<link id='gateConditionRow' rel="import" href="templates/analyzer-histograms/conditionContents.html">
<link id='plotList' rel="import" href="templates/plotList/plotList.html">
<link id='plotGrid' rel="import" href="templates/plotGrid/plotGrid.html">
<link id='plotControl' rel="import" href="templates/plotControl/plotControl.html">
<link id='auxPlotControl' rel="import" href="templates/auxPlotControl/auxPlotControl.html">
<link id='auxPlotControlTable' rel="import" href="templates/auxPlotControl/auxPlotControlTable.html">
<link id='fitRow' rel="import" href="templates/auxPlotControl/fitRow.html">
<link id='footer' rel="import" href="templates/footer/footer.html">
</head>
<body>
<div id='head'></div>
<div id='messageDiv' class='col-md-12'></div>
<div id='menu' class='col-md-12'></div>
<div class='section-wrapper'>
<div id='AnalyzerDisplaySorting' class='col-md-12 '></div>
<div id='AnalyzerDisplayHistograms' class='col-md-12 hidden'></div>
<div id='AnalyzerDisplayCalibrations' class='col-md-12 hidden'></div>
<div id='AnalyzerDisplayViewer' class='col-md-12 hidden'></div>
</div>
<div id='foot'></div>
<script>
</script>
</body>
</html>