-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalpha-analysis-note.tex
More file actions
1034 lines (916 loc) · 40.2 KB
/
alpha-analysis-note.tex
File metadata and controls
1034 lines (916 loc) · 40.2 KB
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[a4paper,12pt]{article}
\usepackage{ifxetex}
\usepackage{amsmath,amssymb}
\ifxetex
\usepackage{fontspec}
\usepackage{polyglossia}
\else
\usepackage{graphicx} % eps support
\fi
\usepackage[margin=20mm]{geometry}
\usepackage[colorlinks=true]{hyperref}
\urlstyle{same}
\usepackage{wrapfig}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{authblk}
\usepackage{booktabs}
\usepackage{pstricks}
\usepackage{pstricks-add}
\usepackage[noabbrev,capitalize]{cleveref}
\newcommand\americium{${}^{241}$Am}
\newcommand\gadolinium{${}^{148}$Gd}
\newcommand\gainAm{$g_\text{Am}$}
\newcommand\gainGd{$g_\text{Gd}$}
\newcommand{\angstrom}{\mbox{\normalfont\AA}}
\title{The Study of the Silicon Detector Response for p-Carbon Polarization Measurements at RHIC}
\author[1]{D.~Kalinkin\thanks{dmitry.kalinkin@gmail.com}}
\author[2]{D.~Smirnov\thanks{d.s@plexoos.com}}
\affil[1]{Institute for Theoretical and Experimental Physics}
\affil[2]{Brookhaven National Laboratory}
\begin{document}
\maketitle
\begin{abstract}
At the Relativistic Heavy Ion Collider (RHIC) measurements of the proton beam
polarization are conducted by inserting an ultra thin carbon ribbon in the beam
and registering the scattered carbon ions with silicon detectors. The
polarization value reported by the proton-carbon polarimeters strongly depends
on the correct measurement of the energy deposited in the detectors by the
recoil products. In this note we present a study of the response of the silicon
detectors to $\alpha$-particles employed to calibrate the detectors.
\end{abstract}
\section{Motivation}
The RHIC polarimetry is based on the measurement of the recoil products from
elastic scattering of the proton beam on a fixed target in the Coulomb nuclear
interference (CNI) energy regime. In this study we focus on the four p-Carbon
polarimeters with ultra thin carbon targets which can be moved through
the beam. In the current setup the polarization of each proton beam can be
measured independently by two p-Carbon polarimeters installed in the ``yellow''
and ``blue'' accelerator rings.
During the 2013 run we observed significant changes in the gain in some of the
silicon detectors. This change of $\lesssim 20~\%$ is worrisome and may cause
significant systematic change in the reported polarization values due to a steep
slope in the $p$-Carbon analyzing power within the energy range of interest.
\section{Measurement and Results}
The detectors produced by the BNL instrumentation group have 12 one-millimeter
silicon strips operating under the nominal bias voltage of 110~V. The detector
gains are normally monitored by taking calibration runs when there is no beam in
the machine. Starting April 3, 2013 the calibration runs were taken
automatically at the end of every RHIC store immediately after the beam dump.
This approach allowed us to track the changes in detector properties at a more
precise level than before. Although we primarily focus on the Run~13 data we
also analyzed the data from $\alpha$-calibration runs in Run~12. The same analysis
procedure was performed on Run~12 data as well (see \cref{sec:appendix_run12}).
Because alpha runs weren't taken as frequently during Run~12, resulting plots for
it don't have as much statistics as the plots for Run~13.
The analysis of the data was performed with the {\tt cnipol} package~\cite{cnipol_code}.
\subsection{Energy calibration with $\alpha$-particles}
\begin{figure}[p]
\begin{subfigure}[t]{0.49\textwidth}
\input{gfx/calib_curve_naive.tex} \caption{Missing energy $E_\text{DL}$ can be
defined in the approximation of energy deposition independent of the particle
energy.}
\label{fig:calib_curve_naive}
\end{subfigure}
\hfill
\begin{subfigure}[t]{0.49\textwidth}
\input{gfx/calib_curve_smart.tex}
\caption{Dead layer size $x_\text{DL}$ is a difference between the distance
that particle traveled trough the matter $x_\text{total}$ and a distance on
which the deposited energy was being registered by the detector
$x_\text{registered}$. Gain relation $g=g_\text{Am}=g_\text{Gd}$ is assumed.
The linear regression gives us \cref{eq:x_dl}. Note that the result does not
depend on the value of gain $g$.}
\label{fig:calib_curve_smart}
\end{subfigure}
\caption{Definition of $E_\text{DL}$ and $x_\text{DL}$ in terms of linear regression
over two points corresponding to two alpha sources.}
\label{fig:calib_curves}
\end{figure}
In order to perform a polarization measurement we need to measure the energy of
the slow carbon ions coming from the fixed target. The calorimetry is done by
utilizing the silicon strip detectors introduced above. We observe that
signals coming from the detectors have the same shape. Thus each signal can be
parametrized with only one parameter. We use that parameter to reconstruct the
energy of the recoil particle. As of Run~2013 the data from pCarbon
polarimeters comes in a form of a two quantities: the maximum amplitude and the
total charge (i.e. integral). On the contrary, H-Jet data comes in full
waveforms. In agreement with signals affinity, we observe a very good correlation
between the maximum amplitude and the integral of the collected charge. Our
choice of the former is only set by convention.
For the energy calibration purposes we use low intensity \americium{} and \gadolinium{} radioactive
sources emitting $\alpha$-particles with fixed energies of $E_{\text{Am}} =
5.486~\text{MeV}$ and $E_{\text{Gd}} = 3.183~\text{MeV}$\cite{rytz} respectively. The
sources are put inside the vacuum of the beam pipe in the direct acceptance of the detectors. In
2012 and 2013 two polarimeters, Y1D and B1U (see \cref{fig:polarim_placement}), were supplied with \americium{}
sources only, while the other two, Y2U and B2D, had, in addition, \gadolinium{}
sources installed inside the polarimeter chambers. Prior to 2012 only the
americium sources were available for calibration.
The energy of the $\alpha$-particles is few times higher than that of the
carbon ions reaching the detectors. We reduce the output signal by means of
attenuators by a factor of five to bring it back to the range where the
amplitude can be digitized by the readout electronics. In the absence of the
beam we observe clean peaks from the radioactive sources as shown in
\cref{fig:atten_distrib_nominal}. The peaks positions are determined using a
gaussian function fit.
The current offline analysis is only based on a calibration with the \americium{} source.
The nominal detector gain \gainAm{} is
defined as a ratio of the peak position, $\mu_{\text{Am}}$, to the
$E_{\text{Am}}$ energy. This definition completely ignores possible energy
losses before the sensitive detector region. This limitation can be overcome
to some extent by using a second $\alpha$-source. With two sources the slope of
a linear calibration curve effectively takes into account the unresponsive
region of the detector as illustrated with a sketch in
\cref{fig:calib_curves}. This region is referred to as the {\it dead
layer}, and we discuss it in the next section.
\Cref{fig:gainAm} shows how the americium gain \gainAm{} developed in time for all
four p-Carbon polarimeters. From this we conclude that overall gain was
stable on a monthly scale with only few detectors showing up to 20\%
instabilities in the gain. We also confirm an overall stability by looking at
the ratio of the gain estimate for the polarimeters with an additional
\gadolinium{} source. These quantities as a function of time are shown on
\cref{fig:gain_relations}.
\newcommand\amgainlabel{Time dependence of the detector gain $g_\text{Am}$ as
measured with $\alpha$-particles emitted by the \americium{} source. Colors
represent individual detectors.}
\begin{figure}
\begin{center}
\input{gfx/detector_alignment.tex}
\end{center}
\caption{Schematic view of the detector alignment in the plane perpendicular to
the beam. Carbon strip target is aligned vertically, detectors are aligned at
angles $45^\circ$, $90^\circ$, $135^\circ$ to it. The beam points into the
figure perpendiculary.}
\end{figure}
\begin{figure}
\begin{center}
\input{gfx/polarimeter_placement.tex}
\end{center}
\caption{Schematic view of polarimeters placement around IP12.}
\label{fig:polarim_placement}
\end{figure}
\begin{figure}
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/B1U/c_chAmGain_by_day_B1U.eps}
\caption{B1U}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y1D/c_chAmGain_by_day_Y1D.eps}
\caption{Y1D}
\end{subfigure}
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/B2D/c_chAmGain_by_day_B2D.eps}
\caption{B2D}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y2U/c_chAmGain_by_day_Y2U.eps}
\caption{Y2U}
\end{subfigure}
%
\caption{\amgainlabel{}}
\label{fig:gainAm}
\end{figure}
\newcommand\gainrealationslabel{Comparison of the effective detector gains
calculated with either one or both $\alpha$-sources for the polarimeters
equipped with two alpha sources. Colors represent individual detectors.}
\begin{figure}
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y2U/c_chGdGain_over_AmGain_by_day_Y2U.eps}
\caption{Time dependence of the ratio of the gains, $g_\text{Gd}/g_\text{Am}$,
independently measured with \gadolinium{} and \americium{} sources for
\textbf{Y2U} polarimeter.}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y2U/c_chAmGdGain_over_AmGain_by_day_Y2U.eps}
\caption{Time dependence of the ratio of the gain measured with both \americium{} and
\gadolinium{} sources to the nominal gain measured with only the \americium{}
source for \textbf{Y2U} polarimeter.}
\end{subfigure}
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/B2D/c_chGdGain_over_AmGain_by_day_B2D.eps}
\caption{Time dependence of the ratio of the gains, $g_\text{Gd}/g_\text{Am}$,
independently measured with \gadolinium{} and \americium{} sources for
\textbf{B2D} polarimeter.}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/B2D/c_chAmGdGain_over_AmGain_by_day_B2D.eps}
\caption{Time dependence of the ratio of the gain measured with both \americium{} and
\gadolinium{} sources to the nominal gain measured with only the \americium{}
source for \textbf{B2D} polarimeter.}
\end{subfigure}
\caption{\gainrealationslabel{}}
\label{fig:gain_relations}
\end{figure}
\subsection{Effective dead layer}
In our current model of the silicon detector the incident particles are assumed
to pass through a region where the detector has zero response as a calorimeter,
i.e. the dead layer. Adding a gadolinium alpha source to the setup allows us to
put one more calibration point on our calibration curve (see
\cref{fig:calib_curves}). With the points corresponding to the americium
and gadolinium sources we can estimate the thickness of this layer.
The energy where the linear fit intersects the horizontal axis gives us an
estimate for the initial energy of incident $\alpha$-particles which would
deposit all of their energy in the dead layer. While this quantity by itself
can be used to monitor the stability of the effective dead layer over time, we also
present the result in $\mu g/cm^2$. For the latter, we assume that the detector
response to the both incident energies is the same, and we write:
\begin{equation}
\frac{\mu_{Am}}{E_{Am} - E^\text{DL}_{Am}} = \frac{\mu_{Gd}}{E_{Gd} - E^\text{DL}_{Gd}},
\label{eq:gain_equality}
\end{equation}
\noindent where $\mu_\text{Am}$ and $\mu_\text{Gd}$ are the mean values of the
alpha peaks measured in ADC units, $E_\text{Am}$ and $E_\text{Gd}$ are the
incident energies of $\alpha$-particles, and $E^\text{DL}_{Am}$ and
$E^\text{DL}_{Gd}$ are the energy losses in the dead layer for the respective
alpha sources.
\begin{figure}
\begin{subfigure}[b]{0.5\textwidth}
\includegraphics[width=\textwidth]{astar_plots/csda_range.eps}
\caption{CSDA versus alpha particle energy}\label{subfig:csda_range}
\end{subfigure}
\begin{subfigure}[b]{0.5\textwidth}
\includegraphics[width=\textwidth]{astar_plots/stopping_power.eps}
\caption{Stopping power versus penetration depth}\label{subfig:stopping_power}
\end{subfigure}
\caption{}\label{fig:astar_plots}
\end{figure}
The rate at which $\alpha$-particles loose their energy in the detector changes
with the penetration depth. The value of stopping power can be easily derived
from the \emph{CSDA range}\footnotemark values available at the
ASTAR Database\cite{astar_database}.
\footnotetext{The \emph{CSDA range} is a very close approximation to the
average path length traveled by a charged particle as it slows down to rest,
calculated in the continuous-slowing-down approximation. In this approximation,
the rate of energy loss at every point along the track is assumed to be equal
to the total stopping power. Energy-loss fluctuations are neglected. The CSDA
range is obtained by integrating the reciprocal of the total stopping power
with respect to energy. -- ASTAR Appendix: Significance of Calculated
Quantities}
The original CSDA range data for $\alpha$-particles is displayed in
\cref{subfig:csda_range}. If we take CSDA range value for the
$E=E_{\text{Am}}$ and $E=E_{\text{Gd}}$ we will get maximal penetration depths
$z^0_{\text{Am}}$, $z^0_{\text{Gd}}$. Penetration depth is then calculated as
$z_i = z^0_i - \text{CSDA\:range}$. Stopping power $-\frac{dE}{dz_i}$ can be
then derived from $E$ vs $z_i$ points using simple numerical differentiation formula
$\frac{df}{dx} = (f_{i+1} - f_i)/(x_{i+1} - x_i)$. The resulting plot for
stopping power versus penetration depth can be seen in \cref{subfig:stopping_power}.
This plot is consistent with the other plot\cite{schmidke_edep} of the same dependency, derived from
the data from the same ASTAR Database, but using a different method.
As the dead layer is relatively thin (less than $1\text{ }\mu\text{m}$)
$\alpha$-particles do not loose a significant fraction of their initial energy
and the stopping power is approximately constant over this range. With a linear
approximation for the total losses we have:
\begin{equation}
E^\text{DL}_\text{Am} \simeq x_\text{DL} \lambda_\text{Am} \qquad
E^\text{DL}_\text{Gd} \simeq x_\text{DL} \lambda_\text{Gd}
\label{eq:linear_loss}
\end{equation}
\noindent
with values for the stopping power $\lambda_\text{Am} = 140\text{ keV/}\mu m$
and $\lambda_\text{Gd} = 190\text{ keV/}\mu m$ taken from the plot on
\cref{subfig:stopping_power} at $z=0$. Combining \cref{eq:gain_equality,eq:linear_loss}
we obtain the following formula for the size of the effective dead layer:
\begin{equation}
x_{DL} = \frac{\mu_{Gd} E_{Am} - \mu_{Am} E_{Gd}}{\mu_{Gd}\lambda_{Am} - \mu_{Am}\lambda_{Gd}}
\label{eq:x_dl}
\end{equation}
This formula could be also realized as a linear regression fit of the plot at
\cref{fig:calib_curve_smart}.
The thickness of the dead layer thus extracted from the all available
calibration runs in Run~13 are shown in \cref{fig:x_dl}. The average size
of the effective dead layer is estimated to be within 80 to 100 $\mu g/cm^2$.
\newcommand\edllabellabel{$E_{DL}$ (see \cref{fig:calib_curve_naive}) is the missing
energy value extracted from linear fit of the americium and gadolinium points.}
\begin{figure}
\begin{subfigure}[b]{0.5\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/B2D/c_chDeadLayerEnergy_by_day_B2D.eps}
\caption{B2D}
\end{subfigure}
%
\begin{subfigure}[b]{0.5\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y2U/c_chDeadLayerEnergy_by_day_Y2U.eps}
\caption{Y2U}
\end{subfigure}
%
\caption{\edllabellabel{}}
\label{fig:e_dl}
\end{figure}
\newcommand\xdllabel{$x_{DL}$ is the effective dead layer thickness calculated using formula (\ref{eq:x_dl}).}
\begin{figure}
\begin{subfigure}[b]{0.5\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/B2D/c_chDeadLayerSize_by_day_B2D.eps}
\caption{B2D}
\end{subfigure}
%
\begin{subfigure}[b]{0.5\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y2U/c_chDeadLayerSize_by_day_Y2U.eps}
\caption{Y2U}
\end{subfigure}
\caption{\xdllabel{}}
\label{fig:x_dl}
\end{figure}
\begin{figure}
\begin{subfigure}[b]{0.325\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y2U/c_hDeadLayerSize_by_run_distribution1_Y2U.eps}
\caption{Det1}
\end{subfigure}
\hfill
\begin{subfigure}[b]{0.325\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y2U/c_hDeadLayerSize_by_run_distribution2_Y2U.eps}
\caption{Det2}
\end{subfigure}
\hfill
\begin{subfigure}[b]{0.325\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y2U/c_hDeadLayerSize_by_run_distribution3_Y2U.eps}
\caption{Det3}
\end{subfigure}
\begin{subfigure}[b]{0.325\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y2U/c_hDeadLayerSize_by_run_distribution4_Y2U.eps}
\caption{Det4}
\end{subfigure}
\hfill
\begin{subfigure}[b]{0.325\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y2U/c_hDeadLayerSize_by_run_distribution5_Y2U.eps}
\caption{Det5}
\end{subfigure}
\hfill
\begin{subfigure}[b]{0.325\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y2U/c_hDeadLayerSize_by_run_distribution6_Y2U.eps}
\caption{Det6}
\end{subfigure}
\caption{$x_{DL}$ distribution in the measurements for Y2U.}
\end{figure}
\begin{figure}
\begin{subfigure}[b]{0.325\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/B2D/c_hDeadLayerSize_by_run_distribution1_B2D.eps}
\caption{Det1}
\end{subfigure}
\hfill
\begin{subfigure}[b]{0.325\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/B2D/c_hDeadLayerSize_by_run_distribution2_B2D.eps}
\caption{Det2}
\end{subfigure}
\hfill
\begin{subfigure}[b]{0.325\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/B2D/c_hDeadLayerSize_by_run_distribution3_B2D.eps}
\caption{Det3}
\end{subfigure}
\begin{subfigure}[b]{0.325\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/B2D/c_hDeadLayerSize_by_run_distribution4_B2D.eps}
\caption{Det4}
\end{subfigure}
\hfill
\begin{subfigure}[b]{0.325\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/B2D/c_hDeadLayerSize_by_run_distribution5_B2D.eps}
\caption{Det5}
\end{subfigure}
\hfill
\begin{subfigure}[b]{0.325\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/B2D/c_hDeadLayerSize_by_run_distribution6_B2D.eps}
\caption{Det6}
\end{subfigure}
\caption{$x_{DL}$ distribution in the measurements for B2D.}
\end{figure}
\subsection{Bias current}
% TODO: write something about how out bias current varies over time
In \cref{fig:gain_relations,fig:e_dl,fig:x_dl} there are few measurements taken
before and after run13. When comparing these measurements with the measurements
taken during the run we see that later are showing much higher spread. We
investigate this abnormality by looking at correlations with other
detector work parameters.
One of the work parameters of our silicon detector that we measure is a bias
current -- current constantly flowing through detector (in this case -- set of
12 strips). Current was measured for each of the six silicon detectors on all
polarimeters, measurements were taken each five minutes. Values lie mostly in
range from $-30$ to $0$~$\mu\text{A}$. It was interesting to see how this current
affects calibration characteristics of our detector. For example, it is known
that higher bias voltage should decrease size of depleted zone, i.e. decrease
size of effective dead layer. On our plots (\cref{fig:bc_vs_xdl}) we see some weak
correlation between effective dead layer size and bias current.
\newcommand\bcvsxdllabel{Bias current versus dead layer size dependency.}
\begin{figure}
\begin{subfigure}[t]{0.5\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/B2D/c_hBiasCurrent_DeadLayerSize.eps}
\caption{B2D}
\end{subfigure}
%
\begin{subfigure}[t]{0.5\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y2U/c_hBiasCurrent_DeadLayerSize.eps}
\caption{Y2U}
\end{subfigure}
\caption{\bcvsxdllabel{}}
\label{fig:bc_vs_xdl}
\end{figure}
Much stronger correlation is seen when we compare the bias current with the
gain (\cref{fig:bc_vs_gain}). We use this correlation to produce linear model
to correct our alpha gains to their values at zero bias current. The resulting
plot is presented at \cref{fig:gainAmCorrected}. Unlike original plot at
\cref{fig:gainAmCorrected} this one shows much lower spread.
\newcommand\bcvsgainlabel{Bias current versus americium gain ($\mu_{\text{Am}} /
E_{\text{Am}}$) dependency. The colors represent different detectors.}
\begin{figure}
\begin{subfigure}[b]{0.5\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/B1U/c_hBiasCurrent_AmGain.eps}
\caption{B1U}\label{bc_vs_gain-b1u}
\end{subfigure}
\begin{subfigure}[b]{0.5\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y1D/c_hBiasCurrent_AmGain.eps}
\caption{Y1D}\label{bc_vs_gain-y1d}
\end{subfigure}
\begin{subfigure}[b]{0.5\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/B2D/c_hBiasCurrent_AmGain.eps}
\caption{B2D}\label{bc_vs_gain-b2d}
\end{subfigure}
\begin{subfigure}[b]{0.5\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y2U/c_hBiasCurrent_AmGain.eps}
\caption{Y2U}\label{bc_vs_gain-y2u}
\end{subfigure}
\caption{\bcvsgainlabel{}}
\label{fig:bc_vs_gain}
\end{figure}
\begin{figure}
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/B1U/c_chAmGainCorrected_by_day_B1U.eps}
\caption{B1U}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y1D/c_chAmGainCorrected_by_day_Y1D.eps}
\caption{Y1D}
\end{subfigure}
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/B2D/c_chAmGainCorrected_by_day_B2D.eps}
\caption{B2D}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y2U/c_chAmGainCorrected_by_day_Y2U.eps}
\caption{Y2U}
\end{subfigure}
%
\caption{Time dependence of the detector gain $g_\text{Am}$ that was corrected
to zero bias current using the slope from \cref{fig:bc_vs_gain}.}
\label{fig:gainAmCorrected}
\end{figure}
We also tried to see if the variation of the bias current correlates with the
beam properties. To do that we took average of the beam intensity values at a
plateau (values $> 50 \cdot 10^{11}$ protons) of the fill happened before the
alpha measurement. That value was then plotted versus the bias current as
shown at \cref{fig:bc_vs_beamcurrent}.
\begin{figure}
\begin{subfigure}[t]{0.5\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y1D/c_hBiasCurrent_BeamCurrent.eps}
\caption{Y1D}
\end{subfigure}
%
\begin{subfigure}[t]{0.5\textwidth}
\includegraphics[width=\textwidth]{gfx/run13_alpha_malpha/Y2U/c_hBiasCurrent_BeamCurrent.eps}
\caption{Y2U}
\end{subfigure}
%
\caption{The average bias current during an alpha measurement versus the average
beam intensity in the preceding store. The colors represent different
detectors.}
\label{fig:bc_vs_beamcurrent}
\end{figure}
\begin{figure}
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/bc_corr/B1U/c_hAlphaBC_vs_SweepBC.eps}
\caption{B1U}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/bc_corr/Y1D/c_hAlphaBC_vs_SweepBC.eps}
\caption{Y1D}
\end{subfigure}
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/bc_corr/B2D/c_hAlphaBC_vs_SweepBC.eps}
\caption{B2D}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/bc_corr/Y2U/c_hAlphaBC_vs_SweepBC.eps}
\caption{Y2U}
\end{subfigure}
%
\caption{Correlation between the mean bias current during the alpha
measurements and bias currents that were taken during the sweep measurements.}
\label{fig:alpha_sweep_correlation}
\end{figure}
\begin{figure}
\center{
\includegraphics[width=\textwidth]{gfx/bias_current.17384.yel1.png}
}
\caption{Bias current variation in Y1D detector during fill 17384. Some jumps
coincide with polarization measurements.}
\label{fig:bc_jumping}
\end{figure}
\subsection{Linearity of the amplifiers}
The signal generated in the detector propagates through several stages of
amplification. Linearity of the downstream amplifiers can be checked by
attenuating the signal in a place on the signal path preceding the
amplification, and then comparing the measured reduced amplitude with the
expected one properly scaled by a known factor.
The shaper boards have a resistive divider with a multiplexer controlled by
software settings. For normal polarization measurements of sub-MeV carbon ions
the on-board attenuator is set to 1, i.e. no signal attenuation. During regular
alpha measurements the attenuator is set to $1/5$. In this study we check the
other two attenuator settings of $1/10$ and $1/3$. The alpha peaks obtained with
these attenuator settings are shown in \cref{fig:atten_distrib} and the
mean values corresponding to the gaussian fits are listed in
\cref{table:atten}. Note that with the attenuator setting of $1/3$ the
americium peak ends up in the overflow bin as the events are outside of the detector
dynamic range. The cumulative effect of a possible non-linearity in the
amplified signal is checked by using the relation in which the mean of
the peak is expected to scale with the attenuator settings:
\begin{equation}
\lambda_1/\lambda_2 = \mu_1/ \mu_2.
\label{eq:atten_linearity}
\end{equation}
\begin{table}[htb]
\caption{The mean positions of the \americium{} and \gadolinium{} $\alpha$-peaks
with different attenuator settings.}
\centering
\begin{tabular}{clrr}
\toprule
Attenuation $\lambda$ & Alpha Run Id & Am Mean, ADC & Gd Mean, ADC \\
\midrule
$\frac{1}{10}$ & \small{atten\_1\_over\_10.yel2.alpha0} & $77.0\pm0.7$ & $44.2\pm0.4$ \\
\addlinespace
$\frac{1}{5}$ & \small{13\_310713.yel2.alpha0} & $154.9\pm2.7$ & $88.9\pm1.5$ \\
\addlinespace
$\frac{1}{3}$ & \small{atten\_1\_over\_3.yel2.alpha0} & ---\hspace{20pt} & $149.4\pm2.5$ \\
\bottomrule
\end{tabular}
\label{table:atten}
\end{table}
\noindent
This effect relative to one of the attenuator settings can be defined as
$\Delta l = \frac{\lambda_1 \mu_2}{\lambda_2 \mu_1} - 1$. For the three pairs
of measurements we calculate very small deviations from the linear
\cref{eq:atten_linearity}.
\begin{equation}
\frac{154.9}{77.0 \times 2} - 1 = 0.6\%
\qquad
\frac{88.9}{44.0 \times 2} - 1 = 0.6\%
\qquad
\frac{149.4 \times 3}{88.9 \times 5} - 1 = 0.8\%
\end{equation}
\begin{figure}[htb]
\centering
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/atten_1_over_5_ch06.eps}
\caption{Signal attenuated to $1/5$}
\label{fig:atten_distrib_nominal}
\end{subfigure}
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/atten_1_over_10_ch06.eps}
\caption{Signal attenuated to $1/10$}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/atten_1_over_3_ch06.eps}
\caption{Signal attenuated to $1/3$}
\end{subfigure}
\caption{Alpha peaks as seen with different on-board attenuator settings (Y2U).}
\label{fig:atten_distrib}
\end{figure}
\section{Implementing the bias current correction}\label{sec:bc_corr_impl}
\newcommand\stdwindow{$\left[ \text{starttime}, \text{endtime} \right]$}
\newcommand\prewindow{$\left[ \text{starttime}-5\text{ min}, \text{starttime} \right]$}
\newcommand\postwindow{$\left[ \text{endtime}, \text{endtime}+5\text{ min} \right]$}
\newcommand\implwindow{$\left[ \text{starttime}, \max\left(\text{endtime}, \text{starttime}+500\text{ sec}\right) \right]$}
\begin{figure}[p]
\begin{subfigure}[t]{0.47\textwidth}%
\vspace{-25pt}%
\includegraphics[width=\textwidth]{gfx/bc_corr/B1U/c_hSweepBC_vs_PreSweepBC.eps}%
\vspace{-5pt}%
\caption{B1U}%
\end{subfigure}%
\hfill%
\begin{subfigure}[t]{0.47\textwidth}%
\vspace{-25pt}%
\includegraphics[width=\textwidth]{gfx/bc_corr/Y1D/c_hSweepBC_vs_PreSweepBC.eps}%
\vspace{-5pt}%
\caption{Y1D}%
\end{subfigure}%
\newline%
\begin{subfigure}[t]{0.47\textwidth}%
\vspace{-3pt}%
\includegraphics[width=\textwidth]{gfx/bc_corr/B2D/c_hSweepBC_vs_PreSweepBC.eps}%
\vspace{-5pt}%
\caption{B2D}%
\end{subfigure}%
\hfill%
\begin{subfigure}[t]{0.47\textwidth}%
\vspace{-3pt}%
\includegraphics[width=\textwidth]{gfx/bc_corr/Y2U/c_hSweepBC_vs_PreSweepBC.eps}%
\vspace{-5pt}%
\caption{Y2U}%
\end{subfigure}%
\vspace{-2pt}%
\caption{Correlation of bias currents that fall in time windows \stdwindow\ and \prewindow .}%
\label{fig:presweep_bc_corr}
\end{figure}
\begin{figure}[p]
\begin{subfigure}[t]{0.47\textwidth}%
\includegraphics[width=\textwidth]{gfx/bc_corr/B1U/c_hSweepBC_vs_PostSweepBC.eps}%
\vspace{-5pt}%
\caption{B1U}%
\end{subfigure}%
\hfill%
\begin{subfigure}[t]{0.47\textwidth}%
\includegraphics[width=\textwidth]{gfx/bc_corr/Y1D/c_hSweepBC_vs_PostSweepBC.eps}%
\vspace{-5pt}%
\caption{Y1D}%
\end{subfigure}%
\newline%
\begin{subfigure}[t]{0.47\textwidth}%
\vspace{-3pt}%
\includegraphics[width=\textwidth]{gfx/bc_corr/B2D/c_hSweepBC_vs_PostSweepBC.eps}%
\vspace{-5pt}%
\caption{B2D}%
\end{subfigure}%
\hfill%
\begin{subfigure}[t]{0.47\textwidth}%
\vspace{-3pt}%
\includegraphics[width=\textwidth]{gfx/bc_corr/Y2U/c_hSweepBC_vs_PostSweepBC.eps}%
\vspace{-5pt}%
\caption{Y2U}%
\end{subfigure}%
\vspace{-2pt}%
\caption{Correlation of bias currents that fall in time windows \stdwindow\ and \postwindow .}%
\label{fig:postsweep_bc_corr}
\end{figure}
Alpha gain is an important quantity that is used in processing sweep
polarization measurements to convert ADC values to the energy scale. Each
sweep measurement has an assigned alpha measurement from which alpha gain value
is taken from. When looking at available alpha measurements, we observe a
strong correlation between the gain and the detector bias current. We can
assume that the same gain dependency is also held for regular polarization
measurements. The later is in agreement with observation of carbon gains vs
bias current calibration
\cite{schmidke_alpha_vs_carbon}\cite{dkalinkin_bc_vs_carbongain}. It is also
known that bias currents can vary drastically during the fill
(\cref{fig:bc_jumping}). This suggests that an effective gain value in the
sweep measurement may differ from the it's value in corresponding alpha
measurement, if bias current changed between those two measurements.
This variation may go as high as $\approx 20-40\%$ on the operational bias current
span (\cref{fig:bc_vs_gain}). Knowing bias current during sweep and alpha
measurement one can apply a correction to alpha gain to obtain an effective
gain for the sweep measurement.
The main problem that one faces when implementing the correction is the low
bias current sampling rate. For the most of the run 13 the period of these
measurements was equal to 5 minutes. At the same time the most common
polarization measurement -- sweep measurement normally takes no more than a
couple minutes. Because of that there is a big chance that for many
polarization measurements there will be no bias current measurement taken
during them. To overcome this we must soften our criteria of timewise selection
of the appropriate bias current measurement. In our study we evaluated two
schemes:
\begin{enumerate}
\item \label{item:pre} Extending the query window backward in time.
\item \label{item:post} Extending the query window forward in time.
\end{enumerate}
To study option \ref{item:pre} we looked at correlation between bias current
measurement taken during the sweep measurements (where available) with the
previous measurement (\cref{fig:presweep_bc_corr}). For option \ref{item:post}
the correlation has been plotted against next available measurement
(\cref{fig:postsweep_bc_corr}). The correlation for the later option show
lower spread. In other words, the value bias current during the sweep
measurement is closer to it's value right after the measurement than to the
value right before it. For our purposes we prefer the value that is closer to
the value during the sweep measurement, so we extend bias current query window
forward in time. In our particular implementation we query bias current values
in the time window \implwindow\ ($\text{starttime}$ and $\text{endtime}$ denote
measurement's start and end timestamps). That way our query window is never less
than $8.3$ minutes and always contains at least one bias current measurement.
In our approach we utilize following correction formula:
\begin{equation}
g_{\text{sweep}} = g_{\text{alpha}} + \frac{dg}{dI} (I_{\text{sweep}} - I_{\text{alpha}})
\end{equation}
where $\frac{dg}{dI}$ is a slope taken from linear fit of correlation from
\cref{fig:bc_vs_gain} for the detector, $I_i$, $g_i$ -- apropriate bias
currents and gains for the channel. In current implementation this calculation is split in two
steps: First, when processing alpha measurements channel calibration, we
calculate gain corrected to zero bias current as $g_{I=0} = g_{\text{alpha}} -
\frac{dg}{dI} I_{\text{alpha}}$ and store it into \texttt{fZeroBiasGain} field
of channel's \texttt{ChannelCalib} structure. Second, when processing sweep
measurement, we continue calculation on the calibration set inherited from
alpha file processing step and obtain our effective gain as $g_{\text{sweep}} =
g_{I=0} + \frac{dg}{dI} I_{\text{sweep}}$, storing it in the
\texttt{fEffectiveGain} field for subsequent use in event processing.
For more implementation details see \cite{bc_corr_commit}.
\section{Conclusions}
Based on the analysis presented in this note we establish that the changes in
the bias currents in our silicon detectors heavily depend on the beam activity
in RHIC. At the moment, we do not see that the bias current correlates with
the beam intensity (\cref{fig:bc_vs_beamcurrent}) but in further studies we
plan to investigate if other beam or machine parameters have direct impact on
the detectors.
We observed noticeable changes in detector bias current during fills of run 13.
These changes affected detector gain values and lead to a mismatch between
gain value measured during calibration and effective gain during polarization
measurements. A correction based for this effect was implemented in
the analysis code to be applied in run 13 analysis (see \cref{sec:bc_corr_impl}).
The presence of the two $\alpha$-sources in the polarimeters allowed us to find
a correction for the effective detector gain by taking into account dead layer
energy losses. We find this correction (\cref{fig:gain_relations}) to be at $\approx 5\%$ level
with respect to the nominal calibration procedure with one radioactive source.
In addition, we estimate the thickness of the effective dead layer to be
$\approx 80\text{ }\mu g/cm^2$. This number disagrees with the value extracted
from the nominal ``banana'' fit to the carbon data where the effective dead layer is
estimated to be $\approx 35\text{ }\mu g/cm^2$ and the value of $1500\text{ }\angstrom$
($\approx 35\text{ }\mu g/cm^2$) provided by instrumentation group.
A possible explanation for this discrepancy
is that we overestimate the effective dead layer thickness as measured with
$\alpha$-particles by not taking into account the extra material of the protective
coating of the alpha source.
Comparing the detector gains measured before and after the beam time we conclude
that there was no significant radiation damage of the detectors.
A similar study has been performed for the 2012 data. The corresponding plots
can be found in \cref{sec:appendix_run12}.
\clearpage
\appendix
\section{Appendix: Run12 plots}
\label{sec:appendix_run12}
\begin{figure}[htb]
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/B1U/c_chAmGain_by_day_B1U.eps}
\caption{B1U}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/Y1D/c_chAmGain_by_day_Y1D.eps}
\caption{Y1D}
\end{subfigure}
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/B2D/c_chAmGain_by_day_B2D.eps}
\caption{B2D}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/Y2U/c_chAmGain_by_day_Y2U.eps}
\caption{Y2U}
\end{subfigure}
%
\caption{\amgainlabel{} (run12\_alpha)}
\end{figure}
\begin{figure}[htb]
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/Y2U/c_chGdGain_over_AmGain_by_day_Y2U.eps}
\caption{Relation of gadolinium and americium gains for \textbf{Y2U} polarimeter.}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/Y2U/c_chAmGdGain_over_AmGain_by_day_Y2U.eps}
\caption{Relation of two-point (americium and gadolinium) linear fit slope and americium gain
for \textbf{Y2U} polarimeter.}
\end{subfigure}
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/B2D/c_chGdGain_over_AmGain_by_day_B2D.eps}
\caption{Relation of gadolinium and americium gains for \textbf{B2D} polarimeter.}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/B2D/c_chAmGdGain_over_AmGain_by_day_B2D.eps}
\caption{Relation of two-point (americium and gadolinium) linear fit slope and americium gain
for \textbf{B2D} polarimeter.}
\end{subfigure}
\caption{\gainrealationslabel{} (run12\_alpha)}
\end{figure}
\begin{figure}[htb]
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/B2D/c_chDeadLayerEnergy_by_day_B2D.eps}
\caption{B2D}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/Y2U/c_chDeadLayerEnergy_by_day_Y2U.eps}
\caption{Y2U}
\end{subfigure}
\caption{\edllabellabel{} (run12\_alpha)}
\end{figure}
\begin{figure}[htb]
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/B2D/c_chDeadLayerSize_by_day_B2D.eps}
\caption{B2D}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/Y2U/c_chDeadLayerSize_by_day_Y2U.eps}
\caption{Y2U}
\end{subfigure}
\caption{\xdllabel{} (run12\_alpha)}
\end{figure}
\begin{figure}[htb]
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/B2D/c_hBiasCurrent_DeadLayerSize.eps}
\caption{B2D}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/Y2U/c_hBiasCurrent_DeadLayerSize.eps}
\caption{Y2U}
\end{subfigure}
\caption{\bcvsxdllabel{} (run12\_alpha)}
\end{figure}
\begin{figure}[htb]
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/B1U/c_hBiasCurrent_AmGain.eps}
\caption{B1U}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/Y1D/c_hBiasCurrent_AmGain.eps}
\caption{Y1D}
\end{subfigure}
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/B2D/c_hBiasCurrent_AmGain.eps}
\caption{B2D}
\end{subfigure}
%
\hfill
%
\begin{subfigure}[t]{0.49\textwidth}
\includegraphics[width=\textwidth]{gfx/run12_alpha/Y2U/c_hBiasCurrent_AmGain.eps}
\caption{Y2U}
\end{subfigure}
%
\caption{\bcvsgainlabel{} (run12\_alpha)}
\end{figure}
\clearpage
\begin{thebibliography}{9} % for less than 10 references use just {9}
\bibitem{cnipol_code}