-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbody.tex
1687 lines (1451 loc) · 110 KB
/
body.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
\begin{document}
% 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 neutrino less double beta decay in \nuc{Ge}{76}.
Because it is well known that the half life of a \onbb decay would be greater than 10$^{26}$yr, a lot of background suppression has to be applied.
The liquid argon in which the detectors are located acts as coolant, shielding and as an active veto due to its scintillation capability.
A residual radioactive isotope in the liquid argon creating measurable background in the detectors is \nuc{Kr}{85}.
The aim of this thesis is the determination of its concentration.
Two different and independent approaches will be applied to measure this value.
The second method, which uses the change in the count rate over time and was only intended as a cross check, finally failed due to falsely made assumptions.
The first method however, using a line count rate, determined \nuc{Kr}{85}'s specific activity to be $0.508\frac{\unit{mBq}}{\unit{l}}$.
\begin{otherlanguage}{ngerman}
\chapter*{Zusammenfassung}
The GERmanium Detector Array (GERDA) experiment tries to find evidence for the neutrino less double beta decay in \nuc{Ge}{76}.
Because it is well known, that the half life of a \onbb decay would be greater than 10$^{26}$yr a lot of background suppression has to be applied.
The liquid argon in which the detectors are located acts as coolant, shielding and as an active veto due to its scintillation capability.
A residual radioactive isotope in the liquid argon creating measurable background in the detectors is \nuc{Kr}{85}.
The aim of this thesis is the determination of its concentration.
Two different and independent approaches will be applied to measure this value.
The second method, which uses the change in the count rate over time and was only intended as a cross check, finally failed due to falsely made assumptions.
The first method however, using a line count rate, determined \nuc{Kr}{85}'s specific activity to be $0.508\frac{\unit{mBq}}{\unit{l}}$.
\end{otherlanguage}
\chapter{Introduction}
\label{sec:intro}
The GERmanium Detector Array (GERDA) experiment tries to find evidence for the existence of the neutrino less double beta (\onbb) decay in \nuc{Ge}{76}.
The normal double beta (\twonu) decay has been observed in several isotopes where single beta decay is forbidden.
\onbb decay will only occur when neutrinos are Majorana particles.
Majorana particles have the characteristic that they are particle and antiparticle at the same time, breaking the lepton number conservation.
In the case of a \onbb decay, an exchange between the Majorana neutrinos would occur and the excess energy would be split
Their energy can then be measured in a detector where they create a sharp peak at the endpoint energy of the regular double beta decay.
\\
Because it is expected that the neutrinoless double beta decay has a very long lifetime it is very important to filter out every source of background radiation as good as possible.
Therefor it is necessary to use a low temperature coolant to freeze the \nuc{Ge}{76} detectors down, to shield the detectors from external radioactive sources and to use a scintillator around the detectors to filter out any radiation coming from the outside.
Due to the \Ge detectors also being the source of the double beta decay at the same time, all signal coming from the outside are therefore background events.
\\
Liquid argon is a fitting material for all of the three requirements listed above due to its low freezing point, !!!!! hier noch was zum Z value !!!!! and its ability to scintillate.
Commercial argon is extracted from the air by air liquefaction and therefor has residual foreign isotopes.
The majority of the impurity in the liquid argon can be removed by cryogenic distillation but even the remaining alien isotopes are still very active.\\
One of these residual radioactive isotopes is \Kr.
Compared to \nuc{Ge}{76} it has a relatively low endpoint energy and therefor shouldn't create any fake neutrino less double beta decays.
It also isn't the strongest radioactive background source.
This title belongs to \nuc{Ar}{42}.
What is interesting about this isotope is the fact that first approximations of its concentration in the liquid argon showed that it is at least 10\(^{-3}\) times smaller than values measured in other experiments using liquid argon.
It is therefor of interest to determine a concrete value of its activity. % !!!!! hier die Abschätzung hin oder sich eine andere Begründung für meine Bachelorarbeit ausdenken !!!!!
\\
The aim of this theses is to determine the concentration of the \Kr in the liquid argon coolant and scintillator of the GERDA experiment and by this determining its influence to the radioactive background.
This is accomplished by two different approaches that are further elaborated on later. \\
!!!!! Das hier zwischen den !!!!! auskommentieren
The first method uses the relatively rare decay of \Kr into an excited state of \nuc{Rb}{85} with a probability of 0.43\%.
This excited state relaxes to its ground state by emitting a photon with 514keV of which there should be a noticeable peak in the spectrum.
The overall activity of the \Kr can than be determined with the peak in the spectrum.
\\
The second approach takes a look at the overall intensity reduction over time and determines the activity of the \Kr from the amplitude of the exponential decrease.
These two methods are supposed to complement each other showing the accuracy of the resulting concentration.\\
!!!!!
The first chapter of this thesis acts as an introduction.
It concentrates on the physical background of neutrinos and the 0νββ decay but also describes how it should be measurable.
Then, GERDA Phase II, how it works and what recent results have been published, will be described in more detail.
Finally, 85 Kr will be characterized more precisely and its possible transitions will be described.
In the second chapter, the main focus will be the line count rate analysis.
Firstly, a rough outline of the procedure is given.
After that, the implementation of the individual steps will be described and their results will be discussed.
At the end, a small comparison of the specific activities from other experiments using liquid argon will be performed.
The third chapter describes the implementation of the second method using the decrease in count rate.
Like the second chapter, it will provide a short outline of the procedure and describes the results of every step.
Later on, it will be found that the measured value is too big and error analysis will be performed finding 42 Ar and 42 K to be the ultimate failure of the second method.
% 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}
%what are Majorana neutrinos
\subsection{Neutrinoless Double Beta Decay}
\label{sec:0nubetabeta}
\paragraph{Double beta decay}
After it was explained what a beta decay is and how per beta decay one neutrino is emitted, the double beta decay (\twonu) will be explained.
The double beta decay describes the transition of two neutrons to two protons in the same core via beta decay happening at the same time.
The only allowed final state in the standard model of particle physics needs two electrons and two anti electron neutrinos to be created in the same process.
The resulting leading channel is therefor
\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}.
For such a specific decay to happen it is necessary the the initial state of the nuclei $(Z,A)$ is more bound than the transition state $(A,Z+1)$ and less bound than the final state $(A,Z+2)$.
This means that for the initial nuclei the single beta decay is energetically forbidden and the transition from the initial to the final state can only occur via a double beta decay.
\twonu decays have already been observed and a great amount materials have been found to decay via this transition.
The found half life of such decays have been found to be in the order of $10^{19}$ to $10^{21} \unit{yr}$ and therefor needed a lot of background to identify it over the background.
\\
\paragraph{Neutrinoless double beta decay}
\WarningsOff
\begin{figure}[t!]
\centering
\begin{subfigure}{.4\textwidth}
\centering
\label{fig:Feyn2nbb}
\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. The Neutrinos in this diagram are virtual Majorana particle.}
\label{fig:Feyn0nbb}
\end{subfigure}\hfill%
\begin{subfigure}{.4\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. Basically the sum of two single beta decays}
\end{subfigure}
\caption{Feynman-Diagrams of the $0\nu\beta\beta$- and the $2\nu\beta\beta$-decay}
\end{figure}
\WarningsOn
A second final state that is not part of the standard model actually does not need neutrinos to be emitted from the decay.
This special kind of transition is call the neutrinoless double beta decay (\onbb) and has not yet been observed.
However if it was to be found it would have profound consequences on modern physics because most notably this transition does not conserve the lepton number conservation due to two electrons being created solemnly as seen in the most likely leading channel
\begin{equation}
(A,Z)\rightarrow (A,Z+2) + 2e^-
\end{equation}with the diagram seen in figure \ref{fig:Feyn0nbb}.
This most likely channel is based on the idea that in the transition occurred an exchange between light Majorana neutrinos.
These Majorana neutrinos annihilate in the process and gave the residual energy to the escaping electrons.
There are also other interpretations on how the \onbb decay might work but the concept of light Majorana neutrino interaction requires the minimal extension to the standard model of the Majorana nature of the neutrinos and their non zero mass.
It has already been shown through the neutrino oscillation experiments.
\\
The flavor mixing shown by neutrino oscillaion requires the flavor eigenstates that couple to the W boson to be a superposition of mass eigenstates.
\begin{equation}
\ket{\nu_\alpha} = \sum_i U^*_{\alpha i} \ket{\nu_i}
\end{equation}
The resulting PMNS mixing matrix elements $U_{\alpha i}$ is defined by three mixing angles ($\Theta_{12}$,$\Theta_{13}$,$\Theta_{23}$) and three CP-violating phases ($\alpha$,$\beta$,$\delta$).
The phase $\delta$ is called the Dirac phase and is always present regardless whether the neutrino is a Majorana or Dirac fermion.
The phase $\alpha$ and $\beta$ however are called the Majorana phases and only have a physical meaning for Majorana neutrinos.
From neutrino oscillation however only the mass square differences $\Delta m^2_{ij} = m^2_i - m^2_j$ of the mass eigenstates, the mixing angles and the Dirac phase $\delta$ can be determined.
\\
In reality it is even worse, as so far only the absolute value of $\abs{\Delta m^2_{32}}$ could be determined.
Because the sign of this value is not known it leaves three different possible mass orders to considered: the normal hierarchie in which $m_1 \ll m_2 \ll m_3$, the inverted hierarchie in which $m_3 \ll m_1 < m_2$ and the quasi-degenerate hierarchy $m_1 \approx m_2 \approx m_3 \gg \sqrt{\Delta m^2_{32}}$ in which the mass eigenvalues are much larger than the mass differences.
In the case of an observation of a \onbb decay it would be possible to gather direct information about this mass orders, ut nothe mass scale and the Majorana p
\\
From the half life of the \onbb decay however one can not only determine an effective electron neutrino mass but through comparison with the results other approaches to measured the mass also the masses of the mass eigenstates and also the Majorana phases.
The effective neutrino mass of the \onbb decay is defined through a coherent sum of the individual masses times the complex amplitude $U_{ei}$ that is dependent of the Majorana phases (see equation \ref{mBetaBeta}).
\begin{equation}
\left\langle m_{\beta\beta}\right\rangle = \abs{\sum_i U_{ei}^2m_i }
\label{mBetaBeta}
\end{equation}This means in that this effective neutrino mass has a lower value than an incoherent mass sum because through the complex phases some parts of this value can interfere destructively.
Other attempts to measure the mass of the electron neutrino are measuring the energy of the beta released in a beta decay at the end of the spectrum to measure a shift of the spectrum due to a non zero neutrino mass.
A prominent experiment currently taking data is the KATRIN experiment and the absolute mass value these kind of experiments are sensitive to consists of a 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 unweighted sum of the neutrino masses $\Sigma$ can be measured:
\begin{equation}
\Sigma = \sum_i m_i
\end{equation}
From these three masses it is theoretically possible to determine the Majorana phases, the individual masses of the mass eigentstates and therefor also the mass order of the neutrinos.
\paragraph{How can a \onbb decay be measured?}
\begin{figure}[t!]
\centering
\begin{minipage}{.5\textwidth}
\centering
\includegraphics[width=\textwidth]{./Bilder/TheoretischesSpektrmdes0nubbDecay.png}
\caption{Taken from \cite{elliott_double_2002}}
\label{fig:TheoSpektrum}
\end{minipage}%
\begin{minipage}{.5\textwidth}
\centering
\includegraphics[width=\textwidth]{./Bilder/Aktivitaet.pdf}
\caption{specific activity of \Kr over time}
\label{fig:activity}
\end{minipage}
\end{figure}
Theoretically, the experimental signature of the \onbb decay is a peak in the distribution of the energy sum of the two electrons at the endpoint energy of the normal double beta decay (see figure \ref{fig:TheoSpektrum} ).
As mentioned before there have been only a hand full of elements found to even make the normal double beta decay any only some of those are actually useful for an experimental search of the special case of the \onbb decay.
A common experimental approach is to use 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, a lot of background suppression must be used just to measure the resulting influence.
There are three kind of background sources that have to be considered.
\\
Firstly, the background from natural radioactivity.
This is typically the dominant background source originating from radioactive isotopes which are naturally present in basically all materials.
Its influence can be suppressed by shielding the detectors using low radioactive material and selecting low radioactive components in the setup.
\\
The second strongest radiation source originates from cosmic background radiation.
A great amount of muons shower down to the earth from the atmosphere and create background in the detectors.
This however can be avoided by placing the experiment deep underground and applying a muon veto system.
This veto consists of a water tank around the experimental setup together with photomultipliers.
Those should theoretically detect any Cherenkov light created by the muons passing through the water tank.
Whenever an event is measured in the detectors together with Cherenkov light it can be expected that the event was caused by an outside source and can therefor be neglected.
\\
Lastly the third background source is caused by the \twonu decays of the investigated isotope itself.
Its impact on the background can not be reduced by extermal measures or shielding.
This can be avoided however by just using a material with a high Q-value due to their lower probability of decaying into an energy just under the Q-value.
\\
\paragraph{Germanium 76}
\nuc{Ge}{76} is an ideal material for the \onbb search due to it being a semiconductor and therefor also usable as the detector material itself.
It also has the advantage of having great intrinsic radio-purity, a low spectroscopic performance and a high detection efficiency.
It can also be operated at cryogenic temperatures allowing for reduction of thermal background.
A disadvantage is however the 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 also is a great challenges to increase the target value in comparison with other \twonu decaying materials like \nuc{Xe}{136}.
\\
However, the advantages prevail, because \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 neutrino less 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 approx. 1.4 km below ground, which corresponds to a water equivalent of 3.5km.
As already mentioned in the previous chapter the GERDA experiment uses \nuc{Ge}{76} as \onbb decay material as well as the detector material \cite{agostini_background_2017}.
\\
The detectors are operated in a liquid argon (LAr) tank of 64m$^3$ volume at an working temperature of about 90K.
The argon being used was obtained from the atmosphere by air liquefaction and has been purified as good as possible from radioactive isotopes by further distillation.
Its main purpose is to cool the germanium detectors to low temperatures in order to suppress thermal background and to shield against external radiation originating from the walls and the outside.
Since \PII~ there are also photomultipliers positioned inside the LAr tank.
Due to the scintillation property of argon they detect a light signal every time a charged particle travels through the liquid argon with high velocity.
Because the \onbb decays are not likely to create any scintillation light the photomultiplier signals can be used as a veto to filter out background.
\\
Situated around the liquid argon is a 590m$^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 as described above.
Over the water tank is a clean room situated in which the detector strings can be assembled into the strings and .
The general setup can be seen in figure \ref{fig:GERDASetupPII}.
\\
Now to the detectors themselves.
As described above, GERDA \PII~ uses the seven coaxial detectors (COAX) that have already been used in the HdM and the IGEX experiment as well as 30 new broad energy germanium detectors (BEGe).
Both of these detector types are made of germanium that has been enriched from 7.8$\%$ of \nuc{Ge}{76} to about 87$\%$ \cite{agostini_background_2017}.
They also share the same basic functionality.
The major volume of both detectors are made of p doped germanium.
Both detectors have the majority of their surface covered by a 1-2mm thick n$^+$ doped electrode and only a small part with an p$^+$ electrode.
If an electron hole pair is created in the p doped area, the charged particles are separated and guided to the n$^+$ or the p$^+$ layer respectively by a strong electrostatic field of about 3 to 4 kV.
It 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 therefor create no measurable signal.
The n$^+$ layer is therefor not not active and the area called a dead layer.
\\
The two detectors however differ in their design.
COAX detectors have a cavity coaxial to the cylindrical detector and are doped p$^+$ in the cavity's surface.
The BEGe detectors don't have a cavity but only have a small p$^+$ doped surface at the bottom.
Their design can be seen in figure \ref{fig:DetcDes}.
The detector types also differ in their mass and therefor their expected exposure per detector and energy resolution.
The COAX detectors are generally heavier then the BEGe but have therefor also a worse energy resolution.
To compensate the fact that the BEGe detectors are generally lighter than the COAX a great amount of them are being used.
\\
\begin{figure}[t!]
\centering
\begin{minipage}{.5\textwidth}
\centering
\includegraphics[height=60mm]{./Bilder/GERDAsetupPhaseII.png}
\caption{Taken from \cite{collaboration_upgrade_2018}}
\label{fig:GERDASetupPII}
\end{minipage}%
\begin{minipage}{.5\textwidth}
\centering
\includegraphics[height=60mm]{./Bilder/DetectorDesign.png}
\caption{Taken from \cite{agostini_background_2014}}
\label{fig:DetcDes}
\end{minipage}
\end{figure}
All the enriched detectors are assembled into 6 strings forming a hexagonal array together with a seventh extra string.
This seventh string consists of three coaxial detector made of natural isotopic \nuc{Ge}{76}.
The string setup can be seen in figure \ref{fig:strings} and \ref{fig:stringsabove}.
\\
All detectors are connected to custom made amplifiers also located in the liquid argon above the detectors.
The analog signal of every detector is then digitized at a sampling rate of 100MHz and in the case of an event stored for further analysis \cite{riboldi_cryogenic_2015}.
\\
\begin{figure}[t!]
\centering
\begin{subfigure}{.66\textwidth}
\centering
\includegraphics[width=.9\textwidth]{./Bilder/strings.png}
\caption{}
\label{fig:strings}
\end{subfigure}%
\begin{subfigure}{.30\textwidth}
\centering
\includegraphics[width=.9\textwidth]{./Bilder/strings-top.png}
\caption{}
\label{fig:stringsabove}
\end{subfigure}
\end{figure}
% well, just dump everything here
% also a bit about Tier1-4 storage of data
The detectors are surrounded by a nylon cylinder to limit the amount of LAr volume around the detectors.
This is in place to passively suppresses the background created from \nuc{K}{42}.
Where the \nuc{K}{42} comes from and why its influence on the background can be repressed by this will be discussed later in section \ref{Discussion}.\\
\subsection{Liquid Argon as Coolant, Shielding and Scintillator}
\label{sec:LArcoolant}
These nylon in the cylinder can be read out at their ends with silicon photomultipliers (SiPM) and are part of the LAr veto setup that will be the topic of this section.
But first a few words about the LAr itself.
\\
LAr has the property that scintillation light is produced when ionizing radiation interacts with an electron or nuclei within it \cite{olsen_improvements_nodate}.
Incoming radiation may excite or ionize the scintillation material along its way or might have a collision with another particle which in might return ionize other particles secondarily.
The excited atoms in a nobel liquids form dimer pairs.
These are metastable and recombine into two stable argon atoms by the release of a vacuum ultraviolet photon (VUV).
Depending on whether the argon atom was ionized or only excited two different mechanisms are responsible for the relaxation.
But in the end each ionized or excited atom only produces one VUV photon.
Nobel liquids also have the advantage that VUV light does not have enough energy to excite a ground state atom which is why the scintillation light can travel very long distances without being absorbed.
Compared to other nobel gases argon has the advantage of a very low price due to it being easily obtained by liquefaction of air from the atmosphere.
Overall a scintillation yield for argon of about $4\times10^4\frac{\unit{photons}}{\unit{MeV}}$ can be reached \cite{olsen_improvements_nodate}.
\\
\begin{figure}[t!]
\centering
\begin{minipage}{.5\textwidth}
\centering
\includegraphics[height=60mm]{./Bilder/LArVetoSetup.png}
\caption{Taken from \cite{collaboration_upgrade_2018}}
\label{fig:LArVetoSetup}
\end{minipage}%
\begin{minipage}{.5\textwidth}
\centering
\includegraphics[height=60mm]{./Bilder/strings-top.png}
\caption{}
\label{fig:stringsabove}
\end{minipage}
\end{figure}
Background events often deposit energy in the argon while passing through it.
The scintillation light can therefor be used as a veto to filter out those events in which a coincidence between an event in the germanium detectors and a signal in a photomultiplier was measured.
That is why smaller cylindrical volume around the germanium detectors is equipped with 16 photomultiplier tubes (PMT) that are situated at the bottom and at the top of this volume as well as 90 SiPM that read out any light signal travailing through the nylon strings at the side of the volume \cite{csathy_optical_2016}.
All signals measured in the photomultipliers are digitized and read-out in the case of an event in the germanium detectors.
The complete LAr veto setup can be seen in figure \ref{fig:LArVetoSetup}
\\
Additionally, a wavelength shifter covers all nylon fibers and PMTs.
This shifter changes the wavelength of the LAr scintillation light from 128mn to 400nm.
At this wavelength the PMTs have their highest quantum efficiency as well as the nylon fibers their absorption maximum.
With this the overall detection is being increase.
\\
But liquid argon is also a good coolant due to the characteristically low melting point of nobel gases.
At normal pressure argo has its boiling point at 87.29K and its melting point 83.8K.
The working temperature of GERDA is therefor chosen to be in between these temperature limits.
A low termeratur is needed because every electron hole pair created in the detectors by thermal excitement creates background.
\\
Nobel liquids are also great as ultra radio-pure passive shielding.
This is because nobel elements rarely make any chemical bonds due to their fully filled electron shells.
It is therefor possible to filter the majority of impurity just by distillation.
\\
\subsection{Background Reduction}
\label{sec:BGReduction}
% Mui, Mountain, Pulse shape disc.
% especially LAr-Veto
\subsection{Recent Results}
\label{sec:ResultsofGERDA}
% what has happened so far
% short outline of approaches
\section{\Kr isotope}
\label{sec:Kry85}
% 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}
As stated in the introduction, the main goal of this theses is to approximate the specific activity of the isotope \Kr in the liquid argon coolant, shielding and scintillate of the GERDA experiment.
This value is of interest, as in other experiments this alien isotope in the liquid argon has produced a not negligible background there.
Two examples will be used in this thesis: the WARP and the Darkside experiment.
Both of these experiments have set their aim to detect WIMPs (Weakly Interacting Massive Particles) which are likely candidates for dark matter.
These WIMPs should in the case of their existence theoretically create tiny recoils in ordinary matter by elastic scattering.
Nobel gases are well suited as a target material, which is why many of today's dark matter experiments use them.
Both WARP and Darkside use liquid argon as their target material.
Due to the small expected interaction cross section of the WIMPs the background sources have to be well known and in both of these experiments a value for the specific activity of the residual \Kr has been determined.
In the case of the Darkside experiment a specific activity of \((2.86\pm0.18) \frac{\unit{mBq}}{\unit{l}}\) \cite{agnes_results_2016} was measured whereas a value of \((160\pm130)\frac{\unit{Bq}}{\unit{l}}\) was measured for the specific activity in the WARP experiment \cite{benetti_measurement_2006}.
In both cases the \Kr creates a non negligible background but of very different proportion.
It is therefor interest to determine the specific activity for the GERDA experiment to know how much of an impact \Kr has on the radioactive background.
%This corresponds to a concentration of about \((2.32\pm0.14)\times10^{-18}\frac{\unit{mol}}{\unit{l}}\) for the Darkside and \((1.30\pm1.05)\times10^{-16}\frac{\unit{mol}}{\unit{l}}\) for the WARP experiment.
\\
In the curse of this theses two different approaches are used to calculate the concentration of \Kr.
The first and more precise method is the line count rate analysis of the \Kr decay into an excited state of \nuc{Rb}{85m}.
It is also the topic of this chapter.
The second method discussed in the following chapter uses the reduction in count rate of measured events over time.
This method is less likely to create precise results due to it relying on a great approximation.
Because it is estimated that only \Kr's activity has a notable change over time whereas all other radioactive isotopes stay relatively constant.
It is therefor planned to only be a crosscheck for the result of the first method.
\\
Now to how exactly the line count rate analysis is able to determine a specific activity.
As discussed in section \ref{sec:Kry85} has \Kr the property, that it has the small probability of 0.43\% to decay into an excited state of \nuc{Rb}{85m}.
This state has a raised energy level of 514keV compared to its ground state and a half-life of 1.015\(\unit{\mu s}\).
Theoretically it should therefor be possible to measure a peak in the spectrum around the 514keV energy mark caused by the photons emitted from the relaxation of \nuc{Rb}{85m}.
In the spectrum around this peak one can then apply an Gaussian peak fit to determine the number of events measured in this area.
\\
It is also necessary to calculate the efficiency of the detectors to measure a photons with the energy of 514keV.
But this detector efficiency can't be calculated by just using the measured data.
It has to be determined using a Monte Carlo simulation creating a huge amount of 514 keV photons in a constant volume and counting the measured events in the detector.
The detector efficiency can then be calculated by dividing the measured events by the total number of simulated decays.
This value can then be used in a conversation factor to determine the amount of decays actually necessary to create the measured peak.
\\
The final value needed to calculate the specific activity is the measuring time.
Because not every detector was measuring over the course of Phase II a mean measuring time for each individual detectors has to be calculated.
Now finally with the values of the measured events, the conversion factor and the mean measuring time a mean specific activity can be determined.
\\
The line count rate analysis is expected to generate a relatively precise estimation of the specific activity.
This is because only the photons of the \Kr decays can cause the investigated change in spectrum.
In the case of the second method however every radioactive isotopes residual in experimental setup contributes to the change in count rate over time.
\\
However, the biggest problem of this method to overcome lies with the proximity of the \Kr to the 511keV peak of the positron electron annihilation.
Its peak is expected to partially dominate over the \Kr in the spectrum and does not allow for a direct measurement of the 514keV peak.
This is not necessarily a great setback because we can just adapt our fit function to a double Gaussian peak function and still get a relatively precise value.
But it is of interest whether it is possible to completely suppers the annihilation peak without changing the 514keV photon line.
Due to the low mean energy of the escaping electron (47.65keV) in the \Kr decay into the excited \nuc{Rb}{85m}, this specific decay is very unlikely to create any scintillating light in the liquid argon.
On the other hand one can expect the light of the positron electron annihilation to create a great signal in the photomultiplier that are positioned in the liquid argon tank.
It should therefor be possible to single out the 514keV photon events from the annihilation events by using their signals.
If possible this could be a second approach to determine the amplitude of the peak with just one Gaussian peak.
\\
From now on the concrete implementation of the method will be the topic of this chapter.
As it was stated above, to determine the amount of measured 514keV photons a fit has to be applied to the spectrum around the 514keV peak.
But before the measured spectrum can be used for our analysis we have to apply some filters.
These filters should filter out any event of which we can say with a high probability they were not caused by a \Kr decay.
Two very appropriate filters for this purpose are the Muon Veto and the detector anti-coincidence veto.
How exactly these two filters work will be discussed now.
\\
As it was elaborated in section \ref{sec:ExSetup} all GERDA data is stored in a multi-tier data structure.
All of the data used in this theses are from either tier 3 or from tier 4.
In these tiers a lot of analysis has already been carried out on the individual events measured.
Among other things, each event in tier 3 and 4 is given a flag whether or not a coincidence of the event with a signal in one of the photomultiplier in the water tank was detected.
This flag is called the Muon Veto and it always triggers whenever a is a strong light signal is measured together with a germanium detector event.
Due to the high kinetic energy needed to create any Cherenkov light in water no isotope from inside the germanium source and liquid argon should trigger this Muon Veto.
Especially no \Kr decay.
This veto can therefor be used to filter out high-energy particles from outside and the background they create.
\\
For a photon from the relaxation of \nuc{Rb}{85m} to create the distinct 514keV peak it is necessary to deposit all of its energy in only one of the detectors.
This means that any event in which two different germanium detectors measured non negligible energy depositions is most likely not caused by a \Kr decay.
This kind of filtering is called a detector anti-coincidence filter.
Whether an event has more than one detector measure a signal can be determined by the multiplicity counter of each event stored in tier 3 or 4.
Using this counter even more background of none \Kr decays can be suppressed.
\\
After applying the first few rather general filters on the measured events one has to also make a distinction in which detector the event was measured.
As it was elaborated in section \ref{sec:ExSetup}, two different types of detectors were used in the GERAD experiment - the BEGes (Broad Energy Germanium diods) and the COAX (coaxial diods).
Due to their differences in design and weigh the two types have a different energy resolution and detector efficiencies.
The BEGes are generally smaller and therefor have a higher energy resolution compared to the rather big COAX detectors.
For example, at an energy of 514keV the BEGes have a resolution of about 2.267keV while the COAX detectors are about 0.5keV higher at 272keV (see appendix \ref{sec:} ) \cite{agostini_background_2017}.
On the other hand, due to the BEGes being smaller they also have a lower detection efficiency.
It is therefor necessary to evaluate their measured data separately.
\\
Now that we have listed the steps necessary to adjust our measurement results so that we can determine the number of decays from we can finally plot the spectra of the corresponding detectors (see figure \ref{fig:NoFilterBEGes} for the BEGes and \ref{fig:NoFilterCOAX} for the spectra of the COAX detectors).
In these two spectra we can clearly see two distinct 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 the fact that we can see a distinct peak at the 514keV line we can already claim the fact 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 can be seen in the fact that in the BEGe diagram the two peaks have a smaller full width at half value.
Compared to the COAX detectors their peaks can easily be distinguished.
\\
\begin{figure}[t!]
\centering
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[width=75mm]{./Bilder/500525NoFilterBEGes.pdf}
\label{fig:NoFilterBEGes}
\caption{BEGes}
\end{subfigure}%
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[width=75mm]{./Bilder/500525NoFilterCOAX.pdf}
\caption{COAX}
\label{fig:NoFilterCOAX}
\end{subfigure}
\\
\vspace{0.5cm}
\caption{All events measured by the respective detectors in the range of 500keV to 525keV.}
\end{figure}
Now that we have the two spectra of the corresponding detectors, we have two possible ways of how we can determine the number of measured events around the 514keV peak.
The easier way is to just use the spectra as they are and only change the used fit function so that it also takes the second peak into account when fitting.
Another possible approach tries to suppress the annihilation peak and then fit the spectrum with only one Gaussian peak.
This can hopefully be done by using the liquid argon veto of GERDA and the precoincidence of the electron scintillation in the photomultipliers.
\\
In this theses we will try to go both ways separately and later compare their resulting values.
We will probably end up using the unsuppressed spectra to determine the amount of events measured and only use the other method as a crosscheck.
As we will see later this is because the used filter also filters out events from the 514keV line peak.
This results in a lower amount of events measured at this energy and therefore, in the end, gives us a lower activity than there is in actuality.
But to understand why this filter also filters out these false positives we have to discuss how this filter works first.
This will be the topic of the following section.
\\
\section{Annihilation Peak Suppression}
\label{sec:APS}
As mentioned above, it should be theoretically possible to filter out the majority of the positron electron annihilation events by using the scintillation property of the liquid argon.
In the case of the \Kr decay into the excited \nuc{Rb}{85m} the emitted electron has a very low mean kinetic energy of E\(_{mean}=47.65\)keV.
!!!!! hier die abgeschätzte Anzahl an Photonen angeben !!!!!
This means that in the majority of these decays no light should be seen in the detectors, because the low amount of photons are unlikely to trigger any of them.
In contrast to that you can expect a very strong light signal every time a positron electron annihilation occurs.
One should therefor be able to filter out almost all of the annihilation events while keeping the majority of the \Kr decay by only using events where this flag is not triggered.
This chapter tries to implement a filter that uses this mechanism and discusses in the end how successful the repression really was.
\\
Among other things, each event in tier 4 was given a flag called "isLArVetoed".
This flag is always triggered whenever an event in the Germanium detectors coincides with a scintillation signal of at least 0.5phe in one of the photomultipliers positioned in the liquid argon tank \cite{agostini_background_2017}.
If one plots all events in which this flag has not been set one gets figure \ref{fig:LArBEGes} for the BEGes and figure \ref{fig:LArCOAX} for the COAX detectors.
You can see that the positron electron annihilation peak can not be identified any longer while the 514keV peak seems almost unchanged.
\\
\begin{figure}[t!]
\centering
\begin{subfigure}{0.5\textwidth}
\includegraphics[width=75mm]{./Bilder/500525LArVetoBEGes.pdf}
\caption{BEGes}
\label{fig:LArBEGes}
\end{subfigure}%
\begin{subfigure}{0.5\textwidth}
\includegraphics[width=75mm]{./Bilder/500525LArVetoCOAX.pdf}
\caption{COAX}
\label{fig:LArCOAX}
\end{subfigure}
\\
\vspace{0.5cm}
\caption{All events measured by the respective detectors with the LAr filter applied in the range of 500keV to 525keV.}
\end{figure}
\begin{figure}[t!]
\centering
\begin{subfigure}{.5\textwidth}
\includegraphics[width=75mm]{./Bilder/AntiLArBEGe.pdf}
\caption{BEGes}
\label{fig:AntiLArBEGes}
\end{subfigure}%
\begin{subfigure}{.5\textwidth}
\includegraphics[width=75mm]{./Bilder/AntiLArCOAX.pdf}
\caption{COAX}
\label{fig:AntiLArCOAX}
\end{subfigure}
\\
\vspace{0.5cm}
\caption{All events measured by the respective detectors with the LAr filter applied in the range of 500keV to 525keV.}
\end{figure}
In comparison, when you take only those events in which the liquid argon veto was triggered you get figure \ref{fig:AntiLArBEGes} and \ref{fig:AntiLArCOAX}.
From those you can see that the majority of not background events that got filtered out have an energy around the 511keV.
But one can already see that there are also a small deviation from the background level around the 514keV marks.
This means that some of events caused by \Kr decays must have also triggered the liquid argon veto.
\\
It is therefor of interest to investigate how many of the \Kr decay caused events were filtered out by accident and whether it is possible to recover them.
The absolute number of events filtered out by the liquid argon veto in the energy range of 509 to 519 keV is 1728.
This number is way too big to look at every individual case.
\\
Luckily we can use the fact that the excited \nuc{Rb}{85m} state has a half life of 1.015 \(\unit{\mus}\).
This means that theoretically we should be able to measure a pre-coincedence event of the beta creating scintillation light which can then be measured before even a signal in the germanium detectors could be seen.
This way we can hopefully identify the majority of events created by \Kr decays from the rest of the filtered signals.
To do this, we have to limit the events used for our investigation to those events that have a negative time difference between these two events respective to the Germanium detector signal.
The time difference for each individual liquid argon events is already analyzed and stored in the vector $"$triggerLAr$"$ of the tier 3 data set.
This vector has the same number of dimensions as there are photomultipliers and every entry is indexed with the corresponding input channel of the respective photomultiplier.
The entries of this vector are again vectors themselves storing the time difference for every signal that triggered the liquid argon veto in the corresponding channel.
Since the events are listed in ascending order and we are interested in the first trigger event of the photomultiplier, we use only the first entry of this inner vector here for simplicity reasons.
From now on we only use events in which at least one photomultiplier measured a negative time difference.
\\
In addition, we also know that the energy of the released beta electron is relatively low.
This means that we can expect that only a small number of photomultipliers will measure a signal of a \Kr decay if any at all.
In the case of a measured signal we will only use those events that have a maximum of four different triggered photomultipliers.
Allowing events with a maximum of four different triggered photomultipliers is already a lot for a \Kr decay.
But we wanted to do a more detailed manually investigation later anyways which is why the filter can be a little coarser here.
\\
\begin{figure}[t!]
\centering
\ifmakefigures%
\includegraphics[width=100mm]{./Bilder/TriggerTimeOnly4.pdf}
\fi%
\label{fig:Trigger4}
\caption{
All liquid argon filtered events with a negative time difference between the event in the Germanium detector and a signal in the photomultipliers in the liquid argon tank.
}
\end{figure}
If you apply these two restrictions to the liquid argon filtered events and only take those photomuliplier signals with a signal strength of at least 0.5 phe you get a distributions as seen in figure \ref{fig:Trigger4}.
We are only interested in the signals that measured at least 0.5 phe because, as mentioned above, this is the necessary intensity to trigger the LAr veto making them the signals of interest.
The x axis is the time difference of the events in the photomultipliers from the signal measured in one of the Germanium detectors.
Theoretically it should now be possible to see a exponential increase from the negative scale towards a vanishing time difference.
But because of the small number of events however, it is almost impossible to make any statements about the course of these events.
\\
Nevertheless we were able to lower the number of potential 514keV photons from \Kr decay events from 1728 down to only 55.
These remaining events can now be manually examined with a software called GerLa written by GERDA employees.
This tool allows you to search for a specific event and see all recorded signals of the Germanium detectors and the photomultipliers around the time frame of this event.
\\
With this program one can now perform a manual filter by looking at the remaining 55 events individually and perform a specific procedure to determine whether they are signals from a \Kr decay or not.
This procedure consists of filtering out every event that has a combined light intensity of over 5 phe and every event that only has a negative time difference in a signal weaker than 0.5 phe.
The upper limit of the light intensity comes from the fact that the mean kinetic energy of the electron released from the decay is 47.65keV.
With an effective scintillation yield of the whole setup of about 60 phe/MeV one can expect about 2.5 photons from a mean beta electron.
It can then be assumed that the predominant part of all betas released in the investigated decay only emit 5 photons at best.
\\
\begin{figure}[t!]
\centering
\ifmakefigures%
\includegraphics[width=100mm]{./Bilder/BeispielSignal.pdf}
\fi%
\label{fig:Trigger4}
\caption{
The recorded signal of the photomultiplier tube P4 from the event with event number 1614036. !!!!!Hier noch was zu den Achsen!!!!!.
The blue bar represents the moment in time in which a signal in the Germanium detector was measured.
}
\end{figure}
At this point we realized that this procedure does not really work as well as we hoped it would.
From the remaining 55 only a few events really were unambiguous enough that one could claim that they are the photons we expected.
After this much filtering we can assume that probably all of these events are in fact caused by a \Kr decays.
Signals like the one shown in figure \ref{fig:Trigger4} are a rare example of an almost model signal that we wanted to see.
The great majority of other events were either background events in the SiPM that randomly triggered the LAr veto or their measured signal was too strong.
\\
With this it was now determined that the majority of events with a negative time difference are in fact not caused by a \Kr decay.
This means that the remaining \Kr decay events must have a positive time difference.
But it is practically impossible to recover them from there due to the great amount of individual events that have to be looked at.
Our recovery attempt has therefor failed.
\\
Nevertheless we are still able to make some qualitative estimations about why approach did not work.
The major problem seems to be that the majority of events detected with a negative time difference are background events.
This conclusion came from the fact that almost none of the events investigated have shown the expected features we expected from them.
That the majority of the negative time difference photomultiplier events seem to be background noise is also underlined by the fact that most of these were detected in the PMT.
As it will be seen in the next chapter, basically all of the decays that created a measurable 514keV event have happend in the vicinity of the detectors themselves an therefor mostly in between the arrays.
The detectors themselves should already block the light of the scintillation relativly strongly but when a photon is detected in a photomultiplier it would most likely be a SiPM.
This is because the fibers surrounding the germanium detectors are more likely to absorb and guide the scintillation light to the SiPM than a photon to reach a PMT above or below the detector arrays.
Now that the majority of the detected light events are measured in the PMTs it is very unlikely that these are caused by a \Kr decay.
This might also be able to be seen from figure \ref{fig:AntiLArBEGes} and \ref{fig:AntiLArCOAX}.
In those all filtered out events are shown over the measured energy.
From it we first saw that the liquid argon veto also filtered out the wanted 514keV events.
But from it we can also see, that the ratio of events filtered out at the 514keV mark over the non filtered value [$N_{\unit{vetoed}}(514\unit{keV})/N_{\unit{unfilered}}(514\unit{keV})]$ is about the same size as in a non peak area whereas the positron electron peak shows much higher ratio.
Considering this the peak probably came to be because the same relative amount of events have their liquid argon veto triggered because of background events.
It is therefor rather questionable whether the liquid argon veto is even a good filter to use when it also filters out events in which background can trigger the veto too.
A satisfactory answer however will only be available through a quantitative analysis which will be performed in the following chapter.
\\
\section{Fitting}
\label{sec:Fitting}
Our strategy to calculate the activity of \Kr through the 514keV peak involves determining the absolute amount of measured \Kr decays events over all of \PII.
Due to the still enormous amount of events from other sources that can not be suppressed, for example the \nuc{Ge}{76} decays, it is necessary to fit the 514keV peak with a suitable fit function.
The amount of measured \Kr decay events can then be calculated by integrating over the found fit function and dividing by the probability of the specific decay into \nuc{Rb}{85m}.
\\
The not liquid argon filtered spectrum \ref{fig:NoFilterBEGes} and \ref{fig:NoFilterCOAX} show two peaks.
This requires the fit function to include two Gaussian functions from which only the parameters of the second peak will then be analyzed.
Additionally to the two Gaussian peaks a constant and an exponential background function will be added.
When looking at the not liquid argon filtered spectra again we can see that over the course of the displayed interval no real change in count rate over energy can be seen (see figure \ref{fig:NoFilterBEGes} and \ref{fig:NoFilterCOAX}).
But theoretically we expect the distribution of the germanium events to behave like its phase-space function and therefor change with energy.
It is therefor necessary to also consider this change in count rate over energy in the fit function.
The phase-space function of \nuc{Ge}{76} is very complex however.
In this case however is the energy interval relatively small compared to the complete spectrum of \nuc{Ge}{76}.
This allows the approximation that its phase-space function changes like an exponential decrease due to the general form of the measured spectrum in this energy range.
The resulting fit function is shown in equation \ref{equ:FitNoFilters}.
\\
\begin{equation}
\mathrm{f}(x) = \mathrm{A}\frac{1}{\sqrt{2\pi}\mathrm{C}}\exp\left(-\frac{(x-\mathrm{B})^2}{2\mathrm{C}^2}\right) + \mathrm{D}\frac{1}{\sqrt{2\pi}\mathrm{F}}\exp\left(-\frac{(x-\mathrm{E})^2}{2\mathrm{F}^2}\right) + \mathrm{G}\exp\left(\mathrm{H}x\right) + \mathrm{I}
\label{equ:FitNoFilters}
\end{equation}
\\
In the course of the fitting process it has to be mentioned that some fitness parameters have only been left free for rather small interval.
Most notably the values C and F, being the variances of two Gaussian peaks, were each only left free on a very small range around the values derived from the resolutions of the detectors at their specific energies (see appendix section \ref{sec:ResDetermination}).
When you apply the fit function to the two different spectra of the two kinds of detectors you get the graphs displayed in figure \ref{fig:FitNoFilterBEGes} and \ref{fig:FitNoFilterCOAX}.
The resulting fit parameters are listed in table \ref{tab:FitParNoFilter}.
\\
\begin{figure}[t!]
\centering
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[width=75mm]{./Bilder/500525FitNoFilterBEGes.pdf}
\caption{BEGes}
\label{fig:FitNoFilterBEGes}
\end{subfigure}%
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[width=75mm]{./Bilder/500525FitNoFilterCOAX.pdf}
\caption{COAX}
\label{fig:FitNoFilterCOAX}
\end{subfigure}
\\
\vspace{0.5cm}
\caption{All events measured by the respective detectors in the range of 500keV to 525keV fitted with a fit function in the form seen in equation \ref{equ:FitNoFilters}. The green function represent the two Gaussian peaks independently using the determined fit parameters.}
\vspace{0.5cm}
\end{figure}
\\
\begin{figure}[t!]
\centering
\begin{tabular}{|c|c|c|}
\hline
Name & Value [BEGes] & Values [COAX]\\
\hline
A & (15.98 \(\pm\) 4.54 )& (31.93\(\pm\) 7.08) \\
\hline
B & (510.87 \(\pm\) 0.22 )& (510.88 \(\pm\) 0.190)\\
\hline
C & (0.952 \(\pm\) 0.011 ) & (1.165 \(\pm\) 0.010 ) \\
\hline
D & (36.66 \(\pm\) 4.99) & (30.40 \(\pm\) 5.24 ) \\
\hline
E & (513.95 \(\pm\) 0.16 ) & (513.87 \(\pm\) 0.14) \\
\hline
F & (0.953 \(\pm\) 0.014 ) & (1.145 \(\pm\) 0.012 ) \\
\hline
G & (11.98 \(\pm\) 5.27) & (11.35 \(\pm\) 7.45 ) \\
\hline
H & (189.92 \(\pm\) 110.05) & (996.72 \(\pm\) 972.62) \\
\hline
I & (-0.00580 \(\pm\) 0.00122) & (-0.00924 \(\pm\) 0.00183)\\
\hline
\end{tabular}
\label{tab:FitParNoFilter}
\captionof{table}[]{Fit parameters of fit function \ref{equ:FitNoFilters} applied on the spectra of the respective detectors.}
\end{figure}
\\
The only values of these fit parameters that is of real interest for the determination of the activity is variable D.
Its value is the amplitude of the second Gaussian peak.
Because the Gaussian peak was chosen in the normalized form this value also represents the amount of \Kr decays measured per binning of the histogram.
But we only want the amount of counts in the peak independently of the binning of the histogram.
We therefor have to multiply these values with $\frac{1}{0.2}\unit{keV}$.
Finally, we can conclude that in the BEGes an amount of !!!!! events was measured and in the COAX detectors a number !!!!! of events.
\\
From the fit parameter value H and I we can also see that as expected the change of the background over the inspected energy interval is neglactable.
Parameter I defines the change in energy and its value so small that the exponential function in the range that is investigated in has no real impact on the overall fit function.
But as mentioned before it would have been wrong to leave out the fit functions possibility to change over energy because otherwise it might have ruined our whole fitting process.
\\
After finding the fit parameter for the not liquid argon filtered spectrum we now go to the filtered spectrum.
As mentioned above we can assumed that the positron electron annihilation peak is fully suppressed.
Additionally in the ideal case, that the majority of all \Kr decay events got through the liquid argon filter, we expect the amplitude of the Gaussian peak to be similar to the amplitude in the not liquid argon filtered case.
Therefor only one Gaussian peak has to be fitted together with the background function.
The fit results in the function displayed in equation \ref{equ:FitFilters}.
\\
\begin{equation}
\mathrm{f}(x) = \mathrm{A}\frac{1}{\sqrt{2\pi}\mathrm{C}}\exp\left(-\frac{(x-\mathrm{B})^2}{2\mathrm{C}^2}\right) + \mathrm{D}\exp\left(\mathrm{E}x\right) + \mathrm{F}
\label{equ:FitFilters}
\end{equation}
\\
After applying the fit to the spectra seen in figure \ref to \ref, you get the fit parameters displayed in table \ref.
As above, the amplitude A of the Gaussian peak correspond to the number of events measured in the area of the peak per binning.
This results in an amount of !!!! for the BEGe and !!!!! for the COAX spectrum.
As mentioned above these values are only planned to be a crosscheck for the not argon filtered values.
Compared to those values, it can be seen that the number of events in the BEGe and in the COAX detectors has dropped considerably.
This means that some of the \Kr decay events must have been filtered out and a recovery of these falsely filtered \Kr decays is necessary.
But due to that not being possible we can not use those results in our analysis nor for a real crosscheck..
\\
\begin{figure}[t!]
\centering
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[width=75mm]{./Bilder/500525FitLArVetoBEGes.pdf}
\caption{BEGes}
\label{fig:FitLArVetoBEGes}
\end{subfigure}%
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[width=75mm]{./Bilder/500525FitLArVetoCOAX.pdf}
\caption{COAX}
\label{fig:FitLArVetoCOAX}
\end{subfigure}
\caption{All events measured by the respective detectors with the liquid argon veto applied in the range of 500keV to 525keV fitted with a fit function in the form seen in equation \ref{equ:FitFilters}.}
\end{figure}
\begin{figure}[t!]
\centering
\begin{tabular}{|l|r|r|r|r|}
\hline
Name & Value [BEGes] \\
\hline
A & (17.844639 \(\pm\) 3.179471)& (17.914476 \(\pm\) 2.683260) & (19.847330\(\pm\) 2.688415)& (18.851511 \(\pm\) 2.696000)\\
\hline