-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfixed_target.html
116 lines (88 loc) · 4.38 KB
/
fixed_target.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>eXdb: Particle Physics Experiment Database</title>
<!--jquery and chart stuff -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<!--Table CSS -->
<link rel="stylesheet" href="table_style.css">
<!-- Meta Tags -->
<meta name="description" content="exDB, the searchable table of Particle Physics Experiments">
<meta name="keywords" content="Particle Physics, Neutrino Experiments, Dark Matter, Beam Energy, POT, Detector Technology, Gravitational Waves, Reactors">
<meta name="robots" content="index, follow">
<!-- Open Graph / Facebook -->
<meta property="og:title" content="exDB: The Particle Physics Experiment Database">
<meta property="og:description" content="Searchable table of particle physics and gravitational wave experiments.">
<meta property="og:image" content="https://athompson-git.github.io/images/logos/exdb_twitter_card_2-1.png">
<meta property="og:url" content="https://athompson-git.github.io/fixed_target.html">
<meta property="og:type" content="website">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="_wraith0">
<meta name="twitter:title" content="exDB: The Particle Physics Experiment Database">
<meta name="twitter:description" content="Searchable table of particle physics and gravitational wave experiments.">
<meta name="twitter:image" content="https://athompson-git.github.io/images/logos/exdb_twitter_card_2-1.png">
</head>
<body>
<header>
<div class="header">
<div class="logo-container">
<img src="images/logos/exdb_logo.png" alt="eXdb Logo", align="left">
</div>
<div class="title-container">
<h1>The Particle Physics Experiments Database</h1>
<h4>[Work in Progress]</h4>
</div>
</div>
</header>
<div class="header">
<nav>
<p><a href="experiments.html">All Experiments</a></p>
<p><a href="fixed_target.html">I: Fixed Target </a></p>
<p><a href="passive_det.html">II: Neutrino Observatories & DM Direct Detectors</a></p>
<p><a href="reactors.html">III: Reactors </a></p>
<p><a href="gw.html">IV: Gravitational Waves & Haloscopes</a></p>
<p><a href="colliders.html">V: Collider Experiments</a></p>
</nav>
</div>
<p style="font-style: italic;">
Disclaimer: This table is maintained individually and supported by community feedback.
The information within is sourced only by public references and please, look to the source references for the most accurate representation of the aggragate information here.
To suggest corrections or provide new data, see contact information at the bottom of the page.
</p>
<input type="text" id="search" placeholder="Search experiments...">
<h2 id="tableTitle_ft" align="center">I: Fixed Target Experiments</h2>
<table id="fixedTargetTable">
<thead>
<tr id="tableHeader_ft"></tr>
</thead>
<tbody></tbody>
</table>
<!-- Call the external buildTable function -->
<script src="buildTable.js"></script>
<script>
// Build first table for fixed target experiments
let visible_columns_ft = ["Source(s)", "Beam Particle", "Beam Energy (GeV)", "POT (Planned/Largest)", "Baseline (m)",
"Detector Tech", "Detector Material", "Detector Mass (t)", "Fiducial Mass (t)",
"Detector Volume (m^3)", "Energy Threshold", "Location", "Status", "Reference", "Open Data", "Anomalies?"];
buildTable(visible_columns_ft, "data/experiments.json", "fixedTargetTable", "tableTitle_ft");
</script>
<br><br><br><br>
<h2 align="center">Community Feedback and Contact</h4>
<p align="center">
To contact the owner for any corrections, improvements or feedback please email:
</p>
<p align="center">
a.thompson AT northwestern DOT edu
</p>
<h2>About the data</h2>
<p>
Link to JSON: <a href="data/experiments.json">experiments.json</a>
</p>
<br>
<br>
</body>
</html>