CMS 3D CMS Logo

TSFit.cc
Go to the documentation of this file.
1 /*
2  * \class TSFit
3  *
4  * \author: Jean-Pierre Pansart - CEA/Saclay
5  */
6 
8 
9 #include <cstdio>
10 #include <cmath>
11 #include <cstring>
12 
13 //ClassImp(TSFit)
14 
15 //------------------------------------------------------------------------
16 // TSFit provide fitting methods of pulses with third degree polynomial
17 //
18 
19 TSFit::TSFit( int size, int size_sh ) {
20  sdim = size;
21  plshdim = size_sh;
22  // sample_flag = new int[size];
23 // t = new double[sdim];
24 // z = new double[sdim];
25 // f = new double[sdim];
26 // acc = new double[sdim];
27 // adfmx = new double[sdim];
28 // adcp = new double[sdim];
29 // maskp3 = new double[sdim];
30 // corel = new double[sdim];
31 // nbcor = new double[sdim];
32 // int k;
33 // ff = new double *[sdim];
34 // for(k=0;k<sdim;k++)ff[k] = new double[4];
35 // der = new double *[sdim];
36 // for(k=0;k<sdim;k++)der[k] = new double[5];
37 
38 
39 }
40 
41 void TSFit::set_params( int n_samples, int niter, int n_presmpl,
42  int sample_min, int sample_max,
43  double time_of_max, double chi2_max,
44  int nsbm, int nsam ){
45  // parameters initialisation of the fit package
46  // nsbm n_samples_bef_max, nsam n_samples_aft_max
47 
48  nbs = n_samples;
49  nbr_iter_fit = niter;
50  n_presamples = n_presmpl;
51  iinf = sample_min;
52  isup = sample_max;
53  avtm = time_of_max;
55  n_samples_bef_max = nsbm;
56  n_samples_aft_max = nsam;
57 
58  norme = 0.;
59  alpha_th = 2.20;
60  beta_th = 1.11;
61 
62  int k;
63 
64  for(k=0;k<=nbs;k++){
65  sample_flag[k] = 0;
66  }
67 
68  for(k=sample_min;k<=sample_max;k++){
69  sample_flag[k] = 1;
70  }
71  /*
72  int lim1 = ( iinf > n_presamples ) ? n_presamples : iinf;
73  for(int k=lim1;k<=sample_max;k++){
74  sample_flag[k] = 2;
75  }
76  */
77  // printf( "sample_fag : " );
78 // for(k=0;k<=nbs;k++){
79 // printf( "%1d ", sample_flag[k] );
80 // }
81 // printf( "\n" );
82 
83 }
84 
85 void TSFit::init_errmat( double noise_initialvalue){
86  // Input: noise_initial value noise (in adc channels) as read in the
87  // data base.
88 /*------------------------------------------------------------------------*/
89 
90  int i, j;
91  //double one_over_noisesq;
92 
93  //one_over_noisesq = 1. / ( noise_initialvalue * noise_initialvalue );
94  for(i=0;i<sdim;i++ ){
95  for(j=0;j<sdim;j++){
96  errmat[i][j] = noise_initialvalue;
97  //errmat[i][j] = 0.;
98  }
99  //errmat[i][i] = one_over_noisesq;
100  }
101 }
102 
103 double TSFit::fpol3dg ( int nmxul,
104  double *parom,
105  double *mask,
106  double *adc){
107  // fit third degree polynomial
108  // nmxul array adc[] length
109  // parom return parameters (a0,a1,a2,a3,pos max,height)
110  // fplo3dg uses only the diagonal terms of errmat[][]
111  // errmat inverse of the error matrix
112 
113  int i, k, l;
114  double h, t2, tm, delta, tmp;
115  double xki2, dif, difmx, deglib;
116  double bv[4], s;
117 
118  deglib=(double)nmxul - 4.;
119  for(i=0;i<nmxul;i++){
120  t[i]=i;
121  ff[i][0]=1.;
122  ff[i][1]=t[i];
123  ff[i][2]=t[i]*t[i];
124  ff[i][3]=ff[i][2]*t[i];
125  }
126  /* computation of covariance matrix */
127  for(k=0;k<4;k++){
128  for(l=0;l<4;l++){
129  s=0.;
130  for(i=0;i<nmxul;i++){
131  s=s+ff[i][k]*ff[i][l]*errmat[i][i]*mask[i];
132  }
133  cov[k][l]=s;
134  }
135  s=0.;
136  for(i=0;i<nmxul;i++){
137  s=s+ff[i][k]*adc[i]*errmat[i][i]*mask[i];
138  }
139  bv[k]=s;
140  }
141  /* parameters */
142  inverms( 4, cov, invcov );
143  for(k=0;k<4;k++){
144  s=0.;
145  for(l=0;l<4;l++){
146  s=s+bv[l]*invcov[l][k];
147  }
148  parom[k]=s;
149  }
150 
151  if( parom[3] == 0. ){
152  parom[4] = -1000.;
153  parom[5] = -1000.;
154  parom[6] = -1000.;
155  return 1000000.;
156  }
157  /* worst hit and ki2 */
158  xki2=0.;
159  difmx=0.;
160  for(i=0;i<nmxul;i++ ){
161  t2=t[i]*t[i];
162  h= parom[0]+parom[1]*t[i]+parom[2]*t2+parom[3]*t2*t[i];
163  dif=(adc[i]-h)*mask[i];
164  xki2=xki2+dif*dif*errmat[i][i];
165  if(dif > difmx) {
166  difmx=dif;
167  }
168  }
169  if(deglib > 0.5) xki2=xki2/deglib;
170  /* amplitude and maximum position */
171  delta=parom[2]*parom[2]-3.*parom[3]*parom[1];
172  if(delta > 0.){
173  delta=sqrt(delta);
174  tm=-(delta+parom[2])/(3.*parom[3]);
175  tmp=(delta-parom[2])/(3.*parom[3]);
176  }
177  else{
178  parom[4] = -1000.;
179  parom[5] = -1000.;
180  parom[6] = -1000.;
181  return xki2;
182  }
183  parom[4]=tm;
184  parom[5]= parom[0]+parom[1]*tm+parom[2]*tm*tm+parom[3]*tm*tm*tm;
185  parom[6]=tmp;
186  return xki2;
187 }
188 double TSFit::inverms( int n, double g[matdim][matdim], double ginv[matdim][matdim] ){
189  // inversion of a positive definite symetric matrix of size n
190 
191  int i, j, k, jj;
192  double r, s;
193  double deter=0;
194 
195  /* initialisation */
196 
197  if( n > matdim ){
198  printf(
199  "ERROR : trying to use TSFit::inverms with size %d( max allowed %d\n",
200  n, matdim );
201  return -999.;
202  }
203 
204  int zero = 0;
205  memset( (char *)al, zero, 8*n*n );
206  memset( (char *)be, zero, 8*n*n );
207  /*
208  for(i=0;i<n;i++){
209  for(j=0;j<n;j++){
210  al[i][j] = 0.;
211  be[i][j] = 0.;
212  }
213  }
214  */
215  /* decomposition en vecteurs sur une base orthonormee */
216  al[0][0] = sqrt( g[0][0] );
217  for(i=1;i<n;i++){
218  al[i][0] = g[0][i] / al[0][0];
219  for(j=1;j<=i;j++){
220  s=0.;
221  for(k=0;k<=j-1;k++){
222  s = s + al[i][k] * al[j][k];
223  }
224  r= g[i][j] - s;
225  if( j < i ) al[i][j] = r / al[j][j];
226  if( j == i ) al[i][j] = sqrt( r );
227  }
228  }
229  /* inversion de la matrice al */
230  be[0][0] = 1./al[0][0];
231  for(i=1;i<n;i++){
232  be[i][i] = 1. / al[i][i];
233  for(j=0;j<i;j++){
234  jj=i-j-1;
235  s=0.;
236  for(k=jj+1;k<=i;k++){
237  s=s+ be[i][k] * al[k][jj];
238  }
239  be[i][jj]=-s/al[jj][jj];
240  }
241  }
242  /* calcul de la matrice ginv */
243  for(i=0;i<n;i++){
244  for(j=0;j<n;j++){
245  s=0.;
246  for(k=0;k<n;k++){
247  s=s+ be[k][i] * be[k][j];
248  }
249  ginv[i][j]=s;
250  }
251  }
252 
253  return deter;
254 }
255 
257  double *bdc,
258  double *ret_dat ){
259  // third degree polynomial fit of the pulse summit.
260  // samples are contained in array bdc and must be pedestal
261  // substracted.
262  // only samples having sample_flag >= 1 are used.
263  // the unit of time is one clock unit, that is to say 25 ns.
264  // output: ret_dat[0] = pulse height
265  // ret_dat[1] position of maximum in the sample frame in clock units
266  // ret_dat[2] adc value of the highest sample
267  // ret_dat[3] number of the highest sample
268  // ret_dat[4] lower sample number used for fitting
269  // ret_dat[5] upper sample number used for fitting
270  // errmat inverse of the error matrix
271 
272  int i;
273  int nus;
274  double xki2;
275  double tm, tmp, amp;
276 
277 
278  ret_dat[0] = -999.;
279  ret_dat[1] = -999.;
280 
281  // search the maximum
282  double val_max = 0.;
283  int imax = 0;
284  for(i=0;i<nbs;i++){
285  if( sample_flag[i] == 0 )continue;
286  if( bdc[i] > val_max ){
287  val_max = bdc[i];
288  imax = i;
289  }
290  }
291 
292  if( (val_max*val_max) * errmat[imax][imax] < 16. )return -118;
293 
294  // if( imax != 9 )printf( "imax : %d !!!!!!!!!!!!!!!!!!!!!!!!!!!\n", imax );
295 
296  if( norme == 0. )norme = val_max;
297 
298  // look for samples above 1/3 of maximum before and 1/2 after
299  double val2 = val_max / 2.;
300  double val3 = val_max / 2.;
301  int ilow = iinf;
302  int ihig = 0;
303 
304  for(i=iinf;i<=isup;i++){
305  if( sample_flag[i] >= 1 ){
306  if( ( bdc[i] < val3 ) && ( i < imax ) )ilow = i;
307  if( bdc[i] > val2 )ihig = i;
308  }
309  }
310 
311  ilow++;
312 
313  //ilow = imax - 1;
314 
315  /* le test suivant, apparemment idiot, est mis a cause des sequences 0. 2048. qui apparaissent dans certains mauvais evts JPP 11/09/00 */
316 
317  if( ihig == ilow)return -105;
318  if( ilow == imax )ilow = ilow-1;
319  //if( ihig - ilow < 3 )ihig = ilow + 3;
320  ihig = ilow + 3;
321 
322  /* printf(" third degree: ilow %d ihig %d \n",ilow,ihig); */
323  nus=0;
324  int number_of_good_samples = 0;
325  for(i=ilow;i<=ihig;i++){
326  maskp3[nus] = 0;
327  adfmx[nus] = 0.;
328 /* printf(" adc %f sample_flag %d number_of good_samples %d \n",bdc[i],sample_flag[i],number_of_good_samples); */
329  if( sample_flag[i] >= 1 ){
330  adfmx[nus] = bdc[i];
331  maskp3[nus] = 1.;
332  number_of_good_samples++;
333  }
334  nus++;
335  }
336 
337  if( number_of_good_samples < 4 ){
338  return( -106 );
339  }
340 
341  xki2 = fpol3dg( nus, &parfp3[0], &maskp3[0], &adfmx[0]);
342 
343  /* printf( "fpol3dg-----------------------------------> %f %f %f %f %f\n",
344  parfp3[0], parfp3[1], parfp3[2], parfp3[3], parfp3[4] ); */
345 
346  tm = parfp3[4] + (float)ilow;
347  amp = parfp3[5];
348 
349  if( amp * amp * errmat[0][0] < 2. )return -101.;
350  tmp = parfp3[6] + (float)ilow;
351 
352  /*
353  validation of fit quality. Most of the time the fit is done with
354  four samples, therefore there is no possible ki2 check. When more than
355  4 samples are used the ki2 is often bad. So, in order to suppress some
356  events with bad samples, a consistency check on the position of the
357  maximum and minimum of the 3rd degree polynomial is used.
358  */
359 
360  if( xki2 > xki2_max ){
361  return -102.;
362  }
363  if( (tm < (double)ilow ) || (tm > (double)ihig)){
364  return -103.;
365  }
366 
367  if( (tmp > (double)ilow ) && (tmp < (double)ihig - 1.) ){
368  return -104.;
369  }
370 
371 
372  ret_dat[0] = amp;
373  ret_dat[1] = tm;
374  ret_dat[2] = val_max;
375  ret_dat[3] = (double)imax;
376  ret_dat[4] = (double)ilow;
377  ret_dat[5] = (double)ihig;
378  ret_dat[6] = (double)tmp;
379  int k;
380  for(i=0;i<4;i++){
381  k=i+7;
382  ret_dat[k] = parfp3[i];
383  }
384 
385  return xki2;
386 }
387 
388 
389 
390 
391 
392 
393 
394 
395 
396 
397 
398 
399 
size
Write out results.
double avtm
Definition: TSFit.h:26
dbl * delta
Definition: mlp_gen.cc:36
TSFit(int size=14, int size_sh=650)
Definition: TSFit.cc:19
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
int n_samples_bef_max
Definition: TSFit.h:27
int sample_flag[14]
Definition: TSFit.h:51
double alpha_th
Definition: TSFit.h:35
int nbs
Definition: TSFit.h:23
double adfmx[14]
Definition: TSFit.h:56
#define matdim
Definition: TSFit.h:9
double al[5][5]
Definition: TSFit.h:38
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e g
Definition: Activities.doc:4
double xki2_max
Definition: TSFit.h:32
double fit_third_degree_polynomial(double *, double *)
Definition: TSFit.cc:256
double fpol3dg(int, double *, double *, double *)
Definition: TSFit.cc:103
int plshdim
Definition: TSFit.h:68
int n_presamples
Definition: TSFit.h:24
double ff[14][4]
Definition: TSFit.h:62
double be[5][5]
Definition: TSFit.h:38
double norme
Definition: TSFit.h:32
T sqrt(T t)
Definition: SSEVec.h:18
double beta_th
Definition: TSFit.h:35
void init_errmat(double)
Definition: TSFit.cc:85
double maskp3[14]
Definition: TSFit.h:58
constexpr int adc(sample_type sample)
get the ADC sample (12 bits)
int nbr_iter_fit
Definition: TSFit.h:36
double inverms(int, double xx[5][5], double yy[5][5])
Definition: TSFit.cc:188
int sdim
Definition: TSFit.h:67
int k[5][pyjets_maxn]
double invcov[5][5]
Definition: TSFit.h:37
double t[14]
Definition: TSFit.h:52
double errmat[14][14]
Definition: TSFit.h:50
std::vector< std::vector< double > > tmp
Definition: MVATrainer.cc:100
int n_samples_aft_max
Definition: TSFit.h:28
int isup
Definition: TSFit.h:25
int iinf
Definition: TSFit.h:25
void set_params(int, int, int, int, int, double, double, int, int)
Definition: TSFit.cc:41
double parfp3[10]
Definition: TSFit.h:42
double cov[5][5]
Definition: TSFit.h:37