1 | /* ======================================================================== *\
|
---|
2 | !
|
---|
3 | ! *
|
---|
4 | ! * This file is part of MARS, the MAGIC Analysis and Reconstruction
|
---|
5 | ! * Software. It is distributed to you in the hope that it can be a useful
|
---|
6 | ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
|
---|
7 | ! * It is distributed WITHOUT ANY WARRANTY.
|
---|
8 | ! *
|
---|
9 | ! * Permission to use, copy, modify and distribute this software and its
|
---|
10 | ! * documentation for any purpose is hereby granted without fee,
|
---|
11 | ! * provided that the above copyright notice appear in all copies and
|
---|
12 | ! * that both that copyright notice and this permission notice appear
|
---|
13 | ! * in supporting documentation. It is provided "as is" without express
|
---|
14 | ! * or implied warranty.
|
---|
15 | ! *
|
---|
16 | !
|
---|
17 | !
|
---|
18 | ! Author(s): Hendrik Bartko, 09/2004 <mailto:hbartko@mppmu.mpg.de>
|
---|
19 | ! Author(s): Thomas Bretz, 08/2006 <mailto:tbretz@astro.uni-wuerzburg.de>
|
---|
20 | !
|
---|
21 | ! Copyright: MAGIC Software Development, 2000-2006
|
---|
22 | !
|
---|
23 | !
|
---|
24 | \* ======================================================================== */
|
---|
25 |
|
---|
26 | //////////////////////////////////////////////////////////////////////////////
|
---|
27 | //
|
---|
28 | // MExtralgoDigitalFilter
|
---|
29 | //
|
---|
30 | //////////////////////////////////////////////////////////////////////////////
|
---|
31 | #include "MExtralgoDigitalFilter.h"
|
---|
32 |
|
---|
33 | using namespace std;
|
---|
34 |
|
---|
35 | Float_t MExtralgoDigitalFilter::ExtractNoise(Int_t iter) const
|
---|
36 | {
|
---|
37 | return Eval(fWeightsAmp, 0, iter-fWeightsPerBin/2);
|
---|
38 | }
|
---|
39 |
|
---|
40 | // -----------------------------------------------------------------------------
|
---|
41 | //
|
---|
42 | // Calculates the chi2 of the fit, once the weights have been iterated.
|
---|
43 | // Argument: time, obtained after a call to EvalDigitalFilterHiGain
|
---|
44 | //
|
---|
45 | Float_t MExtralgoDigitalFilter::GetChisq(const Int_t maxp, const Int_t frac, const Float_t sum) const
|
---|
46 | {
|
---|
47 | /*
|
---|
48 | TMatrix g (windowh,1);
|
---|
49 | TMatrix gt(windowh,1);
|
---|
50 | TMatrix y (windowh,1);
|
---|
51 |
|
---|
52 | const Float_t etau = fFineAdjustHi*sumhi;
|
---|
53 | const Float_t t_fine = TMath::Abs(fFineAdjustHi)< 1./fBinningResolutionHiGain ? -fFineAdjustHi : 0.;
|
---|
54 |
|
---|
55 | // if (t_fine==0.)
|
---|
56 | // return -1.;
|
---|
57 |
|
---|
58 | if (fDebug)
|
---|
59 | gLog << all << " fMaxPHi: " << fMaxPHi << " fIterPHi " << fIterPHi << " t_fine: " << t_fine << endl;
|
---|
60 |
|
---|
61 | //
|
---|
62 | // Slide with a window of size windowh over the sample
|
---|
63 | // and calculate the arrays by interpolating the pulse shape using the
|
---|
64 | // fine-tuned time information.
|
---|
65 | //
|
---|
66 | for (Int_t sample=0; sample < windowh; sample++)
|
---|
67 | {
|
---|
68 | const Int_t idx = fArrBinningResHalfHiGain[sample] + fIterPHi;
|
---|
69 | const Int_t ids = fMaxPHi + sample;
|
---|
70 |
|
---|
71 | y [sample][0] = fHiGainSignalDF[ids];
|
---|
72 | g [sample][0] = t_fine >= 0
|
---|
73 | ? (fPulseShapeHiGain[idx] + t_fine*(fPulseShapeHiGain[idx+1] -fPulseShapeHiGain[idx]) )*sumhi
|
---|
74 | : (fPulseShapeHiGain[idx] + t_fine*(fPulseShapeHiGain[idx] -fPulseShapeHiGain[idx-1]))*sumhi;
|
---|
75 | gt[sample][0] = t_fine >= 0
|
---|
76 | ? (fPulseShapeDotHiGain[idx] + t_fine*(fPulseShapeDotHiGain[idx+1]-fPulseShapeDotHiGain[idx]) )*etau
|
---|
77 | : (fPulseShapeDotHiGain[idx] + t_fine*(fPulseShapeDotHiGain[idx] -fPulseShapeDotHiGain[idx-1]) )*etau;
|
---|
78 | }
|
---|
79 |
|
---|
80 | TMatrix second = y - g - gt;
|
---|
81 | TMatrix first(TMatrix::kTransposed,second);
|
---|
82 | TMatrix chisq = first * ((*fBHiInv)*second);
|
---|
83 |
|
---|
84 | return chisq[0][0]/(windowh-2);
|
---|
85 | */
|
---|
86 | /*
|
---|
87 |
|
---|
88 | TMatrix S(fWindowSize, 1); // Signal (start==start of window)
|
---|
89 | for (int i=0; i<fWindowSize; i++)
|
---|
90 | S[i][0] = fVal[i+maxp];
|
---|
91 |
|
---|
92 | TMatrix g(fWindowSize, 1);
|
---|
93 | //TMatrix gT(fWindowSize, 1);
|
---|
94 |
|
---|
95 | for (int i=0; i<fWindowSize; i++)
|
---|
96 | {
|
---|
97 | Int_t idx = fWeightsPerBin*i + frac;
|
---|
98 |
|
---|
99 | // FIXME: Maybe we could do an interpolation on time-fineadj?
|
---|
100 | //Float_t slope = fPulseShapeHiGain[idx+1] -fPulseShapeHiGain[idx];
|
---|
101 | //Float_t slopet = fPulseShapeDotHiGain[idx+1]-fPulseShapeDotHiGain[idx];
|
---|
102 |
|
---|
103 | g[i][0] = fPulseShapeHiGain[idx] *sumhi;
|
---|
104 | //gT[i][0] = fPulseShapeHiGainDot[idx]*tau;
|
---|
105 | }
|
---|
106 |
|
---|
107 | TMatrix Ainv; // Autocorrelation Matrix (inverted)
|
---|
108 |
|
---|
109 | TMatrix m = S - g;// - gT;
|
---|
110 | TMatrix mT(TMatrix::kTransposed, m);
|
---|
111 |
|
---|
112 | TMatrix chisq = mT * (Ainv*m);
|
---|
113 |
|
---|
114 | return chisq[0][0]/(fWindowSize-2);
|
---|
115 | */
|
---|
116 |
|
---|
117 | Double_t sumc = 0;
|
---|
118 |
|
---|
119 | TMatrix d(fWindowSize, 1); // Signal (start==start of window)
|
---|
120 | for (int i=0; i<fWindowSize; i++)
|
---|
121 | {
|
---|
122 | d[i][0] = fVal[i+maxp]/sum - fPulseShape[fWeightsPerBin*i + frac];
|
---|
123 | sumc += d[i][0]*d[i][0];
|
---|
124 | }
|
---|
125 |
|
---|
126 | /*
|
---|
127 | TMatrix Ainv; // Autocorrelation Matrix (inverted)
|
---|
128 |
|
---|
129 | TMatrix dT(TMatrix::kTransposed, d);
|
---|
130 |
|
---|
131 | TMatrix chisq = dT * (*fAinv*d);
|
---|
132 | */
|
---|
133 | return sumc;//chisq[0][0]/(fWindowSize-2);
|
---|
134 | }
|
---|
135 |
|
---|
136 | #include <iostream>
|
---|
137 | void MExtralgoDigitalFilter::Extract(Int_t maxpos)
|
---|
138 | {
|
---|
139 | fSignal = 0; // default is: no pulse found
|
---|
140 | fTime = -1; // default is: out if range (--> random)
|
---|
141 | fSignalDev = 0; // default is: valid
|
---|
142 | fTimeDev = 0; // default is: valid
|
---|
143 |
|
---|
144 | // FIXME: How to handle saturation?
|
---|
145 |
|
---|
146 | Double_t maxamp = -FLT_MAX;
|
---|
147 | Int_t maxp = -1;
|
---|
148 |
|
---|
149 | //
|
---|
150 | // Calculate the sum of the first fWindowSize slices
|
---|
151 | //
|
---|
152 | // For the case of an even number of weights/bin there is
|
---|
153 | // no central bin.So we create an artificial central bin.
|
---|
154 | for (Int_t i=0; i<fNum-fWindowSize+1; i++)
|
---|
155 | {
|
---|
156 | const Double_t sumamp = Eval(fWeightsAmp, i);
|
---|
157 | if (sumamp>maxamp)
|
---|
158 | {
|
---|
159 | maxamp = sumamp;
|
---|
160 | maxp = i;
|
---|
161 | }
|
---|
162 | }
|
---|
163 |
|
---|
164 | /*
|
---|
165 | // This could be for a fast but less accurate extraction....
|
---|
166 | maxamp = Eval(fWeightsAmp, maxpos-fWindowSize/2);
|
---|
167 | maxp = maxpos-fWindowSize/2;
|
---|
168 | */
|
---|
169 |
|
---|
170 | // The number of available slices were smaller than the
|
---|
171 | // extraction window size of the extractor
|
---|
172 | if (maxp<0)
|
---|
173 | {
|
---|
174 | fSignalDev = -1; // means: is invalid
|
---|
175 | fTimeDev = -1; // means: is invalid
|
---|
176 | return;
|
---|
177 | }
|
---|
178 |
|
---|
179 | // For some reason (by chance or because all slices contain 0)
|
---|
180 | // maxamp is 0. This means the signal is zero and no arrival
|
---|
181 | // time can be extracted (but both informations are valid)
|
---|
182 | if (maxamp==0)
|
---|
183 | return;
|
---|
184 |
|
---|
185 | Int_t frac = 0;
|
---|
186 | const Int_t shift = AlignExtractionWindow(maxp, frac, maxamp);
|
---|
187 |
|
---|
188 | // For safety we do another iteration if we have
|
---|
189 | // shifted the extraction window
|
---|
190 | if (TMath::Abs(shift)>0)
|
---|
191 | AlignExtractionWindow(maxp, frac);
|
---|
192 |
|
---|
193 | // Now we have found the "final" position: extract time and charge
|
---|
194 | const Double_t sumamp = Eval(fWeightsAmp, maxp, frac);
|
---|
195 |
|
---|
196 | fSignal = sumamp;
|
---|
197 | if (sumamp == 0)
|
---|
198 | return;
|
---|
199 |
|
---|
200 | const Double_t sumtime = Eval(fWeightsTime, maxp, frac);
|
---|
201 |
|
---|
202 | // This is used to align the weights to bins between
|
---|
203 | // -0.5/fWeightsPerBin and 0.5/fWeightsPerBin instead of
|
---|
204 | // 0 and 1./fWeightsPerBin
|
---|
205 | const Double_t binoffset = TMath::Even(fWeightsPerBin) ? 0.5 : 0;
|
---|
206 |
|
---|
207 | fTime = maxp /*- 0.5*/ - Double_t(frac+binoffset)/fWeightsPerBin;
|
---|
208 |
|
---|
209 | // To let the lowest value which can be safely extracted be>0:
|
---|
210 | // Take also a possible offset from timefineadjust into account
|
---|
211 | // Sould it be: fTime += fWindowSize/2; ???
|
---|
212 | fTime += 0.5 + 0.5/fWeightsPerBin;
|
---|
213 | // In the ideal case the would never get <0
|
---|
214 | // But timefineadjust can be >0.05 (in 60% of the cases)
|
---|
215 |
|
---|
216 | // Define in each extractor a lowest and highest extracted value!
|
---|
217 |
|
---|
218 | // here, the first high-gain slice is already included
|
---|
219 | // in the fTimeShiftHiGain this shifts the time to the
|
---|
220 | // start of the rising edge
|
---|
221 |
|
---|
222 | // This is from MExtractTimeAndChargeDigitalFilter
|
---|
223 | // fTime += 0.5 + 1./fWeightsPerBin;
|
---|
224 |
|
---|
225 | // Now there is a difference between the rising edge and
|
---|
226 | // the extracted time. This must be applied after
|
---|
227 | // the randomization in case of wrog values
|
---|
228 |
|
---|
229 | const Float_t timefineadjust = sumtime/sumamp;
|
---|
230 |
|
---|
231 | // FIXME: Is 3 a good value?
|
---|
232 | //if (TMath::Abs(timefineadjust)*fWeightsPerBin < 3.)
|
---|
233 | // fTime -= timefineadjust;
|
---|
234 |
|
---|
235 | // if (TMath::FloorNint(timefineadjust+0.5)==0)
|
---|
236 |
|
---|
237 | //if (TMath::Abs(timefineadjust) < 0.2)
|
---|
238 | fTime -= timefineadjust;
|
---|
239 | }
|
---|
240 |
|
---|
241 |
|
---|
242 | #include <TH1.h>
|
---|
243 | #include <TH2.h>
|
---|
244 | #include <TMatrixD.h>
|
---|
245 | #include <TArrayF.h>
|
---|
246 | #include <iostream>
|
---|
247 | #include <TSpline.h>
|
---|
248 | #include <TProfile.h>
|
---|
249 |
|
---|
250 | Int_t MExtralgoDigitalFilter::CalculateWeights(TH1 &shape, const TH2 &autocorr, TArrayF &weightsamp, TArrayF &weightstime, Int_t wpb)
|
---|
251 | {
|
---|
252 | const Int_t weightsperbin = wpb<=0?shape.GetNbinsX()/autocorr.GetNbinsX():wpb;
|
---|
253 |
|
---|
254 | if (wpb<=0 && weightsperbin*autocorr.GetNbinsX()!=shape.GetNbinsX())
|
---|
255 | {
|
---|
256 | cout << "ERROR - Number of bins mismatch..." << endl;
|
---|
257 | cout << " Shape: " << shape.GetNbinsX() << endl;
|
---|
258 | cout << " ACorr: " << autocorr.GetNbinsX() << endl;
|
---|
259 | return -1;
|
---|
260 | }
|
---|
261 |
|
---|
262 | const TAxis &axe = *shape.GetXaxis();
|
---|
263 |
|
---|
264 | const Int_t first = axe.GetFirst()/weightsperbin;
|
---|
265 | const Int_t last = axe.GetLast() /weightsperbin;
|
---|
266 |
|
---|
267 | const Int_t width = last-first;
|
---|
268 |
|
---|
269 | cout << "Range: " << first << " <= bin < " << last << endl;
|
---|
270 | cout << "Window: " << width << endl;
|
---|
271 | cout << "W/Bin: " << weightsperbin << endl;
|
---|
272 |
|
---|
273 | // ---------------------------------------------
|
---|
274 |
|
---|
275 | const Float_t sum = shape.Integral(first*weightsperbin, last*weightsperbin-1)/weightsperbin;
|
---|
276 | shape.Scale(1./sum);
|
---|
277 |
|
---|
278 | cout << "Sum: " << sum << endl;
|
---|
279 |
|
---|
280 | // TGraph gr(&shape);
|
---|
281 | // TSpline5 val("Signal", &gr);
|
---|
282 |
|
---|
283 | // FIXME: DELETE!!!
|
---|
284 | TH1 &derivative = *static_cast<TH1*>(shape.Clone());
|
---|
285 | derivative.SetDirectory(0);
|
---|
286 | derivative.Reset();
|
---|
287 |
|
---|
288 | for (int i=0; i<derivative.GetNbinsX(); i++)
|
---|
289 | {
|
---|
290 | // const Float_t x = derivative.GetBinCenter(i+1);
|
---|
291 | // derivative.SetBinContent(i+1, val.Derivative(x));
|
---|
292 |
|
---|
293 | const Float_t binm = shape.GetBinContent(i+1-1);
|
---|
294 | const Float_t binp = shape.GetBinContent(i+1+1);
|
---|
295 |
|
---|
296 | const Float_t der = (binp-binm)/2./shape.GetBinWidth(1);
|
---|
297 |
|
---|
298 | derivative.SetBinContent(i+1, der);
|
---|
299 |
|
---|
300 | if (derivative.InheritsFrom(TProfile::Class()))
|
---|
301 | static_cast<TProfile&>(derivative).SetBinEntries(i+1,1);
|
---|
302 | }
|
---|
303 |
|
---|
304 | // ---------------------------------------------
|
---|
305 |
|
---|
306 | TMatrixD B(width, width);
|
---|
307 | for (Int_t i=0; i<width; i++)
|
---|
308 | for (Int_t j=0; j<width; j++)
|
---|
309 | B[i][j]=autocorr.GetBinContent(i+1/*first*/, j+1/*first*/);
|
---|
310 |
|
---|
311 | const TMatrixD Binv(TMatrixD::kInverted, B);
|
---|
312 |
|
---|
313 | // ---------------------------------------------
|
---|
314 |
|
---|
315 | weightsamp.Set(width*weightsperbin);
|
---|
316 | weightstime.Set(width*weightsperbin);
|
---|
317 |
|
---|
318 | for (Int_t i=0; i<weightsperbin; i++)
|
---|
319 | {
|
---|
320 | TMatrixD g(width, 1);
|
---|
321 | TMatrixD d(width, 1);
|
---|
322 |
|
---|
323 | for (Int_t bin=0; bin<width; bin++)
|
---|
324 | {
|
---|
325 | const Int_t idx = weightsperbin*(bin+first) + i;
|
---|
326 |
|
---|
327 | g[bin][0]=shape.GetBinContent(idx+1);
|
---|
328 | d[bin][0]=derivative.GetBinContent(idx+1);
|
---|
329 | }
|
---|
330 |
|
---|
331 | const TMatrixD gT(TMatrixD::kTransposed, g);
|
---|
332 | const TMatrixD dT(TMatrixD::kTransposed, d);
|
---|
333 |
|
---|
334 | const TMatrixD denom = (gT*(Binv*g))*(dT*(Binv*d)) - (dT*(Binv*g))*(dT*(Binv*g));
|
---|
335 |
|
---|
336 | if (denom[0][0]==0)
|
---|
337 | {
|
---|
338 | cout << "ERROR - Division by zero: denom[0][0]==0 for i=" << i << "." << endl;
|
---|
339 | return -1;
|
---|
340 | }
|
---|
341 |
|
---|
342 | const TMatrixD w_amp = (dT*(Binv*d))*(gT*Binv) - (gT*(Binv*d))*(dT*Binv);
|
---|
343 | const TMatrixD w_time = (gT*(Binv*g))*(dT*Binv) - (gT*(Binv*d))*(gT*Binv);
|
---|
344 |
|
---|
345 | for (Int_t bin=0; bin<width; bin++)
|
---|
346 | {
|
---|
347 | const Int_t idx = weightsperbin*bin + i;
|
---|
348 |
|
---|
349 | weightsamp[idx] = w_amp [0][bin]/denom[0][0];
|
---|
350 | weightstime[idx] = w_time[0][bin]/denom[0][0];
|
---|
351 | }
|
---|
352 | }
|
---|
353 |
|
---|
354 | return first*weightsperbin;
|
---|
355 | }
|
---|
356 |
|
---|
357 | Int_t MExtralgoDigitalFilter::CalculateWeights2(TH1 &shape, const TH2 &autocorr, TArrayF &weightsamp, TArrayF &weightstime, Int_t wpb)
|
---|
358 | {
|
---|
359 | const Int_t weightsperbin = wpb<=0?shape.GetNbinsX()/autocorr.GetNbinsX():wpb;
|
---|
360 |
|
---|
361 | if (wpb<=0 && weightsperbin*autocorr.GetNbinsX()!=shape.GetNbinsX())
|
---|
362 | {
|
---|
363 | cout << "ERROR - Number of bins mismatch..." << endl;
|
---|
364 | cout << " Shape: " << shape.GetNbinsX() << endl;
|
---|
365 | cout << " ACorr: " << autocorr.GetNbinsX() << endl;
|
---|
366 | return -1;
|
---|
367 | }
|
---|
368 |
|
---|
369 | const TAxis &axe = *shape.GetXaxis();
|
---|
370 |
|
---|
371 | const Int_t first = axe.GetFirst()/weightsperbin;
|
---|
372 | const Int_t last = axe.GetLast() /weightsperbin;
|
---|
373 |
|
---|
374 | const Int_t width = last-first;
|
---|
375 |
|
---|
376 | cout << "Range: " << first << " <= bin < " << last << endl;
|
---|
377 | cout << "Window: " << width << endl;
|
---|
378 | cout << "W/Bin: " << weightsperbin << endl;
|
---|
379 |
|
---|
380 | // ---------------------------------------------
|
---|
381 |
|
---|
382 | const Float_t sum = shape.Integral(first*weightsperbin, last*weightsperbin-1)/weightsperbin;
|
---|
383 | shape.Scale(1./sum);
|
---|
384 |
|
---|
385 | TGraph gr(&shape);
|
---|
386 | TSpline5 val("Signal", &gr);
|
---|
387 |
|
---|
388 | // FIXME: DELETE!!!
|
---|
389 | TH1 &derivative = *static_cast<TH1*>(shape.Clone());
|
---|
390 | derivative.SetDirectory(0);
|
---|
391 | derivative.Reset();
|
---|
392 |
|
---|
393 | for (int i=0; i<derivative.GetNbinsX(); i++)
|
---|
394 | {
|
---|
395 | const Float_t x = derivative.GetBinCenter(i+1);
|
---|
396 | derivative.SetBinContent(i+1, val.Derivative(x));
|
---|
397 |
|
---|
398 | /*
|
---|
399 | const Float_t binm = shape.GetBinContent(i+1-1);
|
---|
400 | const Float_t binp = shape.GetBinContent(i+1+1);
|
---|
401 |
|
---|
402 | const Float_t der = (binp-binm)/2./shape.GetBinWidth(1);
|
---|
403 |
|
---|
404 | derivative.SetBinContent(i+1, der);
|
---|
405 | */
|
---|
406 | }
|
---|
407 |
|
---|
408 | // ---------------------------------------------
|
---|
409 |
|
---|
410 | TMatrixD B(width, width);
|
---|
411 | for (Int_t i=0; i<width; i++)
|
---|
412 | for (Int_t j=0; j<width; j++)
|
---|
413 | B[i][j]=autocorr.GetBinContent(i+first, j+first);
|
---|
414 | B.Invert();
|
---|
415 |
|
---|
416 | // ---------------------------------------------
|
---|
417 |
|
---|
418 | weightsamp.Set(width*weightsperbin);
|
---|
419 | weightstime.Set(width*weightsperbin);
|
---|
420 |
|
---|
421 | for (Int_t i=0; i<weightsperbin; i++)
|
---|
422 | {
|
---|
423 | TMatrixD g(width, 1);
|
---|
424 | TMatrixD d(width, 1);
|
---|
425 |
|
---|
426 | for (Int_t bin=0; bin<width; bin++)
|
---|
427 | {
|
---|
428 | const Int_t idx = weightsperbin*(bin+first) + i;
|
---|
429 |
|
---|
430 | g[bin][0]=shape.GetBinContent(idx+1);
|
---|
431 | d[bin][0]=derivative.GetBinContent(idx+1);
|
---|
432 | }
|
---|
433 |
|
---|
434 | const TMatrixD gT(TMatrixD::kTransposed, g);
|
---|
435 | const TMatrixD dT(TMatrixD::kTransposed, d);
|
---|
436 |
|
---|
437 | const TMatrixD denom = (gT*(B*g))*(dT*(B*d)) - (dT*(B*g))*(dT*(B*g));
|
---|
438 |
|
---|
439 | if (denom[0][0]==0)
|
---|
440 | {
|
---|
441 | cout << "ERROR - Division by zero: denom[0][0]==0 for i=" << i << "." << endl;
|
---|
442 | return -1;
|
---|
443 | }
|
---|
444 |
|
---|
445 | const TMatrixD w_amp = (dT*(B*d))*(gT*B) - (gT*(B*d))*(dT*B);
|
---|
446 | const TMatrixD w_time = (gT*(B*g))*(dT*B) - (gT*(B*d))*(gT*B);
|
---|
447 |
|
---|
448 | for (Int_t bin=0; bin<width; bin++)
|
---|
449 | {
|
---|
450 | const Int_t idx = weightsperbin*bin + i;
|
---|
451 |
|
---|
452 | weightsamp[idx] = w_amp [0][bin]/denom[0][0];
|
---|
453 | weightstime[idx] = w_time[0][bin]/denom[0][0];
|
---|
454 | }
|
---|
455 | }
|
---|
456 | return first*weightsperbin;
|
---|
457 | }
|
---|