forked from clairedavid/abcdune
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDUNE_words.json
3935 lines (3935 loc) · 218 KB
/
DUNE_words.json
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"2p2h": {
"defHTML": "two particle, two hole.",
"defLaTeX": "two particle, two hole",
"term": "2p2h",
"termHTML": "2p2h",
"type": "word"
},
"35t": {
"defHTML": "A prototype cryostat and <a href=\"#sp\">SP</a> detector built at <a href=\"#fnal\">Fermilab</a> before the <a href=\"#protodune\">ProtoDUNE</a> detectors.",
"defLaTeX": "A prototype cryostat and \\gls{sp} detector built at \\gls{fnal} before the \\gls{protodune} detectors",
"term": "35 ton prototype",
"termHTML": "35 ton prototype",
"type": "word"
},
"3dst": {
"abbrev": "3DST",
"defHTML": "The core part of the projection scintillator tracker spectrometer in the near detector conceptual design.",
"defLaTeX": "The core part of the \\threed projection scintillator tracker spectrometer in the near detector conceptual design",
"term": "3D scintillator tracker",
"termHTML": "3D scintillator tracker",
"type": "abbrev"
},
"3dsts": {
"abbrev": "3DST-S",
"defHTML": "The projection scintillator tracker spectrometer in the near detector conceptual design.",
"defLaTeX": "The \\threed projection scintillator tracker spectrometer in the near detector conceptual design",
"term": "3D scintillator tracker spectrometer",
"termHTML": "3D scintillator tracker spectrometer",
"type": "abbrev"
},
"4850l": {
"defHTML": "The depth in feet (1480 m) of the top of the cryostats underground at SURF; used more generally to refer to the DUNE underground area. Called the \"4850 level\" or \"4850L\".",
"defLaTeX": "The depth in feet (1480 m) of the top of the cryostats underground at SURF; used more generally to refer to the DUNE underground area. Called the ``4850 level'' or ``4850L''",
"term": "4850L",
"termHTML": "4850L",
"type": "word"
},
"ac": {
"defHTML": "capacitive coupling.",
"defLaTeX": "capacitive coupling",
"term": "AC",
"termHTML": "AC",
"type": "word"
},
"act": {
"defHTML": "activation time stamp.",
"defLaTeX": "activation time stamp",
"term": "ACT",
"termHTML": "ACT",
"type": "word"
},
"adc": {
"abbrev": "ADC",
"defHTML": "A sampling of a voltage resulting in a discrete integer count corresponding in some way to the input.",
"defLaTeX": "A sampling of a voltage resulting in a discrete integer count corresponding in some way to the input",
"term": "analog-to-digital converter",
"termHTML": "analog-to-digital converter",
"type": "abbrev"
},
"ahj": {
"abbrev": "AHJ",
"defHTML": "An organization, office, or individual responsible for enforcing the requirements of a code or standard, or for approving equipment, materials, an installation, or a procedure (<a href=\"#osha\">OSHA</a>).",
"defLaTeX": "An organization, office, or individual responsible for enforcing the requirements of a code or standard, or for approving equipment, materials, an installation, or a procedure (\\gls{osha})",
"term": "Authority Having Jurisdiction",
"termHTML": "Authority Having Jurisdiction",
"type": "abbrev"
},
"aisi": {
"defHTML": "American Iron and Steel Institute.",
"defLaTeX": "American Iron and Steel Institute",
"term": "AISI",
"termHTML": "AISI",
"type": "word"
},
"alara": {
"abbrev": "ALARA",
"defHTML": "Typically used with regard management of radiation exposure but may be used more generally. It means making every reasonable effort to maintain e.g., exposures, to as far below the limits as practical, consistent with the purpose for that the activity is undertaken.",
"defLaTeX": "Typically used with regard management of radiation exposure but may be used more generally. It means making every reasonable effort to maintain e.g., exposures, to as far below the limits as practical, consistent with the purpose for that the activity is undertaken",
"term": "as low as reasonably achievable",
"termHTML": "as low as reasonably achievable",
"type": "abbrev"
},
"alice": {
"defHTML": "A Large Ion Collider Experiment, at CERN.",
"defLaTeX": "A Large Ion Collider Experiment, at CERN",
"term": "ALICE",
"termHTML": "ALICE",
"type": "word"
},
"amc": {
"abbrev": "AMC",
"defHTML": "Holds digitizing electronics and lives in <a href=\"#utca\"><span class=\"math inline\"><em>\u03bc</em></span>TCA</a> crates.",
"defLaTeX": "Holds digitizing electronics and lives in \\gls{utca} crates",
"term": "advanced mezzanine card",
"termHTML": "advanced mezzanine card",
"type": "abbrev"
},
"ams": {
"abbrev": "AMS",
"defHTML": "Verilog-AMS is a derivative of the Verilog hardware description language that includes analog and mixed-signal extensions (AMS) in order to define the behavior of analog and mixed-signal systems.",
"defLaTeX": "Verilog-AMS is a derivative of the Verilog hardware description language that includes analog and mixed-signal extensions (AMS) in order to define the behavior of analog and mixed-signal systems",
"term": "analog and mixed signal",
"termHTML": "analog and mixed signal",
"type": "abbrev"
},
"anl": {
"abbrev": "ANL",
"defHTML": "US national laboratory in Lemont, IL.",
"defLaTeX": "US national laboratory in Lemont, IL",
"term": "Argonne National Laboratory",
"termHTML": "Argonne National Laboratory",
"type": "abbrev"
},
"apa": {
"abbrev": "APA",
"defHTML": "A unit of the <a href=\"#sp\">SP</a> detector module containing the elements sensitive to ionization in the <a href=\"#lar\">LAr</a>. It contains two faces each of three planes of wires, and interfaces to the cold electronics and photon detection system.",
"defLaTeX": "A unit of the \\gls{sp} detector module containing the elements sensitive to ionization in the \\gls{lar}. It contains two faces each of three planes of wires, and interfaces to the cold electronics and photon detection system",
"term": "anode plane assembly",
"termHTML": "anode plane assembly",
"terms": "anode plane assemblies",
"termsHTML": "anode plane assemblies",
"type": "abbrevs"
},
"arapuca": {
"defHTML": "A <a href=\"#pds\">PD system</a> design that consists of a light trap that captures wavelength-shifted photons inside boxes with highly reflective internal surfaces until they are eventually detected by <a href=\"#sipm\">SiPM</a> detectors or are lost.",
"defLaTeX": "A \\gls{pds} design that consists of a light trap that captures wavelength-shifted photons inside boxes with highly reflective internal surfaces until they are eventually detected by \\gls{sipm} detectors or are lost",
"term": "ARAPUCA",
"termHTML": "ARAPUCA",
"type": "word"
},
"arclt": {
"defHTML": "a light detector <a href=\"#arcube\">ArgonCube</a> effort.",
"defLaTeX": "a light detector \\gls{arcube} effort",
"term": "ArCLight",
"termHTML": "ArCLight",
"type": "word"
},
"arcube": {
"defHTML": "The name of the core part of the <a href=\"#dune\">DUNE</a> <a href=\"#nd\">ND</a>, a <a href=\"#lartpc\">LArTPC</a>.",
"defLaTeX": "The name of the core part of the \\gls{dune} \\gls{nd}, a \\gls{lartpc}",
"term": "ArgonCube",
"termHTML": "ArgonCube",
"type": "word"
},
"argoneut": {
"defHTML": "The ArgoNeuT test-beam experiment and <a href=\"#lartpc\">LArTPC</a> prototype at <a href=\"#fnal\">Fermilab</a>.",
"defLaTeX": "The ArgoNeuT test-beam experiment and \\gls{lartpc} prototype at \\gls{fnal}",
"term": "ArgoNeuT",
"termHTML": "ArgoNeuT",
"type": "word"
},
"art": {
"defHTML": "A software framework implementing an event-based execution paradigm.",
"defLaTeX": "A software framework implementing an event-based execution paradigm",
"term": "art",
"termHTML": "art",
"type": "word"
},
"artdaq": {
"defHTML": "A data acquisition toolkit for data transfer, aggregation and processing.",
"defLaTeX": "A data acquisition toolkit for data transfer, aggregation and processing",
"term": "artdaq",
"termHTML": "artdaq",
"type": "word"
},
"ashriver": {
"defHTML": "The Ash River, Minnesota, USA <a href=\"#nova\">NOvA</a> experiment far site, used as an assembly test site for <a href=\"#dune\">DUNE</a>.",
"defLaTeX": "The Ash River, Minnesota, USA \\gls{nova} experiment far site, used as an assembly test site for \\gls{dune}",
"term": "Ash River",
"termHTML": "Ash River",
"type": "word"
},
"asic": {
"defHTML": "application-specific integrated circuit.",
"defLaTeX": "application-specific integrated circuit",
"term": "ASIC",
"termHTML": "ASIC",
"type": "word"
},
"atca": {
"abbrev": "ATCA",
"defHTML": "An advanced computer architecture specification developed for the telecommunications, military, and aerospace industries that incorporates the latest trends in high-speed interconnect technologies, next-generation processors, and improved reliability, availability and serviceability.",
"defLaTeX": "An advanced computer architecture specification developed for the telecommunications, military, and aerospace industries that incorporates the latest trends in high-speed interconnect technologies, next-generation processors, and improved reliability, availability and serviceability",
"term": "Advanced Telecommunications Computing Architecture",
"termHTML": "Advanced Telecommunications Computing Architecture",
"type": "abbrev"
},
"atlas": {
"defHTML": "One of two general-purpose detectors at the <a href=\"#lhc\">LHC</a>. It investigates a wide range of physics, from the search for the Higgs boson to extra dimensions and particles that could make up <a href=\"#dm\">DM</a>.",
"defLaTeX": "One of two general-purpose detectors at the \\gls{lhc}. It investigates a wide range of physics, from the search for the Higgs boson to extra dimensions and particles that could make up \\gls{dm}",
"term": "ATLAS",
"termHTML": "ATLAS",
"type": "word"
},
"au": {
"defHTML": "astronomical unit.",
"defLaTeX": "astronomical unit",
"term": "AU",
"termHTML": "AU",
"type": "word"
},
"aup": {
"abbrev": "AUP",
"defHTML": "Required for beneficial occupancy of the underground areas at <a href=\"#surf\">SURF</a> for <a href=\"#lbnf\">LBNF</a> and <a href=\"#dune\">DUNE</a>.",
"defLaTeX": "Required for beneficial occupancy of the underground areas at \\gls{surf} for \\gls{lbnf} and \\gls{dune}",
"term": "acceptance for use and possession",
"termHTML": "acceptance for use and possession",
"type": "abbrev"
},
"awg": {
"abbrev": "AWG",
"defHTML": "U.S. standard set of non-ferrous wire conductor sizes.",
"defLaTeX": "U.S. standard set of non-ferrous wire conductor sizes",
"term": "American wire gauge",
"termHTML": "American wire gauge",
"type": "abbrev"
},
"baryonnumber": {
"defHTML": "A quantity expressing the total number of baryons in a system minus the number of antibaryons.",
"defLaTeX": "A quantity expressing the total number of baryons in a system minus the number of antibaryons",
"term": "baryon number",
"termHTML": "baryon number",
"type": "word"
},
"bdm": {
"abbrev": "BDM",
"defHTML": "A new model that describes a relativistic dark matter particle boosted by the annihilation of heavier dark matter particles in the galactic center or the sun.",
"defLaTeX": "A new model that describes a relativistic dark matter particle boosted by the annihilation of heavier dark matter particles in the galactic center or the sun",
"term": "boosted dark matter",
"termHTML": "boosted dark matter",
"type": "abbrev"
},
"bdt": {
"abbrev": "BDT",
"defHTML": "A method of multivariate analysis.",
"defLaTeX": "A method of multivariate analysis",
"term": "boosted decision tree",
"termHTML": "boosted decision tree",
"type": "abbrev"
},
"beamline": {
"defHTML": "A sequence of control and monitoring devices used for the formation of a directed collection of particles.",
"defLaTeX": "A sequence of control and monitoring devices used for the formation of a directed collection of particles",
"term": "beamline",
"termHTML": "beamline",
"type": "word"
},
"belleii": {
"defHTML": "B-factory experiment now running at KEK.",
"defLaTeX": "B-factory experiment now running at KEK",
"term": "Belle II",
"termHTML": "Belle II",
"type": "word"
},
"bms": {
"abbrev": "BMS",
"defHTML": "Part of the safety system at <a href=\"#surf\">SURF</a> that includes the fire and life safety system.",
"defLaTeX": "Part of the safety system at \\gls{surf} that includes the fire and life safety system",
"term": "building management system",
"termHTML": "building management system",
"type": "abbrev"
},
"bnl": {
"abbrev": "BNL",
"defHTML": "US national laboratory in Upton, NY.",
"defLaTeX": "US national laboratory in Upton, NY",
"term": "Brookhaven National Laboratory",
"termHTML": "Brookhaven National Laboratory",
"type": "abbrev"
},
"bnv": {
"abbrev": "BNV",
"defHTML": "Describing an interaction where <a href=\"#baryonnumber\">baryon number</a> is not conserved.",
"defLaTeX": "Describing an interaction where \\gls{baryonnumber} is not conserved",
"term": "baryon-number violating",
"termHTML": "baryon-number violating",
"type": "abbrev"
},
"botfc": {
"abbrev": "bottom FC",
"defHTML": "The horizontal portions of the <a href=\"#sp\">SP</a> <a href=\"#fc\">FC</a> on the bottom of the <a href=\"#tpc\">TPC</a>.",
"defLaTeX": "The horizontal portions of the \\gls{sp} \\gls{fc} on the bottom of the \\gls{tpc}",
"term": "bottom field cage",
"termHTML": "bottom field cage",
"type": "abbrev"
},
"bow": {
"abbrev": "BOW",
"defHTML": "A working name for the front-end readout computing elements used in the nominal <a href=\"#daq\">DAQ</a> design to interface the <a href=\"#dp\">DP</a> crates to the <a href=\"#daq\">DAQ</a> front-end computers.",
"defLaTeX": "A working name for the front-end readout computing elements used in the nominal \\gls{daq} design to interface the \\gls{dp} crates to the \\gls{daq} front-end computers",
"term": "Bump On Wire",
"termHTML": "Bump On Wire",
"type": "abbrev"
},
"br": {
"abbrev": "BR",
"defHTML": "A fractional probability for a decay of a composite particle to occur into some specified set or sets of products.",
"defLaTeX": "A fractional probability for a decay of a composite particle to occur into some specified set or sets of products",
"term": "branching ratio",
"termHTML": "branching ratio",
"type": "abbrev"
},
"bsi": {
"abbrev": "BSI",
"defHTML": "The work package for outfitting of the <a href=\"#lbnf\">LBNF</a> underground infrastructure.",
"defLaTeX": "The work package for outfitting of the \\gls{lbnf} underground infrastructure",
"term": "building and site infrastructure",
"termHTML": "building and site infrastructure",
"type": "abbrev"
},
"bsm": {
"defHTML": "beyond the standard model.",
"defLaTeX": "beyond the standard model",
"term": "BSM",
"termHTML": "BSM",
"type": "word"
},
"bugey": {
"defHTML": "Neutrino experiment that operated at the Bugey nuclear power plant in France.",
"defLaTeX": "Neutrino experiment that operated at the Bugey nuclear power plant in France",
"term": "Bugey",
"termHTML": "Bugey",
"type": "word"
},
"cabangle": {
"defHTML": "A quark mixing parameter that governs the coupling of up quarks to strange quarks.",
"defLaTeX": "A quark mixing parameter that governs the coupling of up quarks to strange quarks",
"term": "Cabibbo angle",
"termHTML": "Cabibbo angle",
"type": "word"
},
"cafana": {
"defHTML": "Common Analysis File Analysis.",
"defLaTeX": "Common Analysis File Analysis",
"term": "CAFAna",
"termHTML": "CAFAna",
"type": "word"
},
"calci": {
"defHTML": "Calibration and Cryogenic Instrumentation.",
"defLaTeX": "Calibration and Cryogenic Instrumentation",
"term": "CALCI",
"termHTML": "CALCI",
"type": "word"
},
"captain": {
"defHTML": "Experimental program sited at <a href=\"#lanl\">LANL</a> that is designed to make measurements of scientific importance to <a href=\"#lbl\">LBL</a> neutrino physics and physics topics that will be explored by large underground detectors.",
"defLaTeX": "Experimental program sited at \\gls{lanl} that is designed to make measurements of scientific importance to \\gls{lbl} neutrino physics and physics topics that will be explored by large underground detectors",
"term": "CAPTAIN",
"termHTML": "CAPTAIN",
"type": "word"
},
"catiroc": {
"abbrev": "CATIROC",
"defHTML": "A complete read-out chip manufactured in AustriaMicroSystem designed to read arrays of 16 photomultipliers.",
"defLaTeX": "A complete read-out chip manufactured in AustriaMicroSystem designed to read arrays of 16 photomultipliers",
"term": "charge and time integrated readout chip",
"termHTML": "charge and time integrated readout chip",
"type": "abbrev"
},
"cc": {
"abbrev": "CC",
"defHTML": "Refers to an interaction between elementary particles where a charged weak force carrier (<span class=\"math inline\"><em>W</em><sup>+</sup></span> or <span class=\"math inline\"><em>W</em><sup>\u2212</sup></span>) is exchanged.",
"defLaTeX": "Refers to an interaction between elementary particles where a charged weak force carrier ($W^+$ or $W^-$) is exchanged",
"term": "charged current",
"termHTML": "charged current",
"type": "abbrev"
},
"ccc": {
"defHTML": "configuration change command.",
"defLaTeX": "configuration change command",
"term": "CCC",
"termHTML": "CCC",
"type": "word"
},
"ccqe": {
"defHTML": "charged current quasielastic interaction.",
"defLaTeX": "charged current quasielastic interaction",
"term": "CCQE",
"termHTML": "CCQE",
"type": "word"
},
"cdr": {
"abbrev": "CDR",
"defHTML": "A formal project document that describes the experiment at a conceptual level.",
"defLaTeX": "A formal project document that describes the experiment at a conceptual level",
"term": "conceptual design report",
"termHTML": "conceptual design report",
"type": "abbrev"
},
"cdrev": {
"defHTML": "A project management device by which a conceptual design is reviewed.",
"defLaTeX": "A project management device by which a conceptual design is reviewed",
"term": "conceptual design review",
"termHTML": "conceptual design review",
"type": "word"
},
"ce": {
"abbrev": "CE",
"defHTML": "Analog and digital readout electronics that operate at cryogenic temperatures.",
"defLaTeX": "Analog and digital readout electronics that operate at cryogenic temperatures",
"term": "cold electronics",
"termHTML": "cold electronics",
"type": "abbrev"
},
"cern": {
"abbrev": "CERN",
"defHTML": "The leading particle physics laboratory in Europe and home to the ProtoDUNEs. (In French, the Organisation Europ\u00e9enne pour la Recherche Nucl\u00e9aire, derived from Conseil Europ\u00e9en pour la Recherche Nucl\u00e9aire).",
"defLaTeX": "The leading particle physics laboratory in Europe and home to the ProtoDUNEs. (In French, the Organisation Europ\\'{e}enne pour la Recherche Nucl\\'{e}aire, derived from Conseil Europ\\'{e}en pour la Recherche Nucl\\'{e}aire)",
"term": "European Organization for NuclearResearch",
"termHTML": "European Organization for NuclearResearch",
"type": "abbrev"
},
"cf": {
"abbrev": "CF",
"defHTML": "Pertaining to construction and operation of buildings and conventional infrastructure, and for <a href=\"#lbnf-dune\">LBNF/DUNE</a>, CF includes the excavation caverns.",
"defLaTeX": "Pertaining to construction and operation of buildings and conventional infrastructure, and for \\gls{lbnf-dune}, CF includes the excavation caverns",
"term": "conventional facilities",
"termHTML": "conventional facilities",
"type": "abbrev"
},
"cfd": {
"abbrev": "CFD",
"defHTML": "High performance computer-assisted modeling of fluid dynamical systems.",
"defLaTeX": "High performance computer-assisted modeling of fluid dynamical systems",
"term": "computational fluid dynamics",
"termHTML": "computational fluid dynamics",
"type": "abbrev"
},
"cisc": {
"abbrev": "CISC",
"defHTML": "Includes equipment to monitor all detector components and <a href=\"#lar\">LAr</a> quality and behavior, and provides a control system for many of the detector components.",
"defLaTeX": "Includes equipment to monitor all detector components and \\gls{lar} quality and behavior, and provides a control system for many of the detector components",
"term": "cryogenic instrumentation and slow controls",
"termHTML": "cryogenic instrumentation and slow controls",
"type": "abbrev"
},
"citf": {
"abbrev": "CITF",
"defHTML": "A facility at <a href=\"#fnal\">Fermilab</a> with small (<span class=\"math inline\"><</span>1\u00a0ton) to intermediate (<span class=\"math inline\">\u223c</span>1\u00a0ton) volumes of instrumented, purified TPC-grade <a href=\"#lar\">LAr</a>, used for testing devices intended for use in <a href=\"#dune\">DUNE</a>.",
"defLaTeX": "A facility at \\gls{fnal} with small ($<$\\SI{1}{ton}) to intermediate ($\\sim$\\SI{1}{ton}) volumes of instrumented, purified TPC-grade \\gls{lar}, used for testing devices intended for use in \\gls{dune}",
"term": "cryogenic instrumentation test facility",
"termHTML": "cryogenic instrumentation test facility",
"type": "abbrev"
},
"ckm": {
"abbrev": "CKM matrix",
"defHTML": "Refers to the matrix describing the mixing between mass and weak eigenstates of quarks.",
"defLaTeX": "Refers to the matrix describing the mixing between mass and weak eigenstates of quarks",
"term": "Cabibbo-Kobayashi-Maskawa matrix",
"termHTML": "Cabibbo-Kobayashi-Maskawa matrix",
"type": "abbrev"
},
"cl": {
"abbrev": "CL",
"defHTML": "Refers to a probability used to determine the value of a random variable given its distribution.",
"defLaTeX": "Refers to a probability used to determine the value of a random variable given its distribution",
"term": "confidence level",
"termHTML": "confidence level",
"type": "abbrev"
},
"cmgc": {
"abbrev": "CMGC",
"defHTML": "The organizational unit responsible for management of the construction of conventional facilities at the underground area at the <a href=\"#surf\">SURF</a> site.",
"defLaTeX": "The organizational unit responsible for management of the construction of conventional facilities at the underground area at the \\gls{surf} site",
"term": "construction manager/general contractor",
"termHTML": "construction manager/general contractor",
"type": "abbrev"
},
"cmos": {
"defHTML": "Complementary metal-oxide-semiconductor.",
"defLaTeX": "Complementary metal-oxide-semiconductor",
"term": "CMOS",
"termHTML": "CMOS",
"type": "word"
},
"cmp": {
"defHTML": "configuration management plan.",
"defLaTeX": "configuration management plan",
"term": "CMP",
"termHTML": "CMP",
"type": "word"
},
"cms": {
"defHTML": "Compact Muon Solenoid experiment at CERN.",
"defLaTeX": "Compact Muon Solenoid experiment at CERN",
"term": "CMS",
"termHTML": "CMS",
"type": "word"
},
"cnn": {
"abbrev": "CNN",
"defHTML": "A deep learning technique most commonly applied to analyzing visual imagery.",
"defLaTeX": "A deep learning technique most commonly applied to analyzing visual imagery",
"term": "convolutional neural network",
"termHTML": "convolutional neural network",
"type": "abbrev"
},
"cno": {
"abbrev": "CNO",
"defHTML": "The CNO cycle (for carbon-nitrogen-oxygen) is one of the two known sets of fusion reactions by which stars convert hydrogen to helium, the other being the proton-proton chain reaction (pp-chain reaction). In the CNO cycle, four protons fuse, using carbon, nitrogen, and oxygen isotopes as catalysts, to produce one alpha particle, two positrons and two electron neutrinos.",
"defLaTeX": "The CNO cycle (for carbon-nitrogen-oxygen) is one of the two known sets of fusion reactions by which stars convert hydrogen to helium, the other being the proton-proton chain reaction (pp-chain reaction). In the CNO cycle, four protons fuse, using carbon, nitrogen, and oxygen isotopes as catalysts, to produce one alpha particle, two positrons and two electron neutrinos",
"term": "carbon nitrogen oxygen",
"termHTML": "carbon nitrogen oxygen",
"type": "abbrev"
},
"cob": {
"abbrev": "COB",
"defHTML": "An ATCA motherboard housing four RCEs.",
"defLaTeX": "An ATCA motherboard housing four RCEs",
"term": "cluster on board",
"termHTML": "cluster on board",
"type": "abbrev"
},
"coldadc": {
"defHTML": "A newly developed 16-channels <a href=\"#asic\">ASIC</a> providing analog to digital conversion.",
"defLaTeX": "A newly developed 16-channels \\gls{asic} providing analog to digital conversion",
"term": "ColdADC",
"termHTML": "ColdADC",
"type": "word"
},
"coldata": {
"defHTML": "A 64-channel control and communications <a href=\"#asic\">ASIC</a>.",
"defLaTeX": "A 64-channel control and communications \\gls{asic}",
"term": "COLDATA",
"termHTML": "COLDATA",
"type": "word"
},
"comfund": {
"defHTML": "The shared resources of the collaboration.",
"defLaTeX": "The shared resources of the collaboration",
"term": "common fund",
"termHTML": "common fund",
"type": "word"
},
"core": {
"defHTML": "CORE contributions are in either monetary units or labor hours. They can be technical components for the facility or experiment and the effort of the staff needed to produce, install, and test them; major facilities for the experiment; or other products and services relevant for the completion of the facility or experiment.",
"defLaTeX": "CORE contributions are in either monetary units or labor hours. They can be technical components for the facility or experiment and the effort of the staff needed to produce, install, and test them; major facilities for the experiment; or other products and services relevant for the completion of the facility or experiment",
"term": "CORE",
"termHTML": "CORE",
"type": "word"
},
"cots": {
"abbrev": "COTS",
"defHTML": "Items, typically hardware such ascomputers, that may be purchased whole, without any custom design or fabrication andthus at normal consumer prices and availability.",
"defLaTeX": "Items, typically hardware such ascomputers, that may be purchased whole, without any custom design or fabrication andthus at normal consumer prices and availability",
"term": "commercial off-the-shelf",
"termHTML": "commercial off-the-shelf",
"type": "abbrev"
},
"cp": {
"abbrev": "CP",
"defHTML": "Product of charge and parity transformations.",
"defLaTeX": "Product of charge and parity transformations",
"term": "charge parity",
"termHTML": "charge parity",
"type": "abbrev"
},
"cpa": {
"abbrev": "CPA",
"defHTML": "The component of the <a href=\"#sp\">SP</a> detector module that provides the drift HV cathode.",
"defLaTeX": "The component of the \\gls{sp} detector module that provides the drift HV cathode",
"term": "cathode plane assembly",
"termHTML": "cathode plane assembly",
"terms": "cathode plane assemblies",
"termsHTML": "cathode plane assemblies",
"type": "abbrevs"
},
"cpafc": {
"defHTML": "A pair of <a href=\"#cpa\">CPA</a> panels and the top and bottom <a href=\"#fc\">FC</a> portions that attach to the pair; an intermediate assembly for installation into the <a href=\"#spmod\">SP module</a>.",
"defLaTeX": "A pair of \\gls{cpa} panels and the top and bottom \\gls{fc} portions that attach to the pair; an intermediate assembly for installation into the \\gls{spmod} ",
"term": "CPA/FC",
"termHTML": "CPA/FC",
"type": "word"
},
"cpt": {
"abbrev": "CPT",
"defHTML": "product of charge, parity and time-reversal transformations.",
"defLaTeX": "product of charge, parity and time-reversal transformations",
"term": "charge, parity, and time reversal symmetry",
"termHTML": "charge, parity, and time reversal symmetry",
"type": "abbrev"
},
"cpv": {
"abbrev": "CPV",
"defHTML": "Lack of symmetry in a system before and after charge and parity transformations are applied. For CP symmetry to hold, a particle turns into its corresponding antiparticle under a charge transformation, and a paritytransformation inverts its space coordinates, i.e. produces the mirror image.",
"defLaTeX": "Lack of symmetry in a system before and after charge and parity transformations are applied. For CP symmetry to hold, a particle turns into its corresponding antiparticle under a charge transformation, and a paritytransformation inverts its space coordinates, i.e. produces the mirror image",
"term": "charge-parity symmetry violation",
"termHTML": "charge-parity symmetry violation",
"type": "abbrev"
},
"cr": {
"defHTML": "Capacitance-Resistance.",
"defLaTeX": "Capacitance-Resistance",
"term": "CR",
"termHTML": "CR",
"type": "word"
},
"crio": {
"defHTML": "Compact Reconfigurable Input Output.",
"defLaTeX": "Compact Reconfigurable Input Output",
"term": "cRIO",
"termHTML": "cRIO",
"type": "word"
},
"cro": {
"abbrev": "CRO",
"defHTML": "The system for detecting ionization charge distributions in a <a href=\"#dp\">DP</a> detector module.",
"defLaTeX": "The system for detecting ionization charge distributions in a \\gls{dp} detector module",
"term": "charge readout",
"termHTML": "charge readout",
"type": "abbrev"
},
"crp": {
"abbrev": "CRP",
"defHTML": "In the <a href=\"#dp\">DP</a> technology, a collection of electrodes in a planar arrangement placed at a particular voltage relative to some applied such that drifting electrons may be collected and their number and time may be measured.",
"defLaTeX": "In the \\gls{dp} technology, a collection of electrodes in a planar arrangement placed at a particular voltage relative to some applied \\efield such that drifting electrons may be collected and their number and time may be measured",
"term": "charge-readout plane",
"termHTML": "charge-readout plane",
"type": "abbrev"
},
"crt": {
"abbrev": "CRT",
"defHTML": "Detector external to the TPC designed to tag TPC-traversing cosmic ray particles.",
"defLaTeX": "Detector external to the TPC designed to tag TPC-traversing cosmic ray particles",
"term": "cosmic ray tagger",
"termHTML": "cosmic ray tagger",
"type": "abbrev"
},
"cryo": {
"defHTML": "Integrated ASIC including <a href=\"#fe\">FE</a> circuitry providing signal amplification and pulse shaping, analog to digital conversion, and control and communication functionalities for 64 channels.",
"defLaTeX": "Integrated ASIC including \\gls{fe} circuitry providing signal amplification and pulse shaping, analog to digital conversion, and control and communication functionalities for 64 channels",
"term": "CRYO",
"termHTML": "CRYO",
"type": "word"
},
"csc": {
"abbrev": "CSC",
"defHTML": "DUNEcomputing and software consortium.",
"defLaTeX": "DUNEcomputing and software consortium",
"term": "computing and software consortium",
"termHTML": "computing and software consortium",
"type": "abbrev"
},
"cte": {
"defHTML": "coefficient of thermal expansion.",
"defLaTeX": "coefficient of thermal expansion",
"term": "CTE",
"termHTML": "CTE",
"type": "word"
},
"cts": {
"defHTML": "Cryogenic Test System.",
"defLaTeX": "Cryogenic Test System",
"term": "CTS",
"termHTML": "CTS",
"type": "word"
},
"ctsf": {
"abbrev": "CTSF",
"defHTML": "A facility where the the <a href=\"#dp\">DP</a> photon detectors will be coated, tested, and stored.",
"defLaTeX": "A facility where the the \\gls{dp} photon detectors will be coated, tested, and stored",
"term": "coating, testing and storage facility",
"termHTML": "coating, testing and storage facility",
"type": "abbrev"
},
"cuc": {
"abbrev": "CUC",
"defHTML": "The utility cavern at the 4850L of <a href=\"#surf\">SURF</a> located between the two detector caverns. It contains utilities such as central cryogenics and other systems, and the underground data center and control room.",
"defLaTeX": "The utility cavern at the 4850L of \\gls{surf} located between the two detector caverns. It contains utilities such as central cryogenics and other systems, and the underground data center and control room",
"term": "central utility cavern",
"termHTML": "central utility cavern",
"type": "abbrev"
},
"cvn": {
"abbrev": "CVN",
"defHTML": "An algorithm for identifying neutrino interactions based on their topology and without the need for detailed reconstruction algorithms.",
"defLaTeX": "An algorithm for identifying neutrino interactions based on their topology and without the need for detailed reconstruction algorithms",
"term": "convolutional visual network",
"termHTML": "convolutional visual network",
"type": "abbrev"
},
"dac": {
"defHTML": "digital-to-analog converter.",
"defLaTeX": "digital-to-analog converter",
"term": "DAC",
"termHTML": "DAC",
"type": "word"
},
"daphne": {
"defHTML": "Detector electronics for Acquiring PHotons from NEutrinos is a custom-developed warm front-end waveform digitizing electronics module derived from the readout system developed at Fermilab for the Mu2e experiment.",
"defLaTeX": "Detector electronics for Acquiring PHotons from NEutrinos is a custom-developed warm front-end waveform digitizing electronics module derived from the readout system developed at Fermilab for the Mu2e experiment",
"term": "DAPHNE",
"termHTML": "DAPHNE",
"type": "word"
},
"daq": {
"abbrev": "DAQ",
"defHTML": "The data acquisition system accepts data from the detector <a href=\"#fe\">FE</a> electronics, buffers the data, performs a <a href=\"#trigdecision\">trigger decision</a>, builds events from the selected data and delivers the result to the offline <a href=\"#diskbuffer\">secondary DAQ buffer</a>.",
"defLaTeX": "The data acquisition system accepts data from the detector \\gls{fe} electronics, buffers the data, performs a \\gls{trigdecision}, builds events from the selected data and delivers the result to the offline \\gls{diskbuffer}",
"term": "data acquisition",
"termHTML": "data acquisition",
"type": "abbrev"
},
"daqbes": {
"abbrev": "DAQ BE",
"defHTML": "The portion of the <a href=\"#daq\">DAQ</a> that is generally toward its output end. It is responsible for accepting and executing trigger commands and marshaling the data they address to output storage buffers.",
"defLaTeX": "The portion of the \\gls{daq} that is generally toward its output end. It is responsible for accepting and executing trigger commands and marshaling the data they address to output storage buffers",
"term": "DAQ back-end subsystem",
"termHTML": "DAQ back-end subsystem",
"type": "abbrev"
},
"daqbuf": {
"defHTML": "The portion of the <a href=\"#daqfrag\">DAQ front-end fragment</a> that accepts full data stream from the corresponding <a href=\"#detunit\">detector unit</a> and retains it sufficiently long for it to be available to produce a <a href=\"#datafrag\">data fragment</a>.",
"defLaTeX": "The portion of the \\gls{daqfrag} that accepts full data stream from the corresponding \\gls{detunit} and retains it sufficiently long for it to be available to produce a \\gls{datafrag}",
"term": "DAQ primary buffer",
"termHTML": "DAQ primary buffer",
"type": "word"
},
"daqccm": {
"abbrev": "CCM",
"defHTML": "A system for controlling, configuring and monitoring other systems in particular those that make up the <a href=\"#daq\">DAQ</a> where the CCM encompasses <a href=\"#rc\">RC</a>.",
"defLaTeX": "A system for controlling, configuring and monitoring other systems in particular those that make up the \\gls{daq} where the CCM encompasses \\gls{rc}",
"term": "DAQ control, configuration and monitoring subsystem",
"termHTML": "DAQ control, configuration and monitoring subsystem",
"type": "abbrev"
},
"daqdfo": {
"abbrev": "DFO",
"defHTML": "The process by which trigger commands are executed in parallel and asynchronous manner by the back-end output subsystem of the <a href=\"#daq\">DAQ</a>.",
"defLaTeX": "The process by which trigger commands are executed in parallel and asynchronous manner by the back-end output subsystem of the \\gls{daq}",
"term": "data flow orchestrator",
"termHTML": "data flow orchestrator",
"type": "abbrev"
},
"daqdispre": {
"defHTML": "As used in the context of the <a href=\"#ipc\">IPC</a>, a system that provides mechanisms for a node on a communication network to learn of the existence of peers and their identity (discovery) as well as determine if they are currently operational or have become unresponsive (presence).",
"defLaTeX": "As used in the context of the \\gls{ipc}, a system that provides mechanisms for a node on a communication network to learn of the existence of peers and their identity (discovery) as well as determine if they are currently operational or have become unresponsive (presence)",
"term": "discovery and presence",
"termHTML": "discovery and presence",
"type": "word"
},
"daqdr": {
"abbrev": "DDR",
"defHTML": "The portion of the <a href=\"#daqfrag\">DAQ front-end fragment</a> that accepts data from the <a href=\"#daqfer\">FER</a>, emits trigger candidates produced from the input trigger primitives, and forwards the full data stream to the <a href=\"#daqbuf\">DAQ primary buffer</a>.",
"defLaTeX": "The portion of the \\gls{daqfrag} that accepts data from the \\gls{daqfer}, emits trigger candidates produced from the input trigger primitives, and forwards the full data stream to the \\gls{daqbuf}",
"term": "DAQ data receiver",
"termHTML": "DAQ data receiver",
"type": "abbrev"
},
"daqds": {
"defHTML": "The portion of the <a href=\"#daqfrag\">DAQ front-end fragment</a> that accepts <a href=\"#trigcommand\">trigger commands</a> and returns the corresponding <a href=\"#datafrag\">data fragment</a>. Not to be confused with <a href=\"#daqdsn\">data selection</a>.",
"defLaTeX": "The portion of the \\gls{daqfrag} that accepts \\glspl{trigcommand} and returns the corresponding \\gls{datafrag}. Not to be confused with \\gls{daqdsn}",
"term": "data selector",
"termHTML": "data selector",
"type": "word"
},
"daqdsn": {
"defHTML": "The process of forming a trigger decision for selecting a subset of detector data for output by the <a href=\"#daq\">DAQ</a> from the content of the detector data itself. Not to be confused with <a href=\"#daqds\">data selector</a>.",
"defLaTeX": "The process of forming a trigger decision for selecting a subset of detector data for output by the \\gls{daq} from the content of the detector data itself. Not to be confused with \\gls{daqds}",
"term": "data selection",
"termHTML": "data selection",
"type": "word"
},
"daqdss": {
"abbrev": "DAQ DS",
"defHTML": "The subsystem of the <a href=\"#daq\">DAQ</a> responsible for forming a trigger decision based on a portion of the input data stream. The majority subset of the <a href=\"#daqtrs\">DAQ TS</a>.",
"defLaTeX": "The subsystem of the \\gls{daq} responsible for forming a trigger decision based on a portion of the input data stream. The majority subset of the \\gls{daqtrs}",
"term": "DAQ data selection subsystem",
"termHTML": "DAQ data selection subsystem",
"type": "abbrev"
},
"daqeti": {
"abbrev": "ETI",
"defHTML": "Interface between <a href=\"#mtl\">MTLs</a> and external source and sinks of relevant trigger information.",
"defLaTeX": "Interface between \\glspl{mtl} and external source and sinks of relevant trigger information",
"term": "external trigger interface",
"termHTML": "external trigger interface",
"type": "abbrev"
},
"daqfer": {
"abbrev": "FER",
"defHTML": "The portion of a <a href=\"#daqfrag\">DAQ front-end fragment</a> that accepts data from the detector electronics and provides it to the <a href=\"#fec\">DAQ FEC</a>.",
"defLaTeX": "The portion of a \\gls{daqfrag} that accepts data from the detector electronics and provides it to the \\gls{fec}",
"term": "DAQ front-end readout",
"termHTML": "DAQ front-end readout",
"type": "abbrev"
},
"daqfrag": {
"defHTML": "The portion of one <a href=\"#daqpart\">DAQ partition</a> relating to a single <a href=\"#fec\">DAQ FEC</a> and corresponding to an integral number of <a href=\"#detunit\">detector units</a>. See also <a href=\"#datafrag\">data fragment</a>.",
"defLaTeX": "The portion of one \\gls{daqpart} relating to a single \\gls{fec} and corresponding to an integral number of \\glspl{detunit}. See also \\gls{datafrag}",
"term": "DAQ front-end fragment",
"termHTML": "DAQ front-end fragment",
"type": "word"
},
"daqoob": {
"abbrev": "OOB dispatcher",
"defHTML": "This component is responsible for dispatching a <a href=\"#snb\">SNB</a> dump command to all <a href=\"#daqfer\">FERs</a> in the <a href=\"#detmodule\">detector module</a>.",
"defLaTeX": "This component is responsible for dispatching a \\gls{snb} dump command to all \\glspl{daqfer} in the \\gls{detmodule}",
"term": "out-of-band trigger command dispatcher",
"termHTML": "out-of-band trigger command dispatcher",
"type": "abbrev"
},
"daqpart": {
"defHTML": "A cohesive and coherent collection of <a href=\"#daq\">DAQ</a> hardware and software working together to trigger and read out some portion of one detector module; it consists of an integral number of <a href=\"#daqfrag\">DAQ front-end fragments</a>. Multiple <a href=\"#daq\">DAQ</a> partitions may operate simultaneously, but each instance operates independently.",
"defLaTeX": "A cohesive and coherent collection of \\gls{daq} hardware and software working together to trigger and read out some portion of one detector module; it consists of an integral number of \\glspl{daqfrag}. Multiple \\gls{daq} partitions may operate simultaneously, but each instance operates independently",
"term": "DAQ partition",
"termHTML": "DAQ partition",
"type": "word"
},
"daqros": {
"abbrev": "DAQ RO",
"defHTML": "The subsystem of the <a href=\"#daq\">DAQ</a> for accepting and buffering data input from detector electronics.",
"defLaTeX": "The subsystem of the \\gls{daq} for accepting and buffering data input from detector electronics",
"term": "DAQ readout subsystem",
"termHTML": "DAQ readout subsystem",
"type": "abbrev"
},
"daqrou": {
"abbrev": "DAQ RU",
"defHTML": "The first element in the data flow of the <a href=\"#daq\">DAQ</a>.",
"defLaTeX": "The first element in the data flow of the \\gls{daq}",
"term": "DAQ readout unit",
"termHTML": "DAQ readout unit",
"type": "abbrev"
},
"daqrun": {
"defHTML": "A period of time over which relevant data taking conditions and <a href=\"#daq\">DAQ</a> configuration are asserted to be unchanged. Multiple <a href=\"#daq\">DAQ</a> runs may occur simultaneously when multiple <a href=\"#daqpart\">DAQ partitions</a> are active. This term should not be confused with DUNE experiment or beam \"runs\" that typically span many <a href=\"#daq\">DAQ</a> runs.",
"defLaTeX": "A period of time over which relevant data taking conditions and \\gls{daq} configuration are asserted to be unchanged. Multiple \\gls{daq} runs may occur simultaneously when multiple \\glspl{daqpart} are active. This term should not be confused with DUNE experiment or beam ``runs'' that typically span many \\gls{daq} runs",
"term": "DAQ run",
"termHTML": "DAQ run",
"type": "word"
},
"daqrunnum": {
"defHTML": "A monotonically increasing count that uniquely and globally identifies a <a href=\"#daqrun\">DAQ run</a>.",
"defLaTeX": "A monotonically increasing count that uniquely and globally identifies a \\gls{daqrun}",
"term": "DAQ run number",
"termHTML": "DAQ run number",
"type": "word"
},
"daqtrs": {
"abbrev": "DAQ TS",
"defHTML": "The subsystem of the <a href=\"#daq\">DAQ</a> responsible for forming a trigger decision.",
"defLaTeX": "The subsystem of the \\gls{daq} responsible for forming a trigger decision",
"term": "DAQ trigger subsystem",
"termHTML": "DAQ trigger subsystem",
"type": "abbrev"
},
"daqtss": {
"abbrev": "DAQ TSS",
"defHTML": "The portion of the <a href=\"#daq\">DAQ</a> that provides for timing and synchronization to various components.",
"defLaTeX": "The portion of the \\gls{daq} that provides for timing and synchronization to various components",
"term": "DAQ timing and synchronization subsystem",
"termHTML": "DAQ timing and synchronization subsystem",
"type": "abbrev"
},
"daqubi": {
"abbrev": "UBI",
"defHTML": "The process which provides read-only access to data residing in the upstream <a href=\"#daq\">DAQ</a> buffers to processes on the network.",
"defLaTeX": "The process which provides read-only access to data residing in the upstream \\gls{daq} buffers to processes on the network",
"term": "upstream DAQ buffer interface",
"termHTML": "upstream DAQ buffer interface",
"type": "abbrev"
},
"datafrag": {
"defHTML": "A block of data read out from a single <a href=\"#daqfrag\">DAQ front-end fragment</a> thatspan a contiguous period of time as requested by a <a href=\"#trigcommand\">trigger command</a>.",
"defLaTeX": "A block of data read out from a single \\gls{daqfrag} thatspan a contiguous period of time as requested by a \\gls{trigcommand}",
"term": "data fragment",
"termHTML": "data fragment",
"type": "word"
},
"dayabay": {
"defHTML": "a neutrino-oscillation experiment in Daya Bay, China, designed to measure the mixing angle <span class=\"math inline\"><em>\u0398</em><sub>13</sub></span> using antineutrinos produced by the reactors of the Daya Bay and Ling Ao nuclear power plants.",
"defLaTeX": "a neutrino-oscillation experiment in Daya Bay, China, designed to measure the mixing angle $\\Theta_{13}$ using antineutrinos produced by the reactors of the Daya Bay and Ling Ao nuclear power plants",
"term": "Daya Bay",
"termHTML": "Daya Bay",
"type": "word"
},
"dc": {
"defHTML": "direct coupling.",
"defLaTeX": "direct coupling",
"term": "DC",
"termHTML": "DC",
"type": "word"
},
"dcdb": {
"abbrev": "DCDB",
"defHTML": "Database used by DUNE to track the history and testing of all parts of each <a href=\"#detmodule\">detector module</a>.",
"defLaTeX": "Database used by DUNE to track the history and testing of all parts of each \\gls{detmodule}",
"term": "DUNE construction database",
"termHTML": "DUNE construction database",
"type": "abbrev"
},
"dcs": {
"defHTML": "Distributed Communications System.",
"defLaTeX": "Distributed Communications System",
"term": "DCS",
"termHTML": "DCS",
"type": "word"
},
"ddss": {
"abbrev": "DDSS",
"defHTML": "The system used to manage key aspects of detector safety.",
"defLaTeX": "The system used to manage key aspects of detector safety",
"term": "DUNE detector safety system",
"termHTML": "DUNE detector safety system",
"type": "abbrev"
},
"detmodule": {
"defHTML": "The entire DUNE far detector is segmented into four modules, each with a nominal 10 fiducial mass.",
"defLaTeX": "The entire DUNE far detector is segmented into four modules, each with a nominal \\SI{10}{\\kton} fiducial mass",
"term": "detector module",
"termHTML": "detector module",
"type": "word"
},
"detunit": {
"defHTML": "Aportion of a <a href=\"#detmodule\">detector module</a> may be further partitioned into a number of similar parts. For example the <a href=\"#sp\">SP</a> <a href=\"#tpc\">TPC</a>is made up of <a href=\"#apa\">APA</a> units (and other elements).",
"defLaTeX": "Aportion of a \\gls{detmodule} may be further partitioned into a number of similar parts. For example the \\gls{sp} \\gls{tpc}is made up of \\gls{apa} units (and other elements)",
"term": "detector unit",
"termHTML": "detector unit",
"type": "word"
},
"dirac": {
"defHTML": "Computing workflow management designed for LHCb and now used by many HEP experiments.",
"defLaTeX": "Computing workflow management designed for LHCb and now used by many HEP experiments",
"term": "DIRAC",
"termHTML": "DIRAC",
"type": "word"
},
"dis": {
"abbrev": "DIS",
"defHTML": "Refers to the interaction of an elementary charged particle with a nucleus in an energy range where the interaction can be modeled as taking place with individual nucleons.",
"defLaTeX": "Refers to the interaction of an elementary charged particle with a nucleus in an energy range where the interaction can be modeled as taking place with individual nucleons",
"term": "deep inelastic scattering",
"termHTML": "deep inelastic scattering",
"type": "abbrev"
},
"diskbuffer": {
"defHTML": "A secondary <a href=\"#daq\">DAQ</a> buffer holds a small subset of the full rate as selected by a <a href=\"#trigcommand\">trigger command</a>. This buffer also marks the interface with the DUNE Offline.",
"defLaTeX": "A secondary \\gls{daq} buffer holds a small subset of the full rate as selected by a \\gls{trigcommand}. This buffer also marks the interface with the DUNE Offline",
"term": "secondary DAQ buffer",
"termHTML": "secondary DAQ buffer",
"type": "word"
},
"dm": {
"abbrev": "DM",
"defHTML": "The term given to the unknown matter or force that explains measurements of galaxy motion that are otherwise inconsistent with the amount of mass associated with the observed amount of photon production.",
"defLaTeX": "The term given to the unknown matter or force that explains measurements of galaxy motion that are otherwise inconsistent with the amount of mass associated with the observed amount of photon production",
"term": "dark matter",
"termHTML": "dark matter",
"type": "abbrev"
},
"dmp": {
"defHTML": "data management plan.",
"defLaTeX": "data management plan",
"term": "DMP",
"termHTML": "DMP",
"type": "word"
},
"dnl": {
"abbrev": "DNL",
"defHTML": "A commonly used measure of performance in <a href=\"#adc\">ADCs</a>. The DNL error is defined as the difference between an actual step width and the ideal value of one <a href=\"#lsb\">LSB</a>.",
"defLaTeX": "A commonly used measure of performance in \\glspl{adc}. The DNL error is defined as the difference between an actual step width and the ideal value of one \\gls{lsb}",
"term": "differential non-linearity",
"termHTML": "differential non-linearity",
"type": "abbrev"
},
"docdb": {
"abbrev": "DocDB",
"defHTML": "A computerized document management system developed and supported at <a href=\"#fnal\">Fermilab</a> in which virtually all LBNF and most DUNE documents are managed.",
"defLaTeX": "A computerized document management system developed and supported at \\gls{fnal} in which virtually all LBNF and most DUNE documents are managed",
"term": "Document DataBase",
"termHTML": "Document DataBase",
"type": "abbrev"
},
"doe": {
"defHTML": "U.S. Department of Energy.",
"defLaTeX": "U.S. Department of Energy",
"term": "DOE",
"termHTML": "DOE",
"type": "word"
},
"doecd": {
"abbrev": "CD",
"defHTML": "The U.S. DOE\u2019s Order 413.3B outlines a series of staged project approvals, each of which is referred to as a critical decision (CD).",
"defLaTeX": "The U.S. DOE's Order 413.3B outlines a series of staged project approvals, each of which is referred to as a critical decision (CD)",
"term": "critical decision",
"termHTML": "critical decision",
"type": "abbrev"
},
"doma": {
"abbrev": "DOMA",
"defHTML": "data organization, management, and access efforts through theHEP Software Foundation.",
"defLaTeX": "data organization, management, and access efforts through theHEP Software Foundation",
"term": "data organization, management, andaccess",
"termHTML": "data organization, management, andaccess",
"type": "abbrev"
},
"dp": {