1 | \section{Signal Reconstruction Algorithms}
|
---|
2 |
|
---|
3 | \ldots {\it In this section, the extractors are described, especially w.r.t. which free parameters are left to play,
|
---|
4 | how they subtract the pedestal, how they compare between calibration and cosmics pulses and how an
|
---|
5 | extraction in case of a pure pedestal event takes place. }
|
---|
6 | \newline
|
---|
7 | \newline
|
---|
8 | {\it Missing coding:
|
---|
9 | \begin{itemize}
|
---|
10 | \item Implementing a low-gain extraction based on the high-gain information \ldots Arnau
|
---|
11 | \item Real fit to the expected pulse shape \ldots Hendrik, Wolfgang ???
|
---|
12 | \end{itemize}
|
---|
13 | }
|
---|
14 |
|
---|
15 | \subsection{Pure signal extractors}
|
---|
16 |
|
---|
17 | The pure signal extractors have in common that they compute only the
|
---|
18 | signal, but no arrival time. All treated extractors here derive from the MARS-base
|
---|
19 | class {\textit{MExtractor}} which provides the following facilities:
|
---|
20 |
|
---|
21 | \begin{itemize}
|
---|
22 | \item The global extraction limits can be set from outside
|
---|
23 | \item FADC saturation is kept track off
|
---|
24 | \end{itemize}
|
---|
25 |
|
---|
26 | The following free adjustable parameters have to be set from outside:
|
---|
27 | \begin{description}
|
---|
28 | \item[Global extraction limits:\xspace] Limits in between the extractor is allowed
|
---|
29 | to search.
|
---|
30 | \end{description}
|
---|
31 |
|
---|
32 | \subsubsection{Fixed Window}
|
---|
33 |
|
---|
34 | This extractor is implemented in the MARS-class {\textit{MExtractFixedWindow}}.
|
---|
35 | It simply adds the FADC contents in the allowed ranges.
|
---|
36 | As it does not correct for the clock-noise, only an even number of samples is allowed.
|
---|
37 |
|
---|
38 | \subsubsection{Fixed Window with global Peak Search}
|
---|
39 |
|
---|
40 | This extractor is implemented in the MARS-class {\textit{MExtractFixedWindowPeakSearch}}.
|
---|
41 | It first fixes a reference point defined as the highest sum of
|
---|
42 | consecutive non-saturating FADC slices in a (smaller) peak-search window. This reference
|
---|
43 | point removes the coherent movement of the arrival times over whole camera due to the trigger jitter.
|
---|
44 |
|
---|
45 | Then, simply adds the FADC contents around the reference point in a fixed window manner.
|
---|
46 | It loops twice over the all pixels every event, because it first has to find the reference point.
|
---|
47 | As it does not correct for the clock-noise, only an even number of samples is allowed.
|
---|
48 |
|
---|
49 | The following free adjustable parameters have to be set from outside:
|
---|
50 | \begin{description}
|
---|
51 | \item[Peak Search Window:\xspace] Defines the ``sliding window'' in which the peaking sum is
|
---|
52 | searched for (default: 4 slices)
|
---|
53 | \item[Offset from Window:\xspace] Defines the offset from the found reference point to start
|
---|
54 | extracting the fixed window (default: 1 slice)
|
---|
55 | \item[Low-Gain Peak shift:\xspace] Defines the shift in the low-gain with respect to the peak found
|
---|
56 | in the high-gain (default: 1 slice)
|
---|
57 | \end{description}
|
---|
58 |
|
---|
59 | \subsubsection{Fixed Window with integrated cubic spline}
|
---|
60 |
|
---|
61 | This extractor is implemented in the MARS-class {\textit{MExtractFixedWindowSpline}}.
|
---|
62 | It uses a cubic spline algorithm, adapted from %\cite{NUMREC}.
|
---|
63 | It integrated the
|
---|
64 | spline interpolated FADC slice values, counting the edge slices as half.
|
---|
65 | As it does not correct for the clock-noise, only an odd number of samples is allowed.
|
---|
66 |
|
---|
67 | \subsection{Combined extractors}
|
---|
68 |
|
---|
69 | The combined extractors have in common that they compute the arrival time and
|
---|
70 | the signal in one step. All treated combined extractors here derive from the MARS-base
|
---|
71 | class {\textit{MExtractTimeAndCharge}} which provides the following facilities:
|
---|
72 |
|
---|
73 | \begin{itemize}
|
---|
74 | \item Only one loop over all pixels is performed
|
---|
75 | \item The individual FADC slice values get the clock-noise-corrected pedestals immediately subtracted.
|
---|
76 | \item The low-gain extraction range is adapted dynamically, based on the computed arrival time
|
---|
77 | from the high-gain samples
|
---|
78 | \item Extracted times from the low-gain samples get corrected for the intrinsic time delay of the low-gain
|
---|
79 | pulse
|
---|
80 | \item The global extraction limits can be set from outside
|
---|
81 | \item FADC saturation is kept track off
|
---|
82 | \end{itemize}
|
---|
83 |
|
---|
84 | The following free adjustable parameters have to be set from outside:
|
---|
85 | \begin{description}
|
---|
86 | \item[Global extraction limits:\xspace] Limits in between the extractor is allowed
|
---|
87 | to search. They are fixed by the extractor for the high-gain, but re-adjusted for
|
---|
88 | every event in the low-gain, depending on the arrival time found in the low-gain.
|
---|
89 | However, the dynamically adjusted window is not allowed to pass beyond the global
|
---|
90 | limits.
|
---|
91 | \item[Low-gain start shift:\xspace] Global shift between the computed high-gain arrival
|
---|
92 | time and the start of the low-gain extraction limit (corrected for the intrinsic time offset).
|
---|
93 | This variable tells where the extractor is allowed to start searching for the low-gain signal
|
---|
94 | if the high-gain arrival time is known. It avoids that the extractor gets confused by possible high-gain
|
---|
95 | signals leaking into the ``low-gain'' region.
|
---|
96 | \end{description}
|
---|
97 |
|
---|
98 | \ldots {\it Note for the usage of this class together with {\textit{MJCalibration}}: In order to access the
|
---|
99 | arrival times computed by these classes, the option: MJCalibration::SetTimeAndCharge() has to
|
---|
100 | be chosen} \ldots
|
---|
101 |
|
---|
102 | \subsubsection{Sliding Window with amplitude-weighted time}
|
---|
103 |
|
---|
104 | This extractor is implemented in the MARS-class {\textit{MExtractTimeAndChargeSlidingWindow}}.
|
---|
105 | It extracts the signal from a sliding window of an adjustable size, for high-gain and low-gain
|
---|
106 | individually (default: 6 and 6) The signal is the one which maximizes the summed
|
---|
107 | (clock-noise and pedestal-corrected) FADC signal over the window.
|
---|
108 | \par
|
---|
109 | The amplitude-weighted arrival time is calculated from the window with
|
---|
110 | the highest integral using the following formula:
|
---|
111 |
|
---|
112 | \begin{equation}
|
---|
113 | t = \frac{\sum_{i=0}^{windowsize} s_i \cdot i}{\sum_{i=0}^{windowsize} i}
|
---|
114 | \end{equation}
|
---|
115 | where $i$ denotes the FADC slice index, starting from the beginning of the derived
|
---|
116 | window and running over the window and $s_i$ the clock-noise and
|
---|
117 | pedestal-corrected FADC value at slice index i.
|
---|
118 | \par
|
---|
119 | The following free adjustable parameters have to be set from outside:
|
---|
120 | \begin{description}
|
---|
121 | \item[Window sizes:\xspace] Independenty for high-gain and low-gain (default: 6,6)
|
---|
122 | \end{description}
|
---|
123 |
|
---|
124 | \subsubsection{Cubic Spline with Sliding Window or Amplitude extraction}
|
---|
125 |
|
---|
126 | This extractor is implemented in the MARS-class {\textit{MExtractTimeAndChargeSpline}}.
|
---|
127 | It uses a cubic spline algorithm, adapted from %\cite{NUMREC}.
|
---|
128 | The following free adjustable parameters have to be set from outside:
|
---|
129 |
|
---|
130 | \begin{description}
|
---|
131 | \item[Time Extraction Type:\xspace] The position of the maximum can be chosen (default) or the
|
---|
132 | position of the half maximum at the rising edge of the pulse
|
---|
133 | \item[Charge Extraction Type:\xspace] The amplitude of the maximum can be chosen (default) or the
|
---|
134 | integrated spline between maximum position minus rise time (default: 1.5 slices) and maximum position plus
|
---|
135 | fall time (default: 4.5 slices). The low-gain signal integrates one slice more at the falling part of the
|
---|
136 | signal.
|
---|
137 | \item[Rise Time and Fall Time:\xspace] Can be adjusted for the integration charge extraction type.
|
---|
138 | \item[Resolution:\xspace] Defined as the maximum allowed difference between the calculated half maximum value and
|
---|
139 | the computed spline value at the arrival time position. Can be adjusted for the half-maximum time extraction
|
---|
140 | type.
|
---|
141 | \end{description}
|
---|
142 |
|
---|
143 | \subsubsection{Digital Filter}
|
---|
144 |
|
---|
145 | This extractor is implemented in the MARS-class {\textit{MExtractTimeAndChargeDigitalFilter}}.
|
---|
146 |
|
---|
147 | \ldots {\it Hendrik ... }
|
---|
148 |
|
---|
149 | The following free adjustable parameters have to be set from outside:
|
---|
150 |
|
---|
151 | \begin{description}
|
---|
152 | \item[Weights File:\xspace]
|
---|
153 | \item[Window Sizes:\xspace]
|
---|
154 | \item[Binning Resolution:\xspace]
|
---|
155 | \end{description}
|
---|
156 |
|
---|
157 | \subsubsection{Real fit to the expected pulse shape }
|
---|
158 |
|
---|
159 | This extractor is not yet implemented as MARS-class...
|
---|
160 | \par
|
---|
161 | It fit the pulse shape to a Landau convoluted with a Gaussian using the following
|
---|
162 | parameters:...
|
---|
163 |
|
---|
164 | \ldots {\it Hendrik, Wolfgang ... }
|
---|
165 |
|
---|
166 | %References: \cite{OF77} \cite{OF94} \cite{NUMREC}.
|
---|
167 |
|
---|
168 |
|
---|
169 | %%% Local Variables:
|
---|
170 | %%% mode: latex
|
---|
171 | %%% TeX-master: "MAGIC_signal_reco"
|
---|
172 | %%% End:
|
---|