-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
1676 lines (1369 loc) · 89.1 KB
/
main.tex
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
\documentclass[encoding=utf8,british]{tumphthesis}
% \documentclass[pstricks,siunitx,addfonts,theorem,font=palatino,british]{tumphthesis}
% Das folgende Paket dient lediglich dazu, den Blindtext "Lorem ipsum ..."
% auszugeben und kann in einer echten Abschlussarbeit natürlich weggelassen
% (oder auskommentiert) werden.
\usepackage{graphicx}
\usepackage[font={small}]{caption}
\usepackage[font={small}]{subcaption}
\usepackage{units}
%\usepackage{capt-of}
\usepackage{subfig}
\usepackage{csquotes}
%\usepackage{natbib}
\usepackage{physics}
\usepackage[compat=1.1.0]{tikz-feynman}
\tikzset{/tikzfeynman/warn luatex=false}
\usepackage[all]{nowidow}
\include{gerda-abbreviations}
\setcounter{tocdepth}{1}
\setcounter{secnumdepth}{2}
\hyphenpenalty=100
\widowpenalty10000
\clubpenalty10000
\displaywidowpenalty = 1000
%\usepackage{draftwatermark}
%\SetWatermarkScale{3}
% Die Metadaten der Abschlussarbeit werden auf dem Deckblatt gedruckt und
% in dem PDF eingetragen.
\subject{Bachelor Thesis}
%\title{Analysis of Kr85 concentration in the liquid argon of \gerda\ Phase II}
\title{Determination of the Specific \Kr\ Activity in the Liquid Argon of \gerda\ Phase II}
%\subtitle{\foreignlanguage{british}{Title in English}}
\author{Moritz Neuberger}
\date{7 ~August, 2018}
%\cooperators{Max-Planck-Institut für Physik}
% Auf der Rückseite des Deckblatts können Themensteller, Zweitgutachter
% und Tag der mündlichen Prüfung vermerkt werden.
\lowertitleback{Erstgutachter (Themensteller): Prof.\ S.~Schönert\\
Zweitgutachter: Prof.\ H.~Kroha\\
Betreuer: C.\ Wiesinger}
\dedication{
\begin{chapquote}{Dr. Satnam Tsurutani in the movie "2012"}
"It looks like the neutrinos [...] have mutated into a new kind of nuclear particle."
\end{chapquote}
}
%-------------------------------------------------------------------------------
%\include{header} % packages/settings
%\include{\gerda\-abbreviations} % for definitions see: abbreviations.tex
%-------------------------------------------------------------------------------
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ----------------------------------------------------- DEFINE YOUR REPORT ---
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\newcommand{\repnumber} {GSTR-18-0xx} % REPNUMBER (yy->year, 0xx->running number)
%\newcommand{\repdate} {August 8, 2018} % DATE
%\newcommand{\titleheader}{Analysis of \Kr concentration in the liquid argon of \gerda\ Phase II} % TITLE
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\setlength\parindent{0pt}
% -------------------------------------------------------- begin document ---
\begin{document}
\selectlanguage{british}
\frontmatter
\maketitle
% -------------------------------------------------------- begin title page --
%\begin{titlepage}
% --------------------------------------------------------- logo /header -------
%\vspace*{20mm}
%\begin{center}
%{\Large\textbf{\titleheader}}
%\vspace*{10mm}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% ---------------------------------------------------- DEFINE YOUR AUTHORS ---
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%Moritz Neuberger, Christoph Wiesinger$^o$), Steffan Schönert$^o$)
%\vspace*{5mm}
% Address: (select the appropriate ones and change letters if needed)
%$^a$) INFN Laboratori Nazionali del Gran Sasso and Gran Sasso Science Institute, Assergi, Italy\\[1mm]
%$^b$) INFN Laboratori Nazionali del Sud, Catania, Italy\\[1mm]
%$^c$) Institute of Physics, Jagiellonian University, Cracow, Poland\\[1mm]
%$^d$) Institut f{\"u}r Kern- und Teilchenphysik Technische Universit{\"a}t Dresden, Dresden, Germany\\[1mm]
%$^e$) Joint Institute for Nuclear Research, Dubna, Russia\\[1mm]
%$^f$) European Commission, JRC-Geel, Geel, Belgium\\[1mm]
%$^g$) Max-Planck-Institut f{\"u}r Kernphysik, Heidelberg, Germany\\[1mm]
%$^h$) Universit{\`a} di Milano Bicocca, Milan, Italy\\[1mm]
%$^i$) INFN Milano Bicocca, Milan, Italy\\[1mm]
%$^j$) Universit{\`a} degli Studi di Milano e INFN Milano, Milan, Italy\\[1mm]
%$^k$) Institute for Nuclear Research of the Russian Academy of Sciences, Moscow, Russia\\[1mm]
%$^l$) Institute for Theoretical and Experimental Physics, NRC ``Kurchatov Institute'', Moscow, Russia\\[1mm]
%$^m$) National Research Centre ``Kurchatov Institute'', Moscow, Russia\\[1mm]
%$^n$) Max-Planck-Institut f{\"ur} Physik, Munich, Germany\\[1mm]
%$^o$) Physik Department E15 and Excellence Cluster Universe, Technische Universit{\"a}t M{\"u}nchen, Munich, Germany\\[1mm]
%$^p$) Dipartimento di Fisica e Astronomia dell{`}Universit{\`a} di Padova, Padova, Italy\\[1mm]
%$^q$) INFN Padova, Padova, Italy\\[1mm]
%$^r$) Physikalisches Institut, Eberhard Karls Universit{\"a}t T{\"u}bingen, T{\"u}bingen, Germany\\[1mm]
%$^s$) Physik Institut der Universit{\"a}t Z{\"u}rich, Z{\"u}rich, Switzerland\\[1mm]
%\vspace*{20mm}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% -------------------------------------------------- WRITE A SHORT ASTRACT ---
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\begin{abstract}
%Seite beabsichtigt leer gelassen.
%\end{abstract}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\end{center}
%\vfill
%\end{titlepage}
%\vfill
% ---------------------------------------------------------------- settings ---
%\pagenumbering{arabic}
%\setcounter{page}{1}
%\pagestyle{myheadings}
%\markboth{~-~~\repnumber\hfill\titleheader}{\titleheader\hfill\repnumber~~-~}
%\newpage
%----------------------------------------------------------------- body --------
% Ist die Arbeit auf Englisch verfasst, hier die Sprache umschalten.
% Die Sprache muss als Klassenoption angegeben sein.
%\chapter{Titel des ersten Kapitels}
%\section{Erster Abschnitt}
%\lipsum[2-5]\cite{schwabl-qqi2002}
%Und noch etwas \emph{betontes}.
%\section{Zweiter Abschnitt}
%\lipsum[6] Test\cite{Setare:2013dra}
%\begin{figure}
% \centering
% \includegraphics[width=\textwidth]{tumlogo}
% \caption{\label{fig:test}Test}
%\end{figure}
%\subsection{Unterabschnitt}
%\lipsum[7]\cite{schwabl-qqi2002,schwabl-qffi2002}
%\subsubsection{Unterunterabschnitt}
%\paragraph{Absatz} \lipsum[8]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% --------------------------------------------------- ADD HERE YOUR REPORT ---
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%sources:
% 0: https://arxiv.org/pdf/1006.1718v2.pdf
\chapter*{Abstract}
The GERmanium Detector Array (\gerda) experiment tries to find evidence for the neutrinoless double beta decay in \nuc{Ge}{76}.
Enriched high purity germanium detectors are used simultaneously as source and detector.
The liquid argon in which the detectors are located acts as coolant, passive shielding against radiation from the outside and as an active veto due to its scintillation capability.
Because of the extremely low background condition, \gerda\ explores half-lives at about 10$^{26}$ yr.
A residual radioactive isotope in the liquid argon is \nuc{Kr}{85}.
It does not contribute to the background for \gerda's neutrinoless double beta decay search, but might influence analyses carried out at lower energies.
The aim of this thesis is to determine \Kr's specific activity.
In about 0.434$\%$ the \Kr\ decays are followed by the emission of a gamma with 514 keV.
Based on the line count of its peak in the energy spectrum of \gerda, the efficiency in the detectors to measure these gammas and the mean overall measurement time, the specific \Kr\ activity can be calculated.
By applying this method, a specific activity of $(0.508\pm0.086) \ \unit{mBq}/\unit{l}$ was determined.
A cross-check analysis facilitating the decay lifetime was carried out.
However, the presence of \nuc{Ar}{42} with a comparable lifetime did not allow a verification of the obtained result.
\begin{otherlanguage}{ngerman}
\chapter*{Zusammenfassung}
Das GERmanium Detector Array (\gerda) Experiment versucht, Beweise für den neutrinolosen doppelten Betazerfall in \nuc{Ge}{76} zu finden.
Angereicherte hochreine Germanium-Detektoren werden gleichzeitig als Quelle und Detektor eingesetzt.
Das flüssige Argon, in dem sich die Detektoren befinden, wirkt als Kühlmittel, als passive Abschirmung gegen Strahlung von Außen und als aktives Veto bedingt durch seine Szintillationsfähigkeit.
Aufgrund der extrem niedrigen Untergrundbedingung erforscht \gerda\ Halbwertszeiten bis etwa 10$^{26}$ yr.
Ein radioaktives Isotop im flüssigen Argon ist \nuc{Kr}{85}.
Es trägt nicht zum Untergrund für \gerdas\ die neutrinolose Doppel-Betazerfall-Suche bei, könnte aber Analysen bei niedrigeren Energien beeinflussen.
Das Ziel dieser Arbeit ist es, die spezifische Aktivität von \Kr\ zu bestimmen.
In ca. 0,434$\%$ aller \Kr-Zerfälle wird zusätzlich noch ein Gamma mit 514 keV zeitlich verzögert emittiert.
Basierend auf der Anzahl an Counts im zugehörigen Peak im Energiespektrum von \gerda, der Effizienz der Detektoren, ein solches Gamma zu messen und auf der mittleren Gesamtmesszeit kann die spezifische \Kr-Aktivität berechnet werden.
Durch die Anwendung dieser Methode wurde eine spezifische Aktivität von $(0.508\pm0.086) \ \unit{mBq}/ \unit{l}$ bestimmt.
Es wurde ein Vergleichsanalyse mit Hilfe der exponentiellen Abnahme der Zählrate durchgeführt.
Die Anwesenheit von \nuc{Ar}{42} mit vergleichbarer Lebensdauer erlaubte jedoch keine Überprüfung des erhaltenen Ergebnisses.
\end{otherlanguage}
\tableofcontents
\mainmatter
\chapter{Introduction}
\label{sec:intro}
%paragraph about sec. neutrino phys
The double beta (\twonu) decay has been observed in several isotopes where single beta decay is forbidden.
However, the neutrinoless double beta (\onbb) decay will only occur when neutrinos are Majorana fermions \cite{schechter_neutrinoless_1982}.
Majorana particles have the characteristic of being particle and antiparticle at the same time, breaking the lepton number conservation \cite{bilenky_massive_1987}.
The physical background of all this is described in Section \ref{sec:PhyBG}.
\\
The following Section \ref{sec:gerda} will focus on the \gerda\ experiment.
The GERmanium Detector Array (\gerda) experiment tries to find evidence for the neutrinoless double beta (\onbb) decay in \nuc{Ge}{76} \cite{agostini_background_2017}.
\onbb\ decay is known to have a very long half-life.
It is therefore important to minimize background as good as possible.
A passive shield around the detectors for suppression of external radiation as well as a scintillator around the detectors to actively reject radiation from the outside are therefore needed.
Liquid argon (LAr) is a fitting material for both of these requirements due to its low boiling point, its good shielding characteristics and its ability to scintillate.
Commercial argon is extracted from the atmosphere by air liquefaction.
Impurities can be removed by cryogenic distillation but traces of radioactive components can be left.
One residual radioactive isotope is \Kr\ and will be discussed in Section \ref{sec:Kry85}.
\\
% what is the general aim of my Bachelor thesis
% general overview of how I'm going to do this
% ? what are my predictions ?
% What possible influence would the result of my work might have on the result of the \gerda\ experiment?
\section{Neutrino Physics}
\label{sec:PhyBG}
\subsection{Neutrinos and Lepton Number Conservation}
Neutrinos are electrically neutral elementary particles.
They are leptons and, apart from gravity, they only interact with other particles via the weak force.
They occur in three different kinds of flavors: the electron neutrino $\nu_e$, the muon neutrino $\nu_{\mu}$ and the tau neutrino $\nu_{\tau}$.
According to the standard model neutrinos would be massless.
Neutrino oscillation, however, has shown that neutrinos are massive \cite{fukuda_evidence_1998,sno_collaboration_direct_2002}.
But the absolute values of their mass and whether they are Dirac or Marjoram particles are still unknown.
\\
The major difference between these two kinds of particles is that, in the case of Dirac particles, one can clearly identify particles and anti-particles while Majorana particles only have one kind.
In other words, Majorana particles are particle and anti-particle at the same time.
This would allow lepton number violation and point towards physics beyond the standard model.
Until now, only one possible transition is known that could identify neutrinos as Majorana particles \cite{schechter_neutrinoless_1982}.
This transition is referred to as a neutrinoless double beta (\onbb) decay.
%what are Majorana neutrinos
\subsection{\onbb\ Decay}
\label{sec:0nubetabeta}
The double beta (\twonu) decay describes the transition of two neutrons to two protons in the same nuclei.
The standard model of particle physics needs two electrons and two electron-antineutrinos in the final state of this process.
\begin{equation}
(A,Z) \rightarrow (A,Z+2) + 2e^- + 2\bar{\nu_e}
\end{equation}
The corresponding diagram is drawn in Figure \ref{fig:Feyn2nbb}.
It is only observable if a single beta decay is forbidden, while a \twonu\ decay is allowed.
In most cases, this is due to the fact that the initial state of the nuclei $(A,Z)$ is stronger bound than the transition state $(A,Z+1)$ and less strong than the final state $(A,Z+2)$ .
Their half-lives are in the order of $10^{21}$ to $10^{26} \unit{yr}$ \cite{shirai_double_2018,barabash_brief_2017}.
\\
\WarningsOff
\begin{figure}[t!]
\centering
\begin{subfigure}{.475\textwidth}
\centering
\begin{tikzpicture}
\begin{feynman}
\vertex (b1) {\(u\)};
\vertex[right =5cm of b1] (b2) {\(u\)};
\vertex[below=1em of b1] (b3) {\(d\)};
\vertex[right=5cm of b3] (b4) {\(d\)};
\vertex[below=1em of b3] (b5) {\(d\)};
\vertex[right=2.5cm of b5] (b6);
\vertex[below=1em of b4] (b7) {\(u\)};
\vertex[below=7em of b5] (c1) {\(d\)};
\vertex[right =2.5cm of c1] (c2);
\vertex[below=7em of b7] (c3) {\(u\)};
\vertex[below=1em of c1] (c4) {\(d\)};
\vertex[right=5cm of c4] (c5) {\(d\)};
\vertex[below=1em of c4] (c6) {\(u\)};
\vertex[right=5cm of c6] (c7) {\(u\)};
\vertex[below=2em of b7] (e1) {\(e^-\)};
\vertex[left=2cm of e1] (e2);
\vertex[below=3em of e2] (e3);
\vertex[below=3em of e1] (e4) {\(e^-\)};
\vertex[below= 1em of e1] (n1) {\(\bar{\nu_e}\)};
\vertex[above= 1em of e4] (n2) {\(\bar{\nu_e}\)};
\diagram
{
{[edges=fermion]
(b1) -- (b2),
(b3) -- (b4),
(b5) -- (b6),
(b6) -- (b7)
(c1) -- (c2),
(c2) -- (c3),
(c4) -- (c5),
(c6) -- (c7),
(e2) -- (e1),
(e3) -- (e4),
(e3) -- (n2),
(e2) -- (n1),
},
(b6) -- [boson, edge label'=\(W\)] (e2),
(c2) -- [boson, edge label=\(W\)] (e3),
};
\draw [decoration={brace}, decorate] (b5.south west)--(b1.north west) node [pos=0.5, left] {\(n\)};
\draw [decoration={brace}, decorate] (c6.south west)--(c1.north west) node [pos=0.5, left] {\(n\)};
\draw [decoration={brace}, decorate] (c3.north east)--(c7.south east) node [pos=0.5, right] {\(p\)};
\draw [decoration={brace}, decorate] (b2.north east)--(b7.south east) node [pos=0.5, right] {\(p\)};
\end{feynman}
\end{tikzpicture}
\subcaption{Feynman-Diagram for the $2\nu\beta\beta$-decay. Two neutrons transfer into two protons, two electrons and two electron anti-neutrinos. This decay has already been observed in 12 different nuclei \cite{barabash_brief_2017}.}
\label{fig:Feyn2nbb}
\end{subfigure}\hfill%
\begin{subfigure}{.475\textwidth}
\centering
\begin{tikzpicture}
\begin{feynman}
\vertex (b1) {\(u\)};
\vertex[right =5cm of b1] (b2) {\(u\)};
\vertex[below=1em of b1] (b3) {\(d\)};
\vertex[right=5cm of b3] (b4) {\(d\)};
\vertex[below=1em of b3] (b5) {\(d\)};
\vertex[right=2.5cm of b5] (b6);
\vertex[below=1em of b4] (b7) {\(u\)};
\vertex[below=6em of b5] (c1) {\(d\)};
\vertex[right =2.5cm of c1] (c2);
\vertex[below=6em of b7] (c3) {\(u\)};
\vertex[below=1em of c1] (c4) {\(d\)};
\vertex[right=5cm of c4] (c5) {\(d\)};
\vertex[below=1em of c4] (c6) {\(u\)};
\vertex[right=5cm of c6] (c7) {\(u\)};
\vertex[below=2em of b7] (e1) {\(e^-\)};
\vertex[left=2cm of e1] (e2);
\vertex[below=2em of e2] (e3);
\vertex[below=2em of e1] (e4) {\(e^-\)};
\diagram
{
{[edges=fermion]
(b1) -- (b2),
(b3) -- (b4),
(b5) -- (b6),
(b6) -- (b7)
(c1) -- (c2),
(c2) -- (c3),
(c4) -- (c5),
(c6) -- (c7),
(e2) -- (e1),
(e3) -- (e4),
},
(b6) -- [boson, edge label'=\(W\)] (e2),
(c2) -- [boson, edge label=\(W\)] (e3),
(e2) -- [insertion=0.5] (e3),
};
\draw [decoration={brace}, decorate] (b5.south west)--(b1.north west) node [pos=0.5, left] {\(n\)};
\draw [decoration={brace}, decorate] (c6.south west)--(c1.north west) node [pos=0.5, left] {\(n\)};
\draw [decoration={brace}, decorate] (c3.north east)--(c7.south east) node [pos=0.5, right] {\(p\)};
\draw [decoration={brace}, decorate] (b2.north east)--(b7.south east) node [pos=0.5, right] {\(p\)};
\end{feynman}
\end{tikzpicture}
\subcaption{Feynman-Diagram of the $0\nu\beta\beta$ decay. Two neutrons transfer into two protons and two electrons. In this case the \onbb\ decay is due to an exchange of a massive Majorana neutrino. This transition has not been detected yet.}
\label{fig:Feyn0nbb}
\end{subfigure}
\caption{Feynman-Diagrams of the $0\nu\beta\beta$- and the $2\nu\beta\beta$-decay}
\end{figure}
\WarningsOn
In the case of a \onbb\ decay, no neutrinos are released:
\begin{equation}
(A,Z) \rightarrow (A,Z+2) + 2e^-
\end{equation}
From here, it will be assumed that the \onbb\ decay is caused by an exchange of massive Majorana neutrinos as seen in \ref{fig:Feyn0nbb}.
A non zero effective neutrino mass $\left\langle m_{\beta\beta}\right\rangle^2$ can be determined from \onbb\ decay's half-life \thalfzero\ when using their interdependence of $1 / \thalfzero\ \propto \left\langle m_{\beta\beta}\right\rangle^2$ \cite{delloro_neutrinoless_2016}.
This effective neutrino mass is defined by
\begin{equation}
\left\langle m_{\beta\beta}\right\rangle = \abs{\sum_i U_{ei}^2m_i }
\label{mBetaBeta}
\end{equation}
The PMNS mixing matrix elements $U_{\alpha i}$ originate from neutrino flavor mixing.
Neutrino oscillation experiments have shown that neutrino flavor eigenstates $\nu_\alpha$ that couple to the W boson are a superposition of neutrino mass eigenstates $\nu_i$ \cite{fukuda_evidence_1998,sno_collaboration_direct_2002}.
\begin{equation}
\ket{\nu_\alpha} = \sum_i U^*_{\alpha i} \ket{\nu_i}
\end{equation}
The elements of the matrix are defined by three mixing angles and three CP-violating phases.
The Dirac phase is always present, regardless whether the neutrino is a Majorana or Dirac particle.
The two Majorana phases only have a physical meaning for Majorana neutrinos.
Neutrino oscillation is only sensitive to the mass square differences $\Delta m^2_{ij} = m^2_i - m^2_j$ of the mass eigenstates and so far only an absolute value of $\Delta m^2_{32}$ could be determined.
This leaves three different possible scenarios to be considered in the \onbb\ decay \cite{bilenky_alternative_2017}:
\begin{enumerate}
\item normal hierarchy ($m_1 < m_2 < m_3$)
\item inverted hierarchy ($m_3 < m_1 < m_2$)
\item quasi-degenerate hierarchy ($m_1 \approx m_2 \approx m_3$) in which the mass eigenvalues are much larger than the mass square differences
\end{enumerate}
The effective neutrino mass as a function of the lightest mass of each mass ordering can be seen in Figure \ref{fig:MassOrder}.
A \onbb\ decay may provide new knowledge about the mass ordering, the mass scale as well as the Majorana phases.
\\
Other attempts to determine the mass of the electron neutrino measure the endpoint of beta decay \cite{otten_neutrino_2008}.
A promising experiment right now is the KATRIN experiment.
The absolute mass these kinds of experiments can measure, is an incoherent mass sum as seen in equation \ref{massBeta}.
\begin{equation}
\left\langle m_{\beta}\right\rangle = \sqrt{\sum_i \abs{U_{ei}}^2m^2_i}
\label{massBeta}
\end{equation}
A third method involves cosmological observation in which the sum of the neutrino masses $\Sigma$ can be measured \cite{abazajian_cosmological_2011}:
\begin{equation}
\Sigma = \sum_i m_i
\end{equation}
These three observable give complementary information and might allow to disentangle the Majorana phases, the individual masses of the mass eigentstates and therefore also the mass order of the neutrinos.
\\
\begin{figure}[t!]
\centering
\begin{minipage}[t]{.475\textwidth}
\centering
\includegraphics[width=.825\textwidth]{./Bilder/NeutrinoMassOrdering.png}
\caption{Effective neutrino mass $\left\langle m_{\beta\beta}\right\rangle$ as a function of the smallest mass of the respective mass ordering. NS stands for the normal ordering and IS for the inverted ordering. Taken from \cite{bilenky_neutrinoless_2012}.}
\label{fig:MassOrder}
\end{minipage}\hfill%
\begin{minipage}[t]{.475\textwidth}
\centering
\includegraphics[width=\textwidth]{./Bilder/TheoretischesSpektrmdes0nubbDecay.png}
\caption{Effective spectrum of a \twonu\ decay when adding the energies of the two escaping electrons. In case the \onbb\ decay occurs a peak can be seen at $Q_{\beta\beta} $. Taken from \cite{elliott_double_2002}.}
\label{fig:TheoSpektrum}
\end{minipage}
\end{figure}
\subsection{Experimental methods to detect a \onbb\ decay}
The experimental signature of the \onbb\ decay is a sharp peak at the $Q_{\beta\beta}$ value of the \twonu\ decay in the effective spectrum of the two electrons (see Figure \ref{fig:TheoSpektrum}).
One experimental approach consist in using a detector made of material enriched in a \onbb\ decaying isotope.
This has the advantage that the detection efficiency is maximized.
\\
Since \onbb\ decay should have a very long half-life, any background has to be minimized just to measure the resulting influence.
There are three kind of background sources which have to be considered.
\begin{enumerate}
\item Cosmic background.
Muons and other particles shower down to the earth from the atmosphere and create background in the detectors.
Most of their influence can be suppressed by placing the experiment deep underground.
By also applying a muon veto system most of the residual muon flux can be suppressed.
\item Natural radioactivity.
This is typically the dominant background source originating from radioactive isotopes which are naturally present in all materials.
Its influence can be suppressed by passively shielding the detectors and by the selecting low radioactive components in the setup.
\item The \twonu\ decay material itself.
Its impact on the background cannot be reduced by external measures or shielding.
However, by using a detector with high energy resolution or a decay material of high Q-value, its influence can be suppressed.
\end{enumerate}
\nuc{Ge}{76} has often been used in \onbb\ decay search experiment.
As it is a semiconductor, it can be used as detector material itself.
A disadvantage of \nuc{Ge}{76} is its comparibly low Q-value of $Q_{\beta\beta} = 2039 \ \unit{keV}$, which is lower than \nuc {Tl}{208}'s and \nuc{Bi}{214}'s end point energy.
It is also hard to increase the target volume compared to e.g. \nuc{Xe}{136} \cite{barabash_brief_2017}.
Its advantages, however, are its ability to be made with great intrinsic radio-purity, its high energy resolution and its high detection efficiency.
The possibility to carry out a background-free \onbb\ search \cite{agostini_background_2017} out weighs this disadvantage.
\\
%\nuc{Ge}{76} has a long history of use as decay material in \onbb\ experiments, most notably in the Heidelberg-Moscow(HdM) and the IGEX experiments.
%Both of these experiments are the predecessor experiments of \gerda\.
%With detectors made of enriched germanium plus the background reducing precautions and active vetos described above they were able to set a similar limit of the half-life of the \onbb\ to $\thalfzero(\nuc{Ge}{76}) > 1.9\times10^{25}\unit{yr}$ \cite{noauthor_phys._nodate}.
%HdM experiment actually claimed to have measured the half-life of about $\thalfzero(\nuc{Ge}{76}) = 1.19\times10^{25}\unit{yr}$ , but its legitimacy has been questioned by a part of the scientific community \cite{klapdor-kleingrothaus_search_2004}.
%\\
%This is where the \gerda\ experiment comes in.
%Its first measuring phase (\PI) was planned to verify or falsify the results of the HdM experiment using the detectors used in the HdM and the IGEX experiment.
%\PI started in November 2011 and May 2013 with a total exposure of $21.6 \frac{\unit{kg}}{\unit{yr}}$ and no signal of a \onbb\ observed \cite{agostini_results_2013}.
%With its results and the results from HdM and IGEX a new lower limit for the half-life was able to be set at $\thalfzero(\nuc{Ge}{76})>3.0\times10^{25}$ yr (90$\%$ C.L.)
%The second phase (\PII) with 30 new custom-made enriched detectors together with the old detectors has started measuring in late 2015 and had its latest data published !!!! hier noch ob ich das NATURE paper quoten soll!!!!!.
%A more detailed description of the construction and functionality of the \gerda\ \PII~ is the topic of the next section.
% also a bit about standard double beta decay
% differences between the standard and neutrinoless beta decay
\section{\gerda\ \PII}
\label{sec:gerda}
% general Information, e.g.
% sizes
% Gran Sasso,
% what other neutrinoless beta decay experiments are there,
\subsection{Experimental Setup}
\label{sec:ExSetup}
The \gerda\ experiment is located in the underground Laboratori Nazionali del Gran Sasso (LNGS) of INFN, Italy.
The laboratories are located approximately 1.4 km below ground, which corresponds to a water equivalent of 3.5 km.
\gerda\ uses \nuc{Ge}{76} as \onbb\ source as well as the detector material \cite{agostini_background_2017}.
\\
The high purity germanium detectors are operated bare in a liquid argon (LAr) tank of 64 m$^3$ volume at an working temperature of about 90 K.
Its main purpose is to cool the germanium detectors down to their working temperatures and to passively shield them against external radiation originating from the outside.
LAr can also scintillate.
This is why in \PII, extra instrumentation was positioned inside the LAr tank in order to measure any light signal around the detectors.
As any \nuc{Ge}{76} decays is unlikely to create scintillation light, their signal can be used as a veto - the so-called LAr veto.
Situated around the LAr cryostat is a 590 m$^3$ water tank.
Its main purpose is to shield the setup from outside radiation not only passively by absorption but also actively as a muon veto.
Situated in the water tank are 66 photomultipliers.
They detect Cherenkov light created by Muons.
Above the water tank, a clean room is installed in which the detector strings are assembled \cite{agostini_background_2017}.
The general setup can be seen in Figure \ref{fig:gerdaSetupPII}.
\\
\begin{figure}[t!]
\centering
\begin{minipage}[t!]{.45\textwidth}
\centering
\includegraphics[height=60mm]{./Bilder/GERDAsetupPhaseII.png}
\caption{Sketch of the \gerda\ \PII's experimental setup. The germanium detector array is placed inside a liquid argon (LAr) cryostat which itself is surrounded by a water tank. Taken from \cite{agostini_background_2017}.}
\label{fig:gerdaSetupPII}
\end{minipage}\hfill%
\begin{minipage}[t!]{.45\textwidth}
\centering
\includegraphics[height=60mm]{./Bilder/DetectorDesign.png}
\caption{Sketch of the Semi-Coaxial (COAX) and Broad Energy Germanium (BEGe) detector designs. Taken from \cite{agostini_background_2014}.}
\label{fig:DetcDes}
\end{minipage}
\end{figure}
Regarding the detectors themselves, \gerda\ \PII\ uses seven semi-coaxial detectors (COAX) which have already been used in the predecessor experiments (Heidelberg-Moscow and IGEX) as well as 30 new Broad Energy Germanium detectors (BEGe).
Both detector types are made of germanium that has been enriched from 7.8$\%$ of \nuc{Ge}{76} to about 87$\%$.
They also share the same basic functionality.
They are made from p-type germanium material.
Both detectors have doped most of their surface 1-2mm thick n$^+$ and only a small part p$^+$ with both layers to be used as electrodes.
If an electron hole pair is created in the p doped area, the charge carriers are separated and guided to the n$^+$ or the p$^+$ layer respectively by a strong electrostatic field (3 to 4 kV) between the electrodes.
If the pair is created in the n$^+$ layer, the hole is most likely to recombine in the n$^+$ layer due to its low mobility and, thus, creates no measurable signal.
The n$^+$ layer is therefore not active and called a dead layer \cite{agostini_production_2015}.
\\
The two detector types differ in their design as seen in Figure \ref{fig:DetcDes}.
Moreover the detector types also differ in their mass and energy resolution.
The COAX detector's design results in a worse energy resolution due to their higher capacity compared to the BEGes \cite{agostini_production_2015}.
BEGes also allow for better pulse shape discrimination (PSD) compared to the COAX detectors.
PSD allows to make a statement about the event topology inside the germanium crystal and acts as a veto \cite{agostini_pulse_2013}.
\\
The enriched detectors are assembled into 6 strings forming a hexagonal array together with a seventh string.
This seventh string consists of three extra coaxial detectors made of natural isotopic germanium.
However, they are not used in \gerda's main analysis.
Custom-made amplifiers also located in the liquid argon above the detectors.
The analog signals of the detectors are digitized at a sampling rate of 100MHz if a triggering signal was found \cite{riboldi_cryogenic_2015}.
Every 20 seconds a charge pulse, called the test pulse, is injected into the the front-end electronics.
Its purpose is to monitor the gain stability.
The analysis of the signals is performed off-line.
Surrounding the detectors so-called nylon mini shrouds (NMS) are attached to limit the amount of LAr volume around the detectors.
These NMS are placed there to passively suppress the background created from \nuc{K}{42} \cite{agostini_background_2014}.
\iffalse
\begin{figure}[t!]
\centering
\begin{subfigure}{.66\textwidth}
\centering
\includegraphics[width=.9\textwidth]{./Bilder/strings.png}
\caption{}
\label{fig:strings}
\end{subfigure}\hfill%
\begin{subfigure}{.30\textwidth}
\centering
\includegraphics[width=.9\textwidth]{./Bilder/strings-top.png}
\caption{}
\label{fig:stringsabove}
\end{subfigure}
\end{figure}
\fi
% well, just dump everything here
% also a bit about Tier1-4 storage of data
\subsection{Liquid Argon as Coolant, Shielding and Scintillator}
\label{sec:LArcoolant}
\begin{figure}[t!]
\centering
\begin{minipage}{.475\textwidth}
\centering
\includegraphics[width=0.6\textwidth]{./Bilder/LArVetoSetup.png}
\caption{Sketch of the liquid argon (LAr) veto setup.
In the setup 16 photomultiplier tubes (PMT) and 90 silicon photomultiplers (SiPM) are installed.
\iffalse
16 photomultiplier tubes (PMT) are mounted in a cylindrical copper surface at the top and bottom.
At the level of the detectors, the cylinder consists of fibers instead of copper.
They are read out at their ends by silicon photomultipliers (SiPM).
\fi
Taken from \cite{collaboration_upgrade_2018}.}
\label{fig:LArVetoSetup}
\end{minipage}\hfill%
\begin{minipage}{.475\textwidth}
\centering
\includegraphics[width=\textwidth]{./Bilder/GerdaErgebnisse.png}
\caption{
Recent results from \gerda\ \PII.
The measured spectra in the range around \nuc{Ge}{76}'s $Q_{\beta\beta}$ value are displayed separately for the detector type in which the event was measured.
\iffalse
Only one decay 2 sigma from the \onbb\ decay was found.
This leads to the conclusion that no \onbb\ decay was measured and a new lower limit of \thalfzero\ = $0.8\times10^{26} \unit{yr}$ (90$\%$ CL) was determined.
\fi
Taken from \cite{zsigmond_new_2018}.}
\label{fig:gerdaErgebnisse}
\end{minipage}
\end{figure}
LAr is a good coolant due to its low boiling point, also because it corresponds to the operating temperature of the HPGe detectors.
In \gerda, it is at about 90 K.
LAr can also be produces with a very high purity by air separation and further distillation.
It also has good shielding capabilities of radioactive background.
It is therefore fitting to be used in \gerda\ as coolant and ultra pure shielding material \cite{agostini_background_2017}.
Compared to other noble gases, argon also has the advantage of a rather low price being easily obtained by liquefaction of air from the atmosphere \cite{olsen_improvements_nodate}.
\\
LAr has the property that scintillation light is produced when radiation excites or ionizes atoms in the material.
The excited atoms in noble liquids form dimer pairs (Ar$^*_2$).
These dimer pairs are metastable and relax with the release of a vacuum ultraviolet photon (VUV) which has a wavelength of 128 nm \cite{olsen_improvements_nodate}.
\\
Background events often deposit energy in the argon while passing through it.
Their scintillation light around the detectors can therefore be used as a veto to reject those events.
The LAr veto system consists of a cylindrical copper shell around the germanium detectors and is equipped with 16 photomultiplier tubes (PMT), situated at the bottom and at the top of this volume.
Also, at the level of the detectors the shell is not made of copper but of wavelength shifting fibers.
These are read out by 90 silicon photomultipliers (SiPM) (see Figure \ref{fig:LArVetoSetup}).
VUV has a wavelength which is so small most material absorbs it in ionization.
This is why wavelength shifting material covers the surface of the LAr veto shifting from 128nm to about 400nm \cite{csathy_optical_2016}.
\\
\begin{figure}[t!]
\centering
\includegraphics[width=\textwidth]{./Bilder/TierStructure.png}
\caption{
The multi-tier structure used by GELATIO.
Tier0 and Tier1 contain the entire raw data with the difference that Tier1 already stores the data in a root structure.
Tier2, Tier3 and Tier4 contain the resulting data of the successive analysis steps.
Taken from \cite{agostini_gelatio:_2011}.
}
\label{fig:TierStructure}
\end{figure}
\subsection{Data Processing and Analysis}
\label{sec:DataProc}
As already mentioned, in the case of an event the digitized signals of the germanium detectors and the LAr channels are stored for further off-line analysis.
The software used for the analysis is Gerda LAyouT for Input/Output (GELATIO) being an analysis framework specialized for this task.
An advantage of it lies in its multiple level data organization as seen in Figure \ref{fig:TierStructure}.
Tier0 and Tier1 store the raw data measured by the detectors, while all higher tiers contain the resulting data of the successive analysis steps.
Additional information about the analysis process can be found in \cite{agostini_gelatio:_2011} and \cite{agostini_off-line_2011}.
In this thesis only data from Tier3 and Tier4 are used.
\\
To ensure an unbiased approach to the analyzing process, all events measured in a 50 keV interval around $Q_{\beta\beta}$ were only stored without any analysis applied on them.
Only after all parameters were finally defined all events are processed.
Such a procedure is called a blinding process.
\\
% Mui, Mountain, Pulse shape disc.
% especially LAr-Veto
\subsection{Recent Results}
\begin{figure}
\centering
\includegraphics[width=\textwidth]{./Bilder/Kr85Decay.png}
\caption{
The decay scheme of \Kr.
\iffalse
It decays via two different channels.
The majority of transitions end in the ground state of \nuc{Rb}{85} while 0.434$\%$ of the time \Kr\ decays into an excited state being 514 keV over the ground state.
The excited state has a half-life of 1.015$\mu$s. It
then relaxes directly into the ground state.
\fi
Taken from \cite{noauthor_decay_nodate}.
}
\label{fig:Decay}
\end{figure}
Only recently, new data was published by \gerda.
Only one event in the proximity of the Q-value was found as shown in Figure \ref{fig:gerdaErgebnisse}, however, it is more than 2 sigma from the expected \onbb\ peak position.
The conclusion was therefore that no evidence for a \onbb\ decay has been seen.
A new median sensitivity for setting the lower limit was determined to be $1.1\times10^{26} \unit{yr}$ (90$\%$ CL) \cite{zsigmond_new_2018}.
Currently \gerda\ receives an upgrade and is planned to measure until 2020.
After that, the successor experiment LEGEND is planned to further investigate the \onbb\ decay in\nuc{Ge}{76}.
% what has happened so far
% short outline of approaches
\section{\Kr\ Isotope in the Atmosphere}
\label{sec:Kry85}
\Kr\ has a mass number of A = 85 and an atomic number of Z = 36.
This isotope is not stable and decays via a $\beta^-$-decay into \nuc{Rb}{85}.
The half-life of this decay is 10.756~yr and has a Q-value of $Q_\beta = 687 ~\unit{keV}$.
\Kr's $\beta$-decay has two different probable transitions (see Figure \ref{fig:Decay}).
With overwhelming 99.563$\%$, the \Kr\ decay directly populates the ground state of \nuc{Rb}{85}.
In 0.434$\%$, however, it decays via an excited state of \nuc{Rb}{85} 514 keV above the ground state.
This excited state has a half-life of 1.015 $\unit{\mu s}$ and relaxes into the ground state while emitting a photon carrying the energy difference \cite{singh_nuclear_2014}.
\\
\begin{figure}[t!]
\centering
\ifmakefigures%
\includegraphics[width=80mm]{./Bilder/Kr85Aenderung.png}
\fi%
\caption{
\Kr's specific activity in the atmosphere between 1945 to 2009.
Over this period the average specific activity in the atmosphere has increased due to man-made nuclear fission in reactors.
Taken from \cite{ahlswede_update_2013}.
}
\label{fig:Kr85Aenderung}
\end{figure}
The argon used in \gerda\ \PII\ was extracted from the atmosphere.
By separating argon from the other components of the air, it can easily be made very radioactively pure.
Nevertheless, a very small portion of alien elements like krypton can still be present in the extracted argon and therefore also \Kr.
\\
When investigating on how \Kr\ got into the atmosphere, two different sources on earth can be identified.
On the one hand side, it can be created naturally in the atmosphere by an interaction of \nuc{Kr}{84} with cosmic rays.
On the other hand, the production of man-made \Kr\ from nuclear fission of \nuc{U}{235} and \nuc{Pu}{239} generates an atmospheric inventory which is about four orders of magnitude higher.
Natural production in the earth's crust is only marginal \cite{winger_new_2005}.
Krypton is a noble gas and therefore easily diffuses through everything in its way.
It rises until it reaches the atmosphere where a \Kr\ reserve is built over time.
Due to the higher amount of nuclear power plants built in the last half century, the\Kr\ activity in the atmosphere has risen to about 5500 PBq in 2009 \cite{ahlswede_update_2013} (see Figure \ref{fig:Kr85Aenderung}) .
\\
Two other experiments also using LAr are the WARP and the Darkside experiment.
In both experiments the specific activity of residual \Kr\ in the LAr was determined.
The Darkside experiment, using underground argon (UAr), has measured a specific activity of \((2.86\pm0.18) \ \unit{mBq}/\unit{l}\) \cite{agnes_results_2016}.
This UAr has been extracted from underground reservoirs and should only have come into contact with \Kr\ from natural processes.
In the LAr of the WARP experiment, a specific \Kr\ activity of \((160\pm130) \ \unit{mBq}/\unit{l}\) was measured \cite{benetti_measurement_2006}.
Th WARP experiment uses atmospheric argon which could be the reason why it has a higher specific activity compared to Darkside.
The aim of this thesis is to determine the specific \Kr\ activity in the LAr of \gerda\ \PII.
% where does it come from?
% what properties does it have?
% why is it important to calculate its influence on \gerda\
\chapter{Line Count Rate Analysis}
\label{sec:SAfrom514}
This method to determine the specific \Kr\ activity in \gerda\ \PII\ uses the 514~keV line count rate of the \Kr\ decay.
As discussed in Section \ref{sec:Kry85}, \Kr\ has a small probability of $p=0.434\%$ to decay into an excited state of \nuc{Rb}{85m}.
When \nuc{Rb}{85m} relaxes into its ground state, it emits a photon of 514 keV energy.
The counts $N_{\mathrm{peak}}$ in the 514 keV line in the \gerda\ spectra would therefore allow to draw a conclusion concerning the amount of \Kr\ in the LAr, as will be discussed in Sections \ref{sec:prep} to \ref{sec:Fitting}.
\\
A factor necessary for the calculation is the efficiency of the germanium detector used to detect these 514 keV gamma.
For this, a Monte Carlo simulation is needed in which $N_{\mathrm{sim}}$ gammas with an energy of 514 keV in a volume $V_{\mathrm{sim}}$ are simulated.
The detector efficiency for 514 keV gammas can then be calculated from dividing the simulated line count at 514 keV by the total number of decays ($\epsilon = \Delta N/N_{\mathrm{sim}}$).
The value $1/p \epsilon V_{\mathrm{sim}}$, using the detector efficiency, the simulated volume and the probability $p$ is a conversion factor from a measured line count to the density of decays necessary to create this signal and will be calculated in Section \ref{sec:MonteCarlo514}.
\\
The final value needed is the mean measuring time $\bar{t}$.
Not every detector was operational over the course of Phase II.
This is why an average measuring time for all detectors will be calculated in Section \ref{sec:CalcActiv}.
With these three values, a mean specific activity $\bar{a}$ as will be shown in Section \ref{sec:res}.
\begin{equation}
\bar{a} = N_{\mathrm{peak}} \times \frac{1}{p \epsilon V_{\mathrm{sim}}} \times \frac{1}{\bar{t}}
\label{equ:activityDieErste}
\end{equation}
The line count rate analysis is expected to generate a relatively precise estimation of the specific activity.
This is due to the 514 keV line being a clear feature which can only be traced back to \Kr.
\\
\iffalse
However, a problem of this method lies with the proximity of the \Kr\ to the 511keV peak of the positron electron annihilation.
Its peak in the energy spectrum is expected to partially dominate over \Kr\ and does not allow for a direct measurement of the 514keV peak.
This is not necessarily a great setback because one can just adapt the fit function to a double Gaussian peak function.
It is of interest, however, whether it is possible to completely suppers the annihilation peak without changing the 514keV photon line count.
For this one could consider using the LAr veto.
Due to the low mean energy of the escaping electron (47.65keV) of this decay, it is very unlikely that it creates any scintillating light.
On the other hand one can expect the light of the positron electron annihilation to create a great signal in the photomultipliers.
Therefore it should be possible with the LAr veto to single out the 514keV photon events from the annihilation events.
If possible its value can be used as a cross-check for the value determined from the not filtered spectrum.
The rest of the chapter will cover the concrete implementation of the individual steps in their own sections.
\\
\fi
\section{Preparing the Spectra}
\label{sec:prep}
The data used in this analysis is the fully available \gerda\ \PII\ data (runs~53~to~92).
The standard \gerda\ analysis cuts where applied.
This includes data quality cuts, the Muon veto cut and the anti-coincidence cut between germanium detectors.
\\
The data was also split for the two detector types in \gerda.
This is necessary due to the differences in detector efficiency and resolution already mentioned in Section \ref{sec:ExSetup}.
BEGes have a lower efficiency to detect full 514 keV gammas but show a higher energy resolution ($\sigma_{\mathrm{BEGe}} = 0.96~\unit{keV} @ 514 ~\unit{keV}$) and vice versa for the COAX detectors ($\sigma_{\mathrm{COAX}} = 1.16~\unit{keV} @ 514 ~\unit{keV}$) \cite{agostini_background_2017}.
The exposure of all BEGe detectors over the entire period of \PII\ is 30.8 kg$\cdot$yr and 28.1 kg$\cdot$yr for the COAX detectors, calculated in Section \ref{sec:CalcActiv}.
\\ %$\sigma_{\mathrm{BEGe}} = 0.96 \ \unit{keV}$ for the BEGe detectors and $\sigma_{\mathrm{COAX}} = 1.16 \ \unit{keV}$
\begin{figure}[t!]
\centering
\begin{subfigure}{.475\textwidth}
\centering
\includegraphics[width=75mm]{./Bilder/500525NoFilterBEGes.pdf}
\caption{BEGe}
\label{fig:NoFilterBEGes}
\end{subfigure}\hfill%
\begin{subfigure}{.475\textwidth}
\centering
\includegraphics[width=75mm]{./Bilder/500525NoFilterCOAX.pdf}
\caption{COAX}
\label{fig:NoFilterCOAX}
\end{subfigure}
\caption{
Energy spectra after to standard \gerda\ analysis cuts between 500 and 525 keV, split by the respective detectors in which the signal was measured.
Two deviations from the background level can be seen in both Figure at 511 keV and 514 keV.
}
\end{figure}
Figures \ref{fig:NoFilterBEGes} and \ref{fig:NoFilterCOAX} show the two resulting spectra for each detector between 500 and 525 keV.
Structures deviating from the background level can be identified at 511 keV and 514 keV.
The 511 keV deviation originates from gammas generated in positron electron annihilation events, while the 514 keV line was most likely caused by gammas created in the relaxation of \nuc{Rb}{85m} in the \Kr\ decay via this excited state.
If one examines these figures, one can already make the statement that there must be a not insignificant amount of \Kr\ in the LAr as otherwise no deviation should be visible.
\\
\iffalse
After the adjusting the spectra to a lower background level, one can now determine more precisely the number of measured events in the 514keV peaks of the corresponding detectors (see Figure \ref{fig:NoFilterBEGes} for the BEGe and \ref{fig:NoFilterCOAX} for the spectra of the COAX detectors).
In these two spectra one can see two peaks - one at 511keV that corresponds to the positron electron annihilation events and one at 514keV that corresponds to the photons from the relaxation of \nuc{Rb}{85m}.
From this we can already claim that there must be a non negligible amount of \Kr\ in the liquid argon.
Otherwise no peak should have been able to be measured.
The difference in resolution as discussed above can be seen in the fact that in the BEGe diagram the two peaks have a smaller full width at half maximum (FWHM).
Compared to the COAX detectors their peaks can easily be distinguished.
\fi
\iffalse
Another possible approach suppress the annihilation peak using an almost ideal filter and fit the resulting one peak spectrum with the original fit function.
As mentioned above the LAr Veto should be a good candidate for such a filter.
In this thesis both approaches will be applied separately and later their results compared.
Hopefully both will end up delivering the same result as no \Kr\ caused event should make a notable light signal.
But this probability is not zero which is why some events of the 514keV peak might also trigger the veto.
This would result in a smaller peak amplitude and with it a lower specific activity than the actual value.
Whether or not a rejection process using the LAr veto would be useful in this analysis or not is the topic of the following section.
\\
\fi
\section{Annihilation Peak Suppression}
\label{sec:APS}
\begin{figure}[t!]
\centering
\begin{subfigure}{0.475\textwidth}
\includegraphics[width=75mm]{./Bilder/500525LArVetoBEGes.pdf}
\caption{BEGe}
\label{fig:LArBEGes}
\end{subfigure}\hfill%
\begin{subfigure}{0.475\textwidth}
\includegraphics[width=75mm]{./Bilder/500525LArVetoCOAX.pdf}
\caption{COAX}
\label{fig:LArCOAX}
\end{subfigure}
\caption{
Energy spectra after standard \gerda\ analysis cuts and LAr veto between 500 to 525 keV.
The LAr veto made the 511 keV deviation almost completely disappear while the 514 keV deviation is still clearly visible.
}
\end{figure}
Due to the occurrence of the 511 keV peak, two different approaches are possible.
One approach would directly apply a double Gaussian peak fit function to the spectra also fitting the 511 keV peak.
Another approach would try to suppress the 511 keV peak and fit a single peak function through the resulting spectra.
Both approaches will be applied in this thesis.
\\
A promising candidate in order to suppress the peak, is the LAr veto.
It is triggered in the case an event in the germanium detectors coincides with a scintillation signal of at least ~0.5 phe \cite{agostini_background_2017}.
The \Kr\ decay into the excited \nuc{Rb}{85m} leaves the escaping electron with a maximum of 173 keV which should only create a very weak scintillation light signal.
Any process involving positron annihilation, however, should create a measurable scintillation light signal visible to the LAr veto setup.
Therefore, the LAr veto should be able to discriminate between \Kr\ gamma events and positron annihilating events.
\\
Figures \ref{fig:LArBEGes} and \ref{fig:LArCOAX} show the energy spectra after the LAr veto.
One can see that the annihilation peak is reduced compared to the spectra before the LAr veto.
\\
\begin{figure}[t!]
\centering
\begin{subfigure}{.5\textwidth}
\includegraphics[width=75mm]{./Bilder/AntiLArBEGe.pdf}
\caption{BEGe}
\label{fig:AntiLArBEGes}
\end{subfigure}\hfill%
\begin{subfigure}{.5\textwidth}
\includegraphics[width=75mm]{./Bilder/AntiLArCOAX.pdf}
\caption{COAX}
\label{fig:AntiLArCOAX}
\end{subfigure}
\\
\vspace{0.5cm}
\caption{
Energy spectra showing all events previously rejected by the LAr veto between 500 to 525 keV.
The majority of rejected events lie around the 511 keV mark while also a small deviation around the 514 keV mark can be seen.
}
\end{figure}
In order to have a better visualization which events have been rejected, all events that triggered the LAr veto are plotted in Figures \ref{fig:AntiLArBEGes} and \ref{fig:AntiLArCOAX}.
One can see that the majority of the filtered events had an energy around 511 keV.
\\
Another way to possibly single out the \Kr\ decay caused events would be to look for pre-coincidence events in the LAr setup.
As the excited \nuc{Rb}{85} nuclei has a half-life of 1.015 $\unit{\mu}$s, the scintillation light created by the released beta electron is very probable to be measured before the standard veto time frame looking for a coincidental light signal.
It should therefore be possible to distinguish \Kr\ decays from other events if one is able to find these incidents.
\\
\begin{figure}[t!]
\centering
\ifmakefigures%
\includegraphics[width=100mm]{./Bilder/Beispiel.pdf}
\fi%
\caption{
The raw signal of photomultiplier tube P4 in event 1614036.
The red line shows the lower time window limit for the LAr veto.
The pulse which has occurred before the time limit, is probably a pre-coincidence event of a \Kr\ decay via the excited \nuc{Rb}{85m} state.
}
\label{fig:BeispielSignal}
\vspace{5mm}
\end{figure}
An investigation to find out whether the pre-coincidence signals are usable was applied by plotting all raw measured LAr veto signals of events with an energy around the 514 keV peak and by manually search for any pre-coincidences.
The expected signatures consist of a single peak in the PMTs (for example as seen in Figure \ref{fig:BeispielSignal}) or a rising edge in the SiPMs respectively.
However, this investigation showed that almost none of the events considered had any kind of indication for pre-coincidences.
This excludes the presented approach as being a useful \Kr\ indicator.