-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperiments.html
177 lines (150 loc) · 7.13 KB
/
experiments.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!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.js -->
<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 for SEO, Open Graph, Twitter, etc. -->
<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">
<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/experiments.html">
<meta property="og:type" content="website">
<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">
</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. Please check the source references for the most accurate representation of the aggregate information.
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>
<h2 id="tableTitle_dd" align="center">II: Dark Matter Direct Detectors and Neutrino Observatories</h2>
<table id="ddTable">
<thead>
<tr id="tableHeader_dd"></tr>
</thead>
<tbody></tbody>
</table>
<h2 id="tableTitle_reactors" align="center">III: Reactor Experiments</h2>
<table id="reactorTable">
<thead>
<tr id="tableHeader_reactors"></tr>
</thead>
<tbody></tbody>
</table>
<h2 id="tableTitle_gw" align="center">IV: Gravitational Wave and Haloscope Experiments</h2>
<table id="gwTable">
<thead>
<tr id="tableHeader_gw"></tr>
</thead>
<tbody></tbody>
</table>
<h2 id="tableTitle_collider" align="center">V: Collider Experiments and Forward Facilities</h2>
<table id="colliderTable">
<thead>
<tr id="tableHeader_collider"></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");
// Build second table for direct detection experiments
let visible_columns_dd = ["Source(s)", "Detector Tech", "Detector Material", "Exposure [Largest/Planned] (t-yr)", "Detector Mass (t)", "Fiducial Mass (t)",
"Detector Volume (m^3)", "Energy Threshold", "Location", "Status", "Reference", "Open Data", "Anomalies?"];
buildTable(visible_columns_dd, "data/passive_det.json", "ddTable", "tableTitle_dd");
// Build second table for reactor experiments
let visible_columns_reactors = ["Source(s)", "Reactor Power", "Reactor ON Exposure (kg-days)", "Reactor OFF Exposure (kg-days)", "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_reactors, "data/reactors.json", "reactorTable", "tableTitle_reactors");
let visible_columns_gw = ["Class", "Signals of Interest", "Length Scale (km)", "Technology",
"Frequency Band (Hz)", "Minimum Strain Sensitivity (1/Hz^1/2)", "Minimum Strain Sensitivity (h^2 Ω_GW)",
"Location", "Status", "Reference", "Open Data", "Anomalies?"];
buildTable(visible_columns_gw, "data/gw.json", "gwTable", "tableTitle_gw");
let visible_columns_col = ["Collider", "Collider Geometry", "Beam Particles", "CoM Energy √s (TeV)", "Luminosity Collected",
"Detector Rapidity Coverage", "Location", "Status", "Reference", "Open Data", "Anomalies?"];
buildTable(visible_columns_col, "data/colliders.json", "colliderTable", "tableTitle_collider");
</script>
<!-- Community feedback section and about data, etc. -->
<br><br>
<h2>Community Feedback and Contact</h2>
<p>
To contact the owner for any corrections, improvements or feedback please email:
</p>
<p>
a.thompson AT northwestern DOT edu
</p>
<br><br><br><br>
<h2>About the data</h2>
<h4>Links to JSON:</h4>
<p>
Fixed target: <a href="data/experiments.json">experiments.json</a>
</p>
<p>
DM Direct Detectors and Nu Observatories: <a href="data/passive_det.json">passive_det.json</a>
</p>
<p>
Reactors: <a href="data/reactors.json">reactors.json</a>
</p>
<p>
Gravitational Waves and Haloscopes: <a href="data/gw.json">gw.json</a>
</p>
<p>
Colliders: <a href="data/colliders.json">colliders.json</a>
</p>
<br><br><br><br>
<h2>
<h2>About the Author:</h2>
<br>
<p>
<a href="index.html">Adrian Thompson</a>
</p>
</body>
</html>