Merge "Improve master-specific CMake behavior."
[alexxy/gromacs.git] / src / gromacs / gmxana / gmx_analyze.c
1 /*  -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
2  *
3  *
4  *                This source code is part of
5  *
6  *                 G   R   O   M   A   C   S
7  *
8  *          GROningen MAchine for Chemical Simulations
9  *
10  *                        VERSION 3.2.0
11  * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
12  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
13  * Copyright (c) 2001-2004, The GROMACS development team,
14  * check out http://www.gromacs.org for more information.
15
16  * This program is free software; you can redistribute it and/or
17  * modify it under the terms of the GNU General Public License
18  * as published by the Free Software Foundation; either version 2
19  * of the License, or (at your option) any later version.
20  *
21  * If you want to redistribute modifications, please consider that
22  * scientific software is very special. Version control is crucial -
23  * bugs must be traceable. We will be happy to consider code for
24  * inclusion in the official distribution, but derived work must not
25  * be called official GROMACS. Details are found in the README & COPYING
26  * files - if they are missing, get the official version at www.gromacs.org.
27  *
28  * To help us fund GROMACS development, we humbly ask that you cite
29  * the papers on the package - you can find them in the top README file.
30  *
31  * For more info, check our website at http://www.gromacs.org
32  *
33  * And Hey:
34  * Green Red Orange Magenta Azure Cyan Skyblue
35  */
36 #ifdef HAVE_CONFIG_H
37 #include <config.h>
38 #endif
39 #include <math.h>
40 #include <string.h>
41 #include "statutil.h"
42 #include "sysstuff.h"
43 #include "typedefs.h"
44 #include "smalloc.h"
45 #include "macros.h"
46 #include "gmx_fatal.h"
47 #include "vec.h"
48 #include "copyrite.h"
49 #include "futil.h"
50 #include "readinp.h"
51 #include "statutil.h"
52 #include "txtdump.h"
53 #include "gstat.h"
54 #include "gmx_statistics.h"
55 #include "xvgr.h"
56 #include "gmx_ana.h"
57 #include "geminate.h"
58
59 #include "gromacs/linearalgebra/matrix.h"
60
61 /* must correspond to char *avbar_opt[] declared in main() */
62 enum {
63     avbarSEL, avbarNONE, avbarSTDDEV, avbarERROR, avbar90, avbarNR
64 };
65
66 static void power_fit(int n, int nset, real **val, real *t)
67 {
68     real *x, *y, quality, a, b, r;
69     int   s, i;
70
71     snew(x, n);
72     snew(y, n);
73
74     if (t[0] > 0)
75     {
76         for (i = 0; i < n; i++)
77         {
78             if (t[0] > 0)
79             {
80                 x[i] = log(t[i]);
81             }
82         }
83     }
84     else
85     {
86         fprintf(stdout, "First time is not larger than 0, using index number as time for power fit\n");
87         for (i = 0; i < n; i++)
88         {
89             x[i] = log(i+1);
90         }
91     }
92
93     for (s = 0; s < nset; s++)
94     {
95         i = 0;
96         for (i = 0; i < n && val[s][i] >= 0; i++)
97         {
98             y[i] = log(val[s][i]);
99         }
100         if (i < n)
101         {
102             fprintf(stdout, "Will power fit up to point %d, since it is not larger than 0\n", i);
103         }
104         lsq_y_ax_b(i, x, y, &a, &b, &r, &quality);
105         fprintf(stdout, "Power fit set %3d:  error %.3f  a %g  b %g\n",
106                 s+1, quality, a, exp(b));
107     }
108
109     sfree(y);
110     sfree(x);
111 }
112
113 static real cosine_content(int nhp, int n, real *y)
114 /* Assumes n equidistant points */
115 {
116     double fac, cosyint, yyint;
117     int    i;
118
119     if (n < 2)
120     {
121         return 0;
122     }
123
124     fac = M_PI*nhp/(n-1);
125
126     cosyint = 0;
127     yyint   = 0;
128     for (i = 0; i < n; i++)
129     {
130         cosyint += cos(fac*i)*y[i];
131         yyint   += y[i]*y[i];
132     }
133
134     return 2*cosyint*cosyint/(n*yyint);
135 }
136
137 static void plot_coscont(const char *ccfile, int n, int nset, real **val,
138                          const output_env_t oenv)
139 {
140     FILE *fp;
141     int   s;
142     real  cc;
143
144     fp = xvgropen(ccfile, "Cosine content", "set / half periods", "cosine content",
145                   oenv);
146
147     for (s = 0; s < nset; s++)
148     {
149         cc = cosine_content(s+1, n, val[s]);
150         fprintf(fp, " %d %g\n", s+1, cc);
151         fprintf(stdout, "Cosine content of set %d with %.1f periods: %g\n",
152                 s+1, 0.5*(s+1), cc);
153     }
154     fprintf(stdout, "\n");
155
156     ffclose(fp);
157 }
158
159 static void regression_analysis(int n, gmx_bool bXYdy,
160                                 real *x, int nset, real **val)
161 {
162     real S, chi2, a, b, da, db, r = 0;
163     int  ok;
164
165     if (bXYdy || (nset == 1))
166     {
167         printf("Fitting data to a function f(x) = ax + b\n");
168         printf("Minimizing residual chi2 = Sum_i w_i [f(x_i) - y_i]2\n");
169         printf("Error estimates will be given if w_i (sigma) values are given\n");
170         printf("(use option -xydy).\n\n");
171         if (bXYdy)
172         {
173             if ((ok = lsq_y_ax_b_error(n, x, val[0], val[1], &a, &b, &da, &db, &r, &S)) != estatsOK)
174             {
175                 gmx_fatal(FARGS, "Error fitting the data: %s",
176                           gmx_stats_message(ok));
177             }
178         }
179         else
180         {
181             if ((ok = lsq_y_ax_b(n, x, val[0], &a, &b, &r, &S)) != estatsOK)
182             {
183                 gmx_fatal(FARGS, "Error fitting the data: %s",
184                           gmx_stats_message(ok));
185             }
186         }
187         chi2 = sqr((n-2)*S);
188         printf("Chi2                    = %g\n", chi2);
189         printf("S (Sqrt(Chi2/(n-2))     = %g\n", S);
190         printf("Correlation coefficient = %.1f%%\n", 100*r);
191         printf("\n");
192         if (bXYdy)
193         {
194             printf("a    = %g +/- %g\n", a, da);
195             printf("b    = %g +/- %g\n", b, db);
196         }
197         else
198         {
199             printf("a    = %g\n", a);
200             printf("b    = %g\n", b);
201         }
202     }
203     else
204     {
205         double chi2, *a, **xx, *y;
206         int    i, j;
207
208         snew(y, n);
209         snew(xx, nset-1);
210         for (j = 0; (j < nset-1); j++)
211         {
212             snew(xx[j], n);
213         }
214         for (i = 0; (i < n); i++)
215         {
216             y[i] = val[0][i];
217             for (j = 1; (j < nset); j++)
218             {
219                 xx[j-1][i] = val[j][i];
220             }
221         }
222         snew(a, nset-1);
223         chi2 = multi_regression(NULL, n, y, nset-1, xx, a);
224         printf("Fitting %d data points in %d sets\n", n, nset-1);
225         printf("chi2 = %g\n", chi2);
226         printf("A =");
227         for (i = 0; (i < nset-1); i++)
228         {
229             printf("  %g", a[i]);
230             sfree(xx[i]);
231         }
232         printf("\n");
233         sfree(xx);
234         sfree(y);
235         sfree(a);
236     }
237 }
238
239 void histogram(const char *distfile, real binwidth, int n, int nset, real **val,
240                const output_env_t oenv)
241 {
242     FILE          *fp;
243     int            i, s;
244     double         min, max;
245     int            nbin;
246 #if (defined SIZEOF_LONG_LONG_INT) && (SIZEOF_LONG_LONG_INT >= 8)
247     long long int *histo;
248 #else
249     double        *histo;
250 #endif
251
252     min = val[0][0];
253     max = val[0][0];
254     for (s = 0; s < nset; s++)
255     {
256         for (i = 0; i < n; i++)
257         {
258             if (val[s][i] < min)
259             {
260                 min = val[s][i];
261             }
262             else if (val[s][i] > max)
263             {
264                 max = val[s][i];
265             }
266         }
267     }
268
269     min = binwidth*floor(min/binwidth);
270     max = binwidth*ceil(max/binwidth);
271     if (min != 0)
272     {
273         min -= binwidth;
274     }
275     max += binwidth;
276
277     nbin = (int)((max - min)/binwidth + 0.5) + 1;
278     fprintf(stderr, "Making distributions with %d bins\n", nbin);
279     snew(histo, nbin);
280     fp = xvgropen(distfile, "Distribution", "", "", oenv);
281     for (s = 0; s < nset; s++)
282     {
283         for (i = 0; i < nbin; i++)
284         {
285             histo[i] = 0;
286         }
287         for (i = 0; i < n; i++)
288         {
289             histo[(int)((val[s][i] - min)/binwidth + 0.5)]++;
290         }
291         for (i = 0; i < nbin; i++)
292         {
293             fprintf(fp, " %g  %g\n", min+i*binwidth, (double)histo[i]/(n*binwidth));
294         }
295         if (s < nset-1)
296         {
297             fprintf(fp, "&\n");
298         }
299     }
300     ffclose(fp);
301 }
302
303 static int real_comp(const void *a, const void *b)
304 {
305     real dif = *(real *)a - *(real *)b;
306
307     if (dif < 0)
308     {
309         return -1;
310     }
311     else if (dif > 0)
312     {
313         return 1;
314     }
315     else
316     {
317         return 0;
318     }
319 }
320
321 static void average(const char *avfile, int avbar_opt,
322                     int n, int nset, real **val, real *t)
323 {
324     FILE   *fp;
325     int     i, s, edge = 0;
326     double  av, var, err;
327     real   *tmp = NULL;
328
329     fp = ffopen(avfile, "w");
330     if ((avbar_opt == avbarERROR) && (nset == 1))
331     {
332         avbar_opt = avbarNONE;
333     }
334     if (avbar_opt != avbarNONE)
335     {
336         if (avbar_opt == avbar90)
337         {
338             snew(tmp, nset);
339             fprintf(fp, "@TYPE xydydy\n");
340             edge = (int)(nset*0.05+0.5);
341             fprintf(stdout, "Errorbars: discarding %d points on both sides: %d%%"
342                     " interval\n", edge, (int)(100*(nset-2*edge)/nset+0.5));
343         }
344         else
345         {
346             fprintf(fp, "@TYPE xydy\n");
347         }
348     }
349
350     for (i = 0; i < n; i++)
351     {
352         av = 0;
353         for (s = 0; s < nset; s++)
354         {
355             av += val[s][i];
356         }
357         av /= nset;
358         fprintf(fp, " %g %g", t[i], av);
359         var = 0;
360         if (avbar_opt != avbarNONE)
361         {
362             if (avbar_opt == avbar90)
363             {
364                 for (s = 0; s < nset; s++)
365                 {
366                     tmp[s] = val[s][i];
367                 }
368                 qsort(tmp, nset, sizeof(tmp[0]), real_comp);
369                 fprintf(fp, " %g %g", tmp[nset-1-edge]-av, av-tmp[edge]);
370             }
371             else
372             {
373                 for (s = 0; s < nset; s++)
374                 {
375                     var += sqr(val[s][i]-av);
376                 }
377                 if (avbar_opt == avbarSTDDEV)
378                 {
379                     err = sqrt(var/nset);
380                 }
381                 else
382                 {
383                     err = sqrt(var/(nset*(nset-1)));
384                 }
385                 fprintf(fp, " %g", err);
386             }
387         }
388         fprintf(fp, "\n");
389     }
390     ffclose(fp);
391
392     if (avbar_opt == avbar90)
393     {
394         sfree(tmp);
395     }
396 }
397
398 static real anal_ee_inf(real *parm, real T)
399 {
400     return sqrt(parm[1]*2*parm[0]/T+parm[3]*2*parm[2]/T);
401 }
402
403 static void estimate_error(const char *eefile, int nb_min, int resol, int n,
404                            int nset, double *av, double *sig, real **val, real dt,
405                            gmx_bool bFitAc, gmx_bool bSingleExpFit, gmx_bool bAllowNegLTCorr,
406                            const output_env_t oenv)
407 {
408     FILE    *fp;
409     int      bs, prev_bs, nbs, nb;
410     real     spacing, nbr;
411     int      s, i, j;
412     double   blav, var;
413     char   **leg;
414     real    *tbs, *ybs, rtmp, dens, *fitsig, twooe, tau1_est, tau_sig;
415     real     fitparm[4];
416     real     ee, a, tau1, tau2;
417
418     if (n < 4)
419     {
420         fprintf(stdout, "The number of points is smaller than 4, can not make an error estimate\n");
421
422         return;
423     }
424
425     fp = xvgropen(eefile, "Error estimates",
426                   "Block size (time)", "Error estimate", oenv);
427     if (output_env_get_print_xvgr_codes(oenv))
428     {
429         fprintf(fp,
430                 "@ subtitle \"using block averaging, total time %g (%d points)\"\n",
431                 (n-1)*dt, n);
432     }
433     snew(leg, 2*nset);
434     xvgr_legend(fp, 2*nset, (const char**)leg, oenv);
435     sfree(leg);
436
437     spacing = pow(2, 1.0/resol);
438     snew(tbs, n);
439     snew(ybs, n);
440     snew(fitsig, n);
441     for (s = 0; s < nset; s++)
442     {
443         nbs     = 0;
444         prev_bs = 0;
445         nbr     = nb_min;
446         while (nbr <= n)
447         {
448             bs = n/(int)nbr;
449             if (bs != prev_bs)
450             {
451                 nb  = n/bs;
452                 var = 0;
453                 for (i = 0; i < nb; i++)
454                 {
455                     blav = 0;
456                     for (j = 0; j < bs; j++)
457                     {
458                         blav += val[s][bs*i+j];
459                     }
460                     var += sqr(av[s] - blav/bs);
461                 }
462                 tbs[nbs] = bs*dt;
463                 if (sig[s] == 0)
464                 {
465                     ybs[nbs] = 0;
466                 }
467                 else
468                 {
469                     ybs[nbs] = var/(nb*(nb-1.0))*(n*dt)/(sig[s]*sig[s]);
470                 }
471                 nbs++;
472             }
473             nbr    *= spacing;
474             nb      = (int)(nbr+0.5);
475             prev_bs = bs;
476         }
477         if (sig[s] == 0)
478         {
479             ee   = 0;
480             a    = 1;
481             tau1 = 0;
482             tau2 = 0;
483         }
484         else
485         {
486             for (i = 0; i < nbs/2; i++)
487             {
488                 rtmp         = tbs[i];
489                 tbs[i]       = tbs[nbs-1-i];
490                 tbs[nbs-1-i] = rtmp;
491                 rtmp         = ybs[i];
492                 ybs[i]       = ybs[nbs-1-i];
493                 ybs[nbs-1-i] = rtmp;
494             }
495             /* The initial slope of the normalized ybs^2 is 1.
496              * For a single exponential autocorrelation: ybs(tau1) = 2/e tau1
497              * From this we take our initial guess for tau1.
498              */
499             twooe = 2/exp(1);
500             i     = -1;
501             do
502             {
503                 i++;
504                 tau1_est = tbs[i];
505             }
506             while (i < nbs - 1 &&
507                    (ybs[i] > ybs[i+1] || ybs[i] > twooe*tau1_est));
508
509             if (ybs[0] > ybs[1])
510             {
511                 fprintf(stdout, "Data set %d has strange time correlations:\n"
512                         "the std. error using single points is larger than that of blocks of 2 points\n"
513                         "The error estimate might be inaccurate, check the fit\n",
514                         s+1);
515                 /* Use the total time as tau for the fitting weights */
516                 tau_sig = (n - 1)*dt;
517             }
518             else
519             {
520                 tau_sig = tau1_est;
521             }
522
523             if (debug)
524             {
525                 fprintf(debug, "set %d tau1 estimate %f\n", s+1, tau1_est);
526             }
527
528             /* Generate more or less appropriate sigma's,
529              * also taking the density of points into account.
530              */
531             for (i = 0; i < nbs; i++)
532             {
533                 if (i == 0)
534                 {
535                     dens = tbs[1]/tbs[0] - 1;
536                 }
537                 else if (i == nbs-1)
538                 {
539                     dens = tbs[nbs-1]/tbs[nbs-2] - 1;
540                 }
541                 else
542                 {
543                     dens = 0.5*(tbs[i+1]/tbs[i-1] - 1);
544                 }
545                 fitsig[i] = sqrt((tau_sig + tbs[i])/dens);
546             }
547
548             if (!bSingleExpFit)
549             {
550                 fitparm[0] = tau1_est;
551                 fitparm[1] = 0.95;
552                 /* We set the initial guess for tau2
553                  * to halfway between tau1_est and the total time (on log scale).
554                  */
555                 fitparm[2] = sqrt(tau1_est*(n-1)*dt);
556                 do_lmfit(nbs, ybs, fitsig, 0, tbs, 0, dt*n, oenv,
557                          bDebugMode(), effnERREST, fitparm, 0);
558                 fitparm[3] = 1-fitparm[1];
559             }
560             if (bSingleExpFit || fitparm[0] < 0 || fitparm[2] < 0 || fitparm[1] < 0
561                 || (fitparm[1] > 1 && !bAllowNegLTCorr) || fitparm[2] > (n-1)*dt)
562             {
563                 if (!bSingleExpFit)
564                 {
565                     if (fitparm[2] > (n-1)*dt)
566                     {
567                         fprintf(stdout,
568                                 "Warning: tau2 is longer than the length of the data (%g)\n"
569                                 "         the statistics might be bad\n",
570                                 (n-1)*dt);
571                     }
572                     else
573                     {
574                         fprintf(stdout, "a fitted parameter is negative\n");
575                     }
576                     fprintf(stdout, "invalid fit:  e.e. %g  a %g  tau1 %g  tau2 %g\n",
577                             sig[s]*anal_ee_inf(fitparm, n*dt),
578                             fitparm[1], fitparm[0], fitparm[2]);
579                     /* Do a fit with tau2 fixed at the total time.
580                      * One could also choose any other large value for tau2.
581                      */
582                     fitparm[0] = tau1_est;
583                     fitparm[1] = 0.95;
584                     fitparm[2] = (n-1)*dt;
585                     fprintf(stderr, "Will fix tau2 at the total time: %g\n", fitparm[2]);
586                     do_lmfit(nbs, ybs, fitsig, 0, tbs, 0, dt*n, oenv, bDebugMode(),
587                              effnERREST, fitparm, 4);
588                     fitparm[3] = 1-fitparm[1];
589                 }
590                 if (bSingleExpFit || fitparm[0] < 0 || fitparm[1] < 0
591                     || (fitparm[1] > 1 && !bAllowNegLTCorr))
592                 {
593                     if (!bSingleExpFit)
594                     {
595                         fprintf(stdout, "a fitted parameter is negative\n");
596                         fprintf(stdout, "invalid fit:  e.e. %g  a %g  tau1 %g  tau2 %g\n",
597                                 sig[s]*anal_ee_inf(fitparm, n*dt),
598                                 fitparm[1], fitparm[0], fitparm[2]);
599                     }
600                     /* Do a single exponential fit */
601                     fprintf(stderr, "Will use a single exponential fit for set %d\n", s+1);
602                     fitparm[0] = tau1_est;
603                     fitparm[1] = 1.0;
604                     fitparm[2] = 0.0;
605                     do_lmfit(nbs, ybs, fitsig, 0, tbs, 0, dt*n, oenv, bDebugMode(),
606                              effnERREST, fitparm, 6);
607                     fitparm[3] = 1-fitparm[1];
608                 }
609             }
610             ee   = sig[s]*anal_ee_inf(fitparm, n*dt);
611             a    = fitparm[1];
612             tau1 = fitparm[0];
613             tau2 = fitparm[2];
614         }
615         fprintf(stdout, "Set %3d:  err.est. %g  a %g  tau1 %g  tau2 %g\n",
616                 s+1, ee, a, tau1, tau2);
617         fprintf(fp, "@ legend string %d \"av %f\"\n", 2*s, av[s]);
618         fprintf(fp, "@ legend string %d \"ee %6g\"\n",
619                 2*s+1, sig[s]*anal_ee_inf(fitparm, n*dt));
620         for (i = 0; i < nbs; i++)
621         {
622             fprintf(fp, "%g %g %g\n", tbs[i], sig[s]*sqrt(ybs[i]/(n*dt)),
623                     sig[s]*sqrt(fit_function(effnERREST, fitparm, tbs[i])/(n*dt)));
624         }
625
626         if (bFitAc)
627         {
628             int   fitlen;
629             real *ac, acint, ac_fit[4];
630
631             snew(ac, n);
632             for (i = 0; i < n; i++)
633             {
634                 ac[i] = val[s][i] - av[s];
635                 if (i > 0)
636                 {
637                     fitsig[i] = sqrt(i);
638                 }
639                 else
640                 {
641                     fitsig[i] = 1;
642                 }
643             }
644             low_do_autocorr(NULL, oenv, NULL, n, 1, -1, &ac,
645                             dt, eacNormal, 1, FALSE, TRUE,
646                             FALSE, 0, 0, effnNONE, 0);
647
648             fitlen = n/nb_min;
649
650             /* Integrate ACF only up to fitlen/2 to avoid integrating noise */
651             acint = 0.5*ac[0];
652             for (i = 1; i <= fitlen/2; i++)
653             {
654                 acint += ac[i];
655             }
656             acint *= dt;
657
658             /* Generate more or less appropriate sigma's */
659             for (i = 0; i <= fitlen; i++)
660             {
661                 fitsig[i] = sqrt(acint + dt*i);
662             }
663
664             ac_fit[0] = 0.5*acint;
665             ac_fit[1] = 0.95;
666             ac_fit[2] = 10*acint;
667             do_lmfit(n/nb_min, ac, fitsig, dt, 0, 0, fitlen*dt, oenv,
668                      bDebugMode(), effnEXP3, ac_fit, 0);
669             ac_fit[3] = 1 - ac_fit[1];
670
671             fprintf(stdout, "Set %3d:  ac erest %g  a %g  tau1 %g  tau2 %g\n",
672                     s+1, sig[s]*anal_ee_inf(ac_fit, n*dt),
673                     ac_fit[1], ac_fit[0], ac_fit[2]);
674
675             fprintf(fp, "&\n");
676             for (i = 0; i < nbs; i++)
677             {
678                 fprintf(fp, "%g %g\n", tbs[i],
679                         sig[s]*sqrt(fit_function(effnERREST, ac_fit, tbs[i]))/(n*dt));
680             }
681
682             sfree(ac);
683         }
684         if (s < nset-1)
685         {
686             fprintf(fp, "&\n");
687         }
688     }
689     sfree(fitsig);
690     sfree(ybs);
691     sfree(tbs);
692     ffclose(fp);
693 }
694
695 static void luzar_correl(int nn, real *time, int nset, real **val, real temp,
696                          gmx_bool bError, real fit_start, real smooth_tail_start,
697                          const output_env_t oenv)
698 {
699     const real tol = 1e-8;
700     real      *kt;
701     real       weight, d2;
702     int        j;
703
704     please_cite(stdout, "Spoel2006b");
705
706     /* Compute negative derivative k(t) = -dc(t)/dt */
707     if (!bError)
708     {
709         snew(kt, nn);
710         compute_derivative(nn, time, val[0], kt);
711         for (j = 0; (j < nn); j++)
712         {
713             kt[j] = -kt[j];
714         }
715         if (debug)
716         {
717             d2 = 0;
718             for (j = 0; (j < nn); j++)
719             {
720                 d2 += sqr(kt[j] - val[3][j]);
721             }
722             fprintf(debug, "RMS difference in derivatives is %g\n", sqrt(d2/nn));
723         }
724         analyse_corr(nn, time, val[0], val[2], kt, NULL, NULL, NULL, fit_start,
725                      temp, smooth_tail_start, oenv);
726         sfree(kt);
727     }
728     else if (nset == 6)
729     {
730         analyse_corr(nn, time, val[0], val[2], val[4],
731                      val[1], val[3], val[5], fit_start, temp, smooth_tail_start, oenv);
732     }
733     else
734     {
735         printf("Inconsistent input. I need c(t) sigma_c(t) n(t) sigma_n(t) K(t) sigma_K(t)\n");
736         printf("Not doing anything. Sorry.\n");
737     }
738 }
739
740 static void filter(real flen, int n, int nset, real **val, real dt,
741                    const output_env_t oenv)
742 {
743     int     f, s, i, j;
744     double *filt, sum, vf, fluc, fluctot;
745
746     f = (int)(flen/(2*dt));
747     snew(filt, f+1);
748     filt[0] = 1;
749     sum     = 1;
750     for (i = 1; i <= f; i++)
751     {
752         filt[i] = cos(M_PI*dt*i/flen);
753         sum    += 2*filt[i];
754     }
755     for (i = 0; i <= f; i++)
756     {
757         filt[i] /= sum;
758     }
759     fprintf(stdout, "Will calculate the fluctuation over %d points\n", n-2*f);
760     fprintf(stdout, "  using a filter of length %g of %d points\n", flen, 2*f+1);
761     fluctot = 0;
762     for (s = 0; s < nset; s++)
763     {
764         fluc = 0;
765         for (i = f; i < n-f; i++)
766         {
767             vf = filt[0]*val[s][i];
768             for (j = 1; j <= f; j++)
769             {
770                 vf += filt[j]*(val[s][i-f]+val[s][i+f]);
771             }
772             fluc += sqr(val[s][i] - vf);
773         }
774         fluc    /= n - 2*f;
775         fluctot += fluc;
776         fprintf(stdout, "Set %3d filtered fluctuation: %12.6e\n", s+1, sqrt(fluc));
777     }
778     fprintf(stdout, "Overall filtered fluctuation: %12.6e\n", sqrt(fluctot/nset));
779     fprintf(stdout, "\n");
780
781     sfree(filt);
782 }
783
784 static void do_fit(FILE *out, int n, gmx_bool bYdy,
785                    int ny, real *x0, real **val,
786                    int npargs, t_pargs *ppa, const output_env_t oenv)
787 {
788     real *c1 = NULL, *sig = NULL, *fitparm;
789     real  tendfit, tbeginfit;
790     int   i, efitfn, nparm;
791
792     efitfn = get_acffitfn();
793     nparm  = nfp_ffn[efitfn];
794     fprintf(out, "Will fit to the following function:\n");
795     fprintf(out, "%s\n", longs_ffn[efitfn]);
796     c1 = val[n];
797     if (bYdy)
798     {
799         c1  = val[n];
800         sig = val[n+1];
801         fprintf(out, "Using two columns as y and sigma values\n");
802     }
803     else
804     {
805         snew(sig, ny);
806     }
807     if (opt2parg_bSet("-beginfit", npargs, ppa))
808     {
809         tbeginfit = opt2parg_real("-beginfit", npargs, ppa);
810     }
811     else
812     {
813         tbeginfit = x0[0];
814     }
815     if (opt2parg_bSet("-endfit", npargs, ppa))
816     {
817         tendfit   = opt2parg_real("-endfit", npargs, ppa);
818     }
819     else
820     {
821         tendfit   = x0[ny-1];
822     }
823
824     snew(fitparm, nparm);
825     switch (efitfn)
826     {
827         case effnEXP1:
828             fitparm[0] = 0.5;
829             break;
830         case effnEXP2:
831             fitparm[0] = 0.5;
832             fitparm[1] = c1[0];
833             break;
834         case effnEXP3:
835             fitparm[0] = 1.0;
836             fitparm[1] = 0.5*c1[0];
837             fitparm[2] = 10.0;
838             break;
839         case effnEXP5:
840             fitparm[0] = fitparm[2] = 0.5*c1[0];
841             fitparm[1] = 10;
842             fitparm[3] = 40;
843             fitparm[4] = 0;
844             break;
845         case effnEXP7:
846             fitparm[0] = fitparm[2] = fitparm[4] = 0.33*c1[0];
847             fitparm[1] = 1;
848             fitparm[3] = 10;
849             fitparm[5] = 100;
850             fitparm[6] = 0;
851             break;
852         case effnEXP9:
853             fitparm[0] = fitparm[2] = fitparm[4] = fitparm[6] = 0.25*c1[0];
854             fitparm[1] = 0.1;
855             fitparm[3] = 1;
856             fitparm[5] = 10;
857             fitparm[7] = 100;
858             fitparm[8] = 0;
859             break;
860         default:
861             fprintf(out, "Warning: don't know how to initialize the parameters\n");
862             for (i = 0; (i < nparm); i++)
863             {
864                 fitparm[i] = 1;
865             }
866     }
867     fprintf(out, "Starting parameters:\n");
868     for (i = 0; (i < nparm); i++)
869     {
870         fprintf(out, "a%-2d = %12.5e\n", i+1, fitparm[i]);
871     }
872     if (do_lmfit(ny, c1, sig, 0, x0, tbeginfit, tendfit,
873                  oenv, bDebugMode(), efitfn, fitparm, 0))
874     {
875         for (i = 0; (i < nparm); i++)
876         {
877             fprintf(out, "a%-2d = %12.5e\n", i+1, fitparm[i]);
878         }
879     }
880     else
881     {
882         fprintf(out, "No solution was found\n");
883     }
884 }
885
886 static void do_ballistic(const char *balFile, int nData,
887                          real *t, real **val, int nSet,
888                          real balTime, int nBalExp,
889                          gmx_bool bDerivative,
890                          const output_env_t oenv)
891 {
892     double     **ctd   = NULL, *td = NULL;
893     t_gemParams *GP    = init_gemParams(0, 0, t, nData, 0, 0, 0, balTime, nBalExp, bDerivative);
894     static char *leg[] = {"Ac'(t)"};
895     FILE        *fp;
896     int          i, set;
897
898     if (GP->ballistic/GP->tDelta >= GP->nExpFit*2+1)
899     {
900         snew(ctd, nSet);
901         snew(td,  nData);
902
903         fp = xvgropen(balFile, "Hydrogen Bond Autocorrelation", "Time (ps)", "C'(t)", oenv);
904         xvgr_legend(fp, asize(leg), (const char**)leg, oenv);
905
906         for (set = 0; set < nSet; set++)
907         {
908             snew(ctd[set], nData);
909             for (i = 0; i < nData; i++)
910             {
911                 ctd[set][i] = (double)val[set][i];
912                 if (set == 0)
913                 {
914                     td[i] = (double)t[i];
915                 }
916             }
917
918             takeAwayBallistic(ctd[set], td, nData, GP->ballistic, GP->nExpFit, GP->bDt);
919         }
920
921         for (i = 0; i < nData; i++)
922         {
923             fprintf(fp, "  %g", t[i]);
924             for (set = 0; set < nSet; set++)
925             {
926                 fprintf(fp, "  %g", ctd[set][i]);
927             }
928             fprintf(fp, "\n");
929         }
930
931
932         for (set = 0; set < nSet; set++)
933         {
934             sfree(ctd[set]);
935         }
936         sfree(ctd);
937         sfree(td);
938     }
939     else
940     {
941         printf("Number of data points is less than the number of parameters to fit\n."
942                "The system is underdetermined, hence no ballistic term can be found.\n\n");
943     }
944 }
945
946 static void do_geminate(const char *gemFile, int nData,
947                         real *t, real **val, int nSet,
948                         const real D, const real rcut, const real balTime,
949                         const int nFitPoints, const real begFit, const real endFit,
950                         const output_env_t oenv)
951 {
952     double     **ctd = NULL, **ctdGem = NULL, *td = NULL;
953     t_gemParams *GP  = init_gemParams(rcut, D, t, nData, nFitPoints,
954                                       begFit, endFit, balTime, 1, FALSE);
955     const char  *leg[] = {"Ac\\sgem\\N(t)"};
956     FILE        *fp;
957     int          i, set;
958
959     snew(ctd,    nSet);
960     snew(ctdGem, nSet);
961     snew(td,  nData);
962
963     fp = xvgropen(gemFile, "Hydrogen Bond Autocorrelation", "Time (ps)", "C'(t)", oenv);
964     xvgr_legend(fp, asize(leg), leg, oenv);
965
966     for (set = 0; set < nSet; set++)
967     {
968         snew(ctd[set],    nData);
969         snew(ctdGem[set], nData);
970         for (i = 0; i < nData; i++)
971         {
972             ctd[set][i] = (double)val[set][i];
973             if (set == 0)
974             {
975                 td[i] = (double)t[i];
976             }
977         }
978         fitGemRecomb(ctd[set], td, &(ctd[set]), nData, GP);
979     }
980
981     for (i = 0; i < nData; i++)
982     {
983         fprintf(fp, "  %g", t[i]);
984         for (set = 0; set < nSet; set++)
985         {
986             fprintf(fp, "  %g", ctdGem[set][i]);
987         }
988         fprintf(fp, "\n");
989     }
990
991     for (set = 0; set < nSet; set++)
992     {
993         sfree(ctd[set]);
994         sfree(ctdGem[set]);
995     }
996     sfree(ctd);
997     sfree(ctdGem);
998     sfree(td);
999 }
1000
1001 int gmx_analyze(int argc, char *argv[])
1002 {
1003     static const char *desc[] = {
1004         "[TT]g_analyze[tt] reads an ASCII file and analyzes data sets.",
1005         "A line in the input file may start with a time",
1006         "(see option [TT]-time[tt]) and any number of [IT]y[it]-values may follow.",
1007         "Multiple sets can also be",
1008         "read when they are separated by & (option [TT]-n[tt]);",
1009         "in this case only one [IT]y[it]-value is read from each line.",
1010         "All lines starting with # and @ are skipped.",
1011         "All analyses can also be done for the derivative of a set",
1012         "(option [TT]-d[tt]).[PAR]",
1013
1014         "All options, except for [TT]-av[tt] and [TT]-power[tt], assume that the",
1015         "points are equidistant in time.[PAR]",
1016
1017         "[TT]g_analyze[tt] always shows the average and standard deviation of each",
1018         "set, as well as the relative deviation of the third",
1019         "and fourth cumulant from those of a Gaussian distribution with the same",
1020         "standard deviation.[PAR]",
1021
1022         "Option [TT]-ac[tt] produces the autocorrelation function(s).",
1023         "Be sure that the time interval between data points is",
1024         "much shorter than the time scale of the autocorrelation.[PAR]",
1025
1026         "Option [TT]-cc[tt] plots the resemblance of set i with a cosine of",
1027         "i/2 periods. The formula is:[BR]"
1028         "[MATH]2 ([INT][FROM]0[from][TO]T[to][int] y(t) [COS]i [GRK]pi[grk] t[cos] dt)^2 / [INT][FROM]0[from][TO]T[to][int] y^2(t) dt[math][BR]",
1029         "This is useful for principal components obtained from covariance",
1030         "analysis, since the principal components of random diffusion are",
1031         "pure cosines.[PAR]",
1032
1033         "Option [TT]-msd[tt] produces the mean square displacement(s).[PAR]",
1034
1035         "Option [TT]-dist[tt] produces distribution plot(s).[PAR]",
1036
1037         "Option [TT]-av[tt] produces the average over the sets.",
1038         "Error bars can be added with the option [TT]-errbar[tt].",
1039         "The errorbars can represent the standard deviation, the error",
1040         "(assuming the points are independent) or the interval containing",
1041         "90% of the points, by discarding 5% of the points at the top and",
1042         "the bottom.[PAR]",
1043
1044         "Option [TT]-ee[tt] produces error estimates using block averaging.",
1045         "A set is divided in a number of blocks and averages are calculated for",
1046         "each block. The error for the total average is calculated from",
1047         "the variance between averages of the m blocks B[SUB]i[sub] as follows:",
1048         "error^2 = [SUM][sum] (B[SUB]i[sub] - [CHEVRON]B[chevron])^2 / (m*(m-1)).",
1049         "These errors are plotted as a function of the block size.",
1050         "Also an analytical block average curve is plotted, assuming",
1051         "that the autocorrelation is a sum of two exponentials.",
1052         "The analytical curve for the block average is:[BR]",
1053         "[MATH]f(t) = [GRK]sigma[grk][TT]*[tt][SQRT]2/T (  [GRK]alpha[grk]   ([GRK]tau[grk][SUB]1[sub] (([EXP]-t/[GRK]tau[grk][SUB]1[sub][exp] - 1) [GRK]tau[grk][SUB]1[sub]/t + 1)) +[BR]",
1054         "                       (1-[GRK]alpha[grk]) ([GRK]tau[grk][SUB]2[sub] (([EXP]-t/[GRK]tau[grk][SUB]2[sub][exp] - 1) [GRK]tau[grk][SUB]2[sub]/t + 1)))[sqrt][math],[BR]"
1055         "where T is the total time.",
1056         "[GRK]alpha[grk], [GRK]tau[grk][SUB]1[sub] and [GRK]tau[grk][SUB]2[sub] are obtained by fitting f^2(t) to error^2.",
1057         "When the actual block average is very close to the analytical curve,",
1058         "the error is [MATH][GRK]sigma[grk][TT]*[tt][SQRT]2/T (a [GRK]tau[grk][SUB]1[sub] + (1-a) [GRK]tau[grk][SUB]2[sub])[sqrt][math].",
1059         "The complete derivation is given in",
1060         "B. Hess, J. Chem. Phys. 116:209-217, 2002.[PAR]",
1061
1062         "Option [TT]-bal[tt] finds and subtracts the ultrafast \"ballistic\"",
1063         "component from a hydrogen bond autocorrelation function by the fitting",
1064         "of a sum of exponentials, as described in e.g.",
1065         "O. Markovitch, J. Chem. Phys. 129:084505, 2008. The fastest term",
1066         "is the one with the most negative coefficient in the exponential,",
1067         "or with [TT]-d[tt], the one with most negative time derivative at time 0.",
1068         "[TT]-nbalexp[tt] sets the number of exponentials to fit.[PAR]",
1069
1070         "Option [TT]-gem[tt] fits bimolecular rate constants ka and kb",
1071         "(and optionally kD) to the hydrogen bond autocorrelation function",
1072         "according to the reversible geminate recombination model. Removal of",
1073         "the ballistic component first is strongly advised. The model is presented in",
1074         "O. Markovitch, J. Chem. Phys. 129:084505, 2008.[PAR]",
1075
1076         "Option [TT]-filter[tt] prints the RMS high-frequency fluctuation",
1077         "of each set and over all sets with respect to a filtered average.",
1078         "The filter is proportional to cos([GRK]pi[grk] t/len) where t goes from -len/2",
1079         "to len/2. len is supplied with the option [TT]-filter[tt].",
1080         "This filter reduces oscillations with period len/2 and len by a factor",
1081         "of 0.79 and 0.33 respectively.[PAR]",
1082
1083         "Option [TT]-g[tt] fits the data to the function given with option",
1084         "[TT]-fitfn[tt].[PAR]",
1085
1086         "Option [TT]-power[tt] fits the data to [MATH]b t^a[math], which is accomplished",
1087         "by fitting to [MATH]a t + b[math] on log-log scale. All points after the first",
1088         "zero or with a negative value are ignored.[PAR]"
1089
1090         "Option [TT]-luzar[tt] performs a Luzar & Chandler kinetics analysis",
1091         "on output from [TT]g_hbond[tt]. The input file can be taken directly",
1092         "from [TT]g_hbond -ac[tt], and then the same result should be produced."
1093     };
1094     static real        tb         = -1, te = -1, frac = 0.5, filtlen = 0, binwidth = 0.1, aver_start = 0;
1095     static gmx_bool    bHaveT     = TRUE, bDer = FALSE, bSubAv = TRUE, bAverCorr = FALSE, bXYdy = FALSE;
1096     static gmx_bool    bEESEF     = FALSE, bEENLC = FALSE, bEeFitAc = FALSE, bPower = FALSE;
1097     static gmx_bool    bIntegrate = FALSE, bRegression = FALSE, bLuzar = FALSE, bLuzarError = FALSE;
1098     static int         nsets_in   = 1, d = 1, nb_min = 4, resol = 10, nBalExp = 4, nFitPoints = 100;
1099     static real        temp       = 298.15, fit_start = 1, fit_end = 60, smooth_tail_start = -1, balTime = 0.2, diffusion = 5e-5, rcut = 0.35;
1100
1101     /* must correspond to enum avbar* declared at beginning of file */
1102     static const char *avbar_opt[avbarNR+1] = {
1103         NULL, "none", "stddev", "error", "90", NULL
1104     };
1105
1106     t_pargs            pa[] = {
1107         { "-time",    FALSE, etBOOL, {&bHaveT},
1108           "Expect a time in the input" },
1109         { "-b",       FALSE, etREAL, {&tb},
1110           "First time to read from set" },
1111         { "-e",       FALSE, etREAL, {&te},
1112           "Last time to read from set" },
1113         { "-n",       FALSE, etINT, {&nsets_in},
1114           "Read this number of sets separated by &" },
1115         { "-d",       FALSE, etBOOL, {&bDer},
1116           "Use the derivative" },
1117         { "-dp",      FALSE, etINT, {&d},
1118           "HIDDENThe derivative is the difference over this number of points" },
1119         { "-bw",      FALSE, etREAL, {&binwidth},
1120           "Binwidth for the distribution" },
1121         { "-errbar",  FALSE, etENUM, {avbar_opt},
1122           "Error bars for [TT]-av[tt]" },
1123         { "-integrate", FALSE, etBOOL, {&bIntegrate},
1124           "Integrate data function(s) numerically using trapezium rule" },
1125         { "-aver_start", FALSE, etREAL, {&aver_start},
1126           "Start averaging the integral from here" },
1127         { "-xydy",    FALSE, etBOOL, {&bXYdy},
1128           "Interpret second data set as error in the y values for integrating" },
1129         { "-regression", FALSE, etBOOL, {&bRegression},
1130           "Perform a linear regression analysis on the data. If [TT]-xydy[tt] is set a second set will be interpreted as the error bar in the Y value. Otherwise, if multiple data sets are present a multilinear regression will be performed yielding the constant A that minimize [MATH][GRK]chi[grk]^2 = (y - A[SUB]0[sub] x[SUB]0[sub] - A[SUB]1[sub] x[SUB]1[sub] - ... - A[SUB]N[sub] x[SUB]N[sub])^2[math] where now Y is the first data set in the input file and x[SUB]i[sub] the others. Do read the information at the option [TT]-time[tt]." },
1131         { "-luzar",   FALSE, etBOOL, {&bLuzar},
1132           "Do a Luzar and Chandler analysis on a correlation function and related as produced by [TT]g_hbond[tt]. When in addition the [TT]-xydy[tt] flag is given the second and fourth column will be interpreted as errors in c(t) and n(t)." },
1133         { "-temp",    FALSE, etREAL, {&temp},
1134           "Temperature for the Luzar hydrogen bonding kinetics analysis (K)" },
1135         { "-fitstart", FALSE, etREAL, {&fit_start},
1136           "Time (ps) from which to start fitting the correlation functions in order to obtain the forward and backward rate constants for HB breaking and formation" },
1137         { "-fitend", FALSE, etREAL, {&fit_end},
1138           "Time (ps) where to stop fitting the correlation functions in order to obtain the forward and backward rate constants for HB breaking and formation. Only with [TT]-gem[tt]" },
1139         { "-smooth", FALSE, etREAL, {&smooth_tail_start},
1140           "If this value is >= 0, the tail of the ACF will be smoothed by fitting it to an exponential function: [MATH]y = A [EXP]-x/[GRK]tau[grk][exp][math]" },
1141         { "-nbmin",   FALSE, etINT, {&nb_min},
1142           "HIDDENMinimum number of blocks for block averaging" },
1143         { "-resol", FALSE, etINT, {&resol},
1144           "HIDDENResolution for the block averaging, block size increases with"
1145           " a factor 2^(1/resol)" },
1146         { "-eeexpfit", FALSE, etBOOL, {&bEESEF},
1147           "HIDDENAlways use a single exponential fit for the error estimate" },
1148         { "-eenlc", FALSE, etBOOL, {&bEENLC},
1149           "HIDDENAllow a negative long-time correlation" },
1150         { "-eefitac", FALSE, etBOOL, {&bEeFitAc},
1151           "HIDDENAlso plot analytical block average using a autocorrelation fit" },
1152         { "-filter",  FALSE, etREAL, {&filtlen},
1153           "Print the high-frequency fluctuation after filtering with a cosine filter of this length" },
1154         { "-power", FALSE, etBOOL, {&bPower},
1155           "Fit data to: b t^a" },
1156         { "-subav", FALSE, etBOOL, {&bSubAv},
1157           "Subtract the average before autocorrelating" },
1158         { "-oneacf", FALSE, etBOOL, {&bAverCorr},
1159           "Calculate one ACF over all sets" },
1160         { "-nbalexp", FALSE, etINT, {&nBalExp},
1161           "HIDDENNumber of exponentials to fit to the ultrafast component" },
1162         { "-baltime", FALSE, etREAL, {&balTime},
1163           "HIDDENTime up to which the ballistic component will be fitted" },
1164 /*     { "-gemnp", FALSE, etINT, {&nFitPoints}, */
1165 /*       "HIDDENNumber of data points taken from the ACF to use for fitting to rev. gem. recomb. model."}, */
1166 /*     { "-rcut", FALSE, etREAL, {&rcut}, */
1167 /*       "Cut-off for hydrogen bonds in geminate algorithms" }, */
1168 /*     { "-gemtype", FALSE, etENUM, {gemType}, */
1169 /*       "What type of gminate recombination to use"}, */
1170 /*     { "-D", FALSE, etREAL, {&diffusion}, */
1171 /*       "The self diffusion coefficient which is used for the reversible geminate recombination model."} */
1172     };
1173 #define NPA asize(pa)
1174
1175     FILE           *out, *out_fit;
1176     int             n, nlast, s, nset, i, j = 0;
1177     real          **val, *t, dt, tot, error;
1178     double         *av, *sig, cum1, cum2, cum3, cum4, db;
1179     const char     *acfile, *msdfile, *ccfile, *distfile, *avfile, *eefile, *balfile, *gemfile, *fitfile;
1180     output_env_t    oenv;
1181
1182     t_filenm        fnm[] = {
1183         { efXVG, "-f",    "graph",    ffREAD   },
1184         { efXVG, "-ac",   "autocorr", ffOPTWR  },
1185         { efXVG, "-msd",  "msd",      ffOPTWR  },
1186         { efXVG, "-cc",   "coscont",  ffOPTWR  },
1187         { efXVG, "-dist", "distr",    ffOPTWR  },
1188         { efXVG, "-av",   "average",  ffOPTWR  },
1189         { efXVG, "-ee",   "errest",   ffOPTWR  },
1190         { efXVG, "-bal",  "ballisitc", ffOPTWR  },
1191 /*     { efXVG, "-gem",  "geminate", ffOPTWR  }, */
1192         { efLOG, "-g",    "fitlog",   ffOPTWR  }
1193     };
1194 #define NFILE asize(fnm)
1195
1196     int      npargs;
1197     t_pargs *ppa;
1198
1199     npargs = asize(pa);
1200     ppa    = add_acf_pargs(&npargs, pa);
1201
1202     parse_common_args(&argc, argv, PCA_CAN_VIEW,
1203                       NFILE, fnm, npargs, ppa, asize(desc), desc, 0, NULL, &oenv);
1204
1205     acfile   = opt2fn_null("-ac", NFILE, fnm);
1206     msdfile  = opt2fn_null("-msd", NFILE, fnm);
1207     ccfile   = opt2fn_null("-cc", NFILE, fnm);
1208     distfile = opt2fn_null("-dist", NFILE, fnm);
1209     avfile   = opt2fn_null("-av", NFILE, fnm);
1210     eefile   = opt2fn_null("-ee", NFILE, fnm);
1211     balfile  = opt2fn_null("-bal", NFILE, fnm);
1212 /*   gemfile  = opt2fn_null("-gem",NFILE,fnm); */
1213     /* When doing autocorrelation we don't want a fitlog for fitting
1214      * the function itself (not the acf) when the user did not ask for it.
1215      */
1216     if (opt2parg_bSet("-fitfn", npargs, ppa) && acfile == NULL)
1217     {
1218         fitfile  = opt2fn("-g", NFILE, fnm);
1219     }
1220     else
1221     {
1222         fitfile  = opt2fn_null("-g", NFILE, fnm);
1223     }
1224
1225     val = read_xvg_time(opt2fn("-f", NFILE, fnm), bHaveT,
1226                         opt2parg_bSet("-b", npargs, ppa), tb,
1227                         opt2parg_bSet("-e", npargs, ppa), te,
1228                         nsets_in, &nset, &n, &dt, &t);
1229     printf("Read %d sets of %d points, dt = %g\n\n", nset, n, dt);
1230
1231     if (bDer)
1232     {
1233         printf("Calculating the derivative as (f[i+%d]-f[i])/(%d*dt)\n\n",
1234                d, d);
1235         n -= d;
1236         for (s = 0; s < nset; s++)
1237         {
1238             for (i = 0; (i < n); i++)
1239             {
1240                 val[s][i] = (val[s][i+d]-val[s][i])/(d*dt);
1241             }
1242         }
1243     }
1244
1245     if (bIntegrate)
1246     {
1247         real sum, stddev;
1248
1249         printf("Calculating the integral using the trapezium rule\n");
1250
1251         if (bXYdy)
1252         {
1253             sum = evaluate_integral(n, t, val[0], val[1], aver_start, &stddev);
1254             printf("Integral %10.3f +/- %10.5f\n", sum, stddev);
1255         }
1256         else
1257         {
1258             for (s = 0; s < nset; s++)
1259             {
1260                 sum = evaluate_integral(n, t, val[s], NULL, aver_start, &stddev);
1261                 printf("Integral %d  %10.5f  +/- %10.5f\n", s+1, sum, stddev);
1262             }
1263         }
1264     }
1265
1266     if (fitfile != NULL)
1267     {
1268         out_fit = ffopen(fitfile, "w");
1269         if (bXYdy && nset >= 2)
1270         {
1271             do_fit(out_fit, 0, TRUE, n, t, val, npargs, ppa, oenv);
1272         }
1273         else
1274         {
1275             for (s = 0; s < nset; s++)
1276             {
1277                 do_fit(out_fit, s, FALSE, n, t, val, npargs, ppa, oenv);
1278             }
1279         }
1280         ffclose(out_fit);
1281     }
1282
1283     printf("                                      std. dev.    relative deviation of\n");
1284     printf("                       standard       ---------   cumulants from those of\n");
1285     printf("set      average       deviation      sqrt(n-1)   a Gaussian distribition\n");
1286     printf("                                                      cum. 3   cum. 4\n");
1287     snew(av, nset);
1288     snew(sig, nset);
1289     for (s = 0; (s < nset); s++)
1290     {
1291         cum1 = 0;
1292         cum2 = 0;
1293         cum3 = 0;
1294         cum4 = 0;
1295         for (i = 0; (i < n); i++)
1296         {
1297             cum1 += val[s][i];
1298         }
1299         cum1 /= n;
1300         for (i = 0; (i < n); i++)
1301         {
1302             db    = val[s][i]-cum1;
1303             cum2 += db*db;
1304             cum3 += db*db*db;
1305             cum4 += db*db*db*db;
1306         }
1307         cum2  /= n;
1308         cum3  /= n;
1309         cum4  /= n;
1310         av[s]  = cum1;
1311         sig[s] = sqrt(cum2);
1312         if (n > 1)
1313         {
1314             error = sqrt(cum2/(n-1));
1315         }
1316         else
1317         {
1318             error = 0;
1319         }
1320         printf("SS%d  %13.6e   %12.6e   %12.6e      %6.3f   %6.3f\n",
1321                s+1, av[s], sig[s], error,
1322                sig[s] ? cum3/(sig[s]*sig[s]*sig[s]*sqrt(8/M_PI)) : 0,
1323                sig[s] ? cum4/(sig[s]*sig[s]*sig[s]*sig[s]*3)-1 : 0);
1324     }
1325     printf("\n");
1326
1327     if (filtlen)
1328     {
1329         filter(filtlen, n, nset, val, dt, oenv);
1330     }
1331
1332     if (msdfile)
1333     {
1334         out = xvgropen(msdfile, "Mean square displacement",
1335                        "time", "MSD (nm\\S2\\N)", oenv);
1336         nlast = (int)(n*frac);
1337         for (s = 0; s < nset; s++)
1338         {
1339             for (j = 0; j <= nlast; j++)
1340             {
1341                 if (j % 100 == 0)
1342                 {
1343                     fprintf(stderr, "\r%d", j);
1344                 }
1345                 tot = 0;
1346                 for (i = 0; i < n-j; i++)
1347                 {
1348                     tot += sqr(val[s][i]-val[s][i+j]);
1349                 }
1350                 tot /= (real)(n-j);
1351                 fprintf(out, " %g %8g\n", dt*j, tot);
1352             }
1353             if (s < nset-1)
1354             {
1355                 fprintf(out, "&\n");
1356             }
1357         }
1358         ffclose(out);
1359         fprintf(stderr, "\r%d, time=%g\n", j-1, (j-1)*dt);
1360     }
1361     if (ccfile)
1362     {
1363         plot_coscont(ccfile, n, nset, val, oenv);
1364     }
1365
1366     if (distfile)
1367     {
1368         histogram(distfile, binwidth, n, nset, val, oenv);
1369     }
1370     if (avfile)
1371     {
1372         average(avfile, nenum(avbar_opt), n, nset, val, t);
1373     }
1374     if (eefile)
1375     {
1376         estimate_error(eefile, nb_min, resol, n, nset, av, sig, val, dt,
1377                        bEeFitAc, bEESEF, bEENLC, oenv);
1378     }
1379     if (balfile)
1380     {
1381         do_ballistic(balfile, n, t, val, nset, balTime, nBalExp, bDer, oenv);
1382     }
1383 /*   if (gemfile) */
1384 /*       do_geminate(gemfile,n,t,val,nset,diffusion,rcut,balTime, */
1385 /*                   nFitPoints, fit_start, fit_end, oenv); */
1386     if (bPower)
1387     {
1388         power_fit(n, nset, val, t);
1389     }
1390
1391     if (acfile != NULL)
1392     {
1393         if (bSubAv)
1394         {
1395             for (s = 0; s < nset; s++)
1396             {
1397                 for (i = 0; i < n; i++)
1398                 {
1399                     val[s][i] -= av[s];
1400                 }
1401             }
1402         }
1403         do_autocorr(acfile, oenv, "Autocorrelation", n, nset, val, dt,
1404                     eacNormal, bAverCorr);
1405     }
1406
1407     if (bRegression)
1408     {
1409         regression_analysis(n, bXYdy, t, nset, val);
1410     }
1411
1412     if (bLuzar)
1413     {
1414         luzar_correl(n, t, nset, val, temp, bXYdy, fit_start, smooth_tail_start, oenv);
1415     }
1416
1417     view_all(oenv, NFILE, fnm);
1418
1419     thanx(stderr);
1420
1421     return 0;
1422 }