Sort all includes in src/gromacs
[alexxy/gromacs.git] / src / gromacs / fileio / confio.c
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5  * Copyright (c) 2001-2004, The GROMACS development team.
6  * Copyright (c) 2013,2014, by the GROMACS development team, led by
7  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8  * and including many others, as listed in the AUTHORS file in the
9  * top-level source directory and at http://www.gromacs.org.
10  *
11  * GROMACS is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Lesser General Public License
13  * as published by the Free Software Foundation; either version 2.1
14  * of the License, or (at your option) any later version.
15  *
16  * GROMACS is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Lesser General Public License for more details.
20  *
21  * You should have received a copy of the GNU Lesser General Public
22  * License along with GROMACS; if not, see
23  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
25  *
26  * If you want to redistribute modifications to GROMACS, please
27  * consider that scientific software is very special. Version
28  * control is crucial - bugs must be traceable. We will be happy to
29  * consider code for inclusion in the official distribution, but
30  * derived work must not be called official GROMACS. Details are found
31  * in the README & COPYING files - if they are missing, get the
32  * official version at http://www.gromacs.org.
33  *
34  * To help us fund GROMACS development, we humbly ask that you cite
35  * the research papers on the package. Check out http://www.gromacs.org.
36  */
37 #include "gmxpre.h"
38
39 #include "confio.h"
40
41 #include <errno.h>
42 #include <math.h>
43 #include <stdio.h>
44
45 #include "gromacs/fileio/filenm.h"
46 #include "gromacs/fileio/gmxfio.h"
47 #include "gromacs/fileio/pdbio.h"
48 #include "gromacs/fileio/tpxio.h"
49 #include "gromacs/fileio/trx.h"
50 #include "gromacs/fileio/trxio.h"
51 #include "gromacs/fileio/xdrf.h"
52 #include "gromacs/legacyheaders/copyrite.h"
53 #include "gromacs/legacyheaders/macros.h"
54 #include "gromacs/legacyheaders/typedefs.h"
55 #include "gromacs/math/vec.h"
56 #include "gromacs/pbcutil/pbc.h"
57 #include "gromacs/topology/mtop_util.h"
58 #include "gromacs/topology/symtab.h"
59 #include "gromacs/topology/topology.h"
60 #include "gromacs/utility/cstringutil.h"
61 #include "gromacs/utility/fatalerror.h"
62 #include "gromacs/utility/futil.h"
63 #include "gromacs/utility/smalloc.h"
64
65 #define CHAR_SHIFT 24
66
67 static int read_g96_pos(char line[], t_symtab *symtab,
68                         FILE *fp, const char *infile,
69                         t_trxframe *fr)
70 {
71     t_atoms   *atoms;
72     gmx_bool   bEnd;
73     int        nwanted, natoms, atnr, resnr = 0, oldres, newres, shift;
74     char       anm[STRLEN], resnm[STRLEN];
75     char       c1, c2;
76     double     db1, db2, db3;
77
78     nwanted = fr->natoms;
79
80     atoms = fr->atoms;
81
82     natoms = 0;
83
84     if (fr->bX)
85     {
86         if (fr->bAtoms)
87         {
88             shift = CHAR_SHIFT;
89         }
90         else
91         {
92             shift = 0;
93         }
94         newres  = -1;
95         oldres  = -666; /* Unlikely number for the first residue! */
96         bEnd    = FALSE;
97         while (!bEnd && fgets2(line, STRLEN, fp))
98         {
99             bEnd = (strncmp(line, "END", 3) == 0);
100             if (!bEnd  && (line[0] != '#'))
101             {
102                 if (sscanf(line+shift, "%15lf%15lf%15lf", &db1, &db2, &db3) != 3)
103                 {
104                     gmx_fatal(FARGS, "Did not find 3 coordinates for atom %d in %s\n",
105                               natoms+1, infile);
106                 }
107                 if ((nwanted != -1) && (natoms >= nwanted))
108                 {
109                     gmx_fatal(FARGS,
110                               "Found more coordinates (%d) in %s than expected %d\n",
111                               natoms, infile, nwanted);
112                 }
113                 if (atoms)
114                 {
115                     if (fr->bAtoms &&
116                         (sscanf(line, "%5d%c%5s%c%5s%7d", &resnr, &c1, resnm, &c2, anm, &atnr)
117                          != 6))
118                     {
119                         if (oldres >= 0)
120                         {
121                             resnr = oldres;
122                         }
123                         else
124                         {
125                             resnr    = 1;
126                             strncpy(resnm, "???", sizeof(resnm)-1);
127                         }
128                         strncpy(anm, "???", sizeof(anm)-1);
129                     }
130                     atoms->atomname[natoms] = put_symtab(symtab, anm);
131                     if (resnr != oldres)
132                     {
133                         oldres = resnr;
134                         newres++;
135                         if (newres >= atoms->nr)
136                         {
137                             gmx_fatal(FARGS, "More residues than atoms in %s (natoms = %d)",
138                                       infile, atoms->nr);
139                         }
140                         atoms->atom[natoms].resind = newres;
141                         if (newres+1 > atoms->nres)
142                         {
143                             atoms->nres = newres+1;
144                         }
145                         t_atoms_set_resinfo(atoms, natoms, symtab, resnm, resnr, ' ', 0, ' ');
146                     }
147                     else
148                     {
149                         atoms->atom[natoms].resind = newres;
150                     }
151                 }
152                 if (fr->x)
153                 {
154                     fr->x[natoms][0] = db1;
155                     fr->x[natoms][1] = db2;
156                     fr->x[natoms][2] = db3;
157                 }
158                 natoms++;
159             }
160         }
161         if ((nwanted != -1) && natoms != nwanted)
162         {
163             fprintf(stderr,
164                     "Warning: found less coordinates (%d) in %s than expected %d\n",
165                     natoms, infile, nwanted);
166         }
167     }
168
169     fr->natoms = natoms;
170
171     return natoms;
172 }
173
174 static int read_g96_vel(char line[], FILE *fp, const char *infile,
175                         t_trxframe *fr)
176 {
177     gmx_bool   bEnd;
178     int        nwanted, natoms = -1, shift;
179     double     db1, db2, db3;
180
181     nwanted = fr->natoms;
182
183     if (fr->v && fr->bV)
184     {
185         if (strcmp(line, "VELOCITYRED") == 0)
186         {
187             shift = 0;
188         }
189         else
190         {
191             shift = CHAR_SHIFT;
192         }
193         natoms = 0;
194         bEnd   = FALSE;
195         while (!bEnd && fgets2(line, STRLEN, fp))
196         {
197             bEnd = (strncmp(line, "END", 3) == 0);
198             if (!bEnd && (line[0] != '#'))
199             {
200                 if (sscanf(line+shift, "%15lf%15lf%15lf", &db1, &db2, &db3) != 3)
201                 {
202                     gmx_fatal(FARGS, "Did not find 3 velocities for atom %d in %s",
203                               natoms+1, infile);
204                 }
205                 if ((nwanted != -1) && (natoms >= nwanted))
206                 {
207                     gmx_fatal(FARGS, "Found more velocities (%d) in %s than expected %d\n",
208                               natoms, infile, nwanted);
209                 }
210                 if (fr->v)
211                 {
212                     fr->v[natoms][0] = db1;
213                     fr->v[natoms][1] = db2;
214                     fr->v[natoms][2] = db3;
215                 }
216                 natoms++;
217             }
218         }
219         if ((nwanted != -1) && (natoms != nwanted))
220         {
221             fprintf(stderr,
222                     "Warning: found less velocities (%d) in %s than expected %d\n",
223                     natoms, infile, nwanted);
224         }
225     }
226
227     return natoms;
228 }
229
230 int read_g96_conf(FILE *fp, const char *infile, t_trxframe *fr, char *line)
231 {
232     t_symtab  *symtab = NULL;
233     gmx_bool   bAtStart, bTime, bAtoms, bPos, bVel, bBox, bEnd, bFinished;
234     int        natoms, nbp;
235     double     db1, db2, db3, db4, db5, db6, db7, db8, db9;
236
237     bAtStart = (ftell(fp) == 0);
238
239     clear_trxframe(fr, FALSE);
240
241     if (!symtab)
242     {
243         snew(symtab, 1);
244         open_symtab(symtab);
245     }
246
247     natoms = 0;
248
249     if (bAtStart)
250     {
251         while (!fr->bTitle && fgets2(line, STRLEN, fp))
252         {
253             fr->bTitle = (strcmp(line, "TITLE") == 0);
254         }
255         if (fr->title == NULL)
256         {
257             fgets2(line, STRLEN, fp);
258             fr->title = gmx_strdup(line);
259         }
260         bEnd = FALSE;
261         while (!bEnd && fgets2(line, STRLEN, fp))
262         {
263             bEnd = (strcmp(line, "END") == 0);
264         }
265         fgets2(line, STRLEN, fp);
266     }
267
268     /* Do not get a line if we are not at the start of the file, *
269      * because without a parameter file we don't know what is in *
270      * the trajectory and we have already read the line in the   *
271      * previous call (VERY DIRTY).                               */
272     bFinished = FALSE;
273     do
274     {
275         bTime  = (strcmp(line, "TIMESTEP") == 0);
276         bAtoms = (strcmp(line, "POSITION") == 0);
277         bPos   = (bAtoms || (strcmp(line, "POSITIONRED") == 0));
278         bVel   = (strncmp(line, "VELOCITY", 8) == 0);
279         bBox   = (strcmp(line, "BOX") == 0);
280         if (bTime)
281         {
282             if (!fr->bTime && !fr->bX)
283             {
284                 fr->bStep = bTime;
285                 fr->bTime = bTime;
286                 do
287                 {
288                     bFinished = (fgets2(line, STRLEN, fp) == NULL);
289                 }
290                 while (!bFinished && (line[0] == '#'));
291                 sscanf(line, "%15d%15lf", &(fr->step), &db1);
292                 fr->time = db1;
293             }
294             else
295             {
296                 bFinished = TRUE;
297             }
298         }
299         if (bPos)
300         {
301             if (!fr->bX)
302             {
303                 fr->bAtoms = bAtoms;
304                 fr->bX     = bPos;
305                 natoms     = read_g96_pos(line, symtab, fp, infile, fr);
306             }
307             else
308             {
309                 bFinished = TRUE;
310             }
311         }
312         if (fr->v && bVel)
313         {
314             fr->bV = bVel;
315             natoms = read_g96_vel(line, fp, infile, fr);
316         }
317         if (bBox)
318         {
319             fr->bBox = bBox;
320             clear_mat(fr->box);
321             bEnd = FALSE;
322             while (!bEnd && fgets2(line, STRLEN, fp))
323             {
324                 bEnd = (strncmp(line, "END", 3) == 0);
325                 if (!bEnd && (line[0] != '#'))
326                 {
327                     nbp = sscanf(line, "%15lf%15lf%15lf%15lf%15lf%15lf%15lf%15lf%15lf",
328                                  &db1, &db2, &db3, &db4, &db5, &db6, &db7, &db8, &db9);
329                     if (nbp < 3)
330                     {
331                         gmx_fatal(FARGS, "Found a BOX line, but no box in %s", infile);
332                     }
333                     fr->box[XX][XX] = db1;
334                     fr->box[YY][YY] = db2;
335                     fr->box[ZZ][ZZ] = db3;
336                     if (nbp == 9)
337                     {
338                         fr->box[XX][YY] = db4;
339                         fr->box[XX][ZZ] = db5;
340                         fr->box[YY][XX] = db6;
341                         fr->box[YY][ZZ] = db7;
342                         fr->box[ZZ][XX] = db8;
343                         fr->box[ZZ][YY] = db9;
344                     }
345                 }
346             }
347             bFinished = TRUE;
348         }
349     }
350     while (!bFinished && fgets2(line, STRLEN, fp));
351
352     free_symtab(symtab);
353
354     fr->natoms = natoms;
355
356     return natoms;
357 }
358
359 void write_g96_conf(FILE *out, t_trxframe *fr,
360                     int nindex, const atom_id *index)
361 {
362     t_atoms *atoms;
363     int      nout, i, a;
364
365     atoms = fr->atoms;
366
367     if (index)
368     {
369         nout = nindex;
370     }
371     else
372     {
373         nout = fr->natoms;
374     }
375
376     if (fr->bTitle)
377     {
378         fprintf(out, "TITLE\n%s\nEND\n", fr->title);
379     }
380     if (fr->bStep || fr->bTime)
381     {
382         /* Officially the time format is %15.9, which is not enough for 10 ns */
383         fprintf(out, "TIMESTEP\n%15d%15.6f\nEND\n", fr->step, fr->time);
384     }
385     if (fr->bX)
386     {
387         if (fr->bAtoms)
388         {
389             fprintf(out, "POSITION\n");
390             for (i = 0; i < nout; i++)
391             {
392                 if (index)
393                 {
394                     a = index[i];
395                 }
396                 else
397                 {
398                     a = i;
399                 }
400                 fprintf(out, "%5d %-5s %-5s%7d%15.9f%15.9f%15.9f\n",
401                         (atoms->resinfo[atoms->atom[a].resind].nr) % 100000,
402                         *atoms->resinfo[atoms->atom[a].resind].name,
403                         *atoms->atomname[a], (i+1) % 10000000,
404                         fr->x[a][XX], fr->x[a][YY], fr->x[a][ZZ]);
405             }
406         }
407         else
408         {
409             fprintf(out, "POSITIONRED\n");
410             for (i = 0; i < nout; i++)
411             {
412                 if (index)
413                 {
414                     a = index[i];
415                 }
416                 else
417                 {
418                     a = i;
419                 }
420                 fprintf(out, "%15.9f%15.9f%15.9f\n",
421                         fr->x[a][XX], fr->x[a][YY], fr->x[a][ZZ]);
422             }
423         }
424         fprintf(out, "END\n");
425     }
426     if (fr->bV)
427     {
428         if (fr->bAtoms)
429         {
430             fprintf(out, "VELOCITY\n");
431             for (i = 0; i < nout; i++)
432             {
433                 if (index)
434                 {
435                     a = index[i];
436                 }
437                 else
438                 {
439                     a = i;
440                 }
441                 fprintf(out, "%5d %-5s %-5s%7d%15.9f%15.9f%15.9f\n",
442                         (atoms->resinfo[atoms->atom[a].resind].nr) % 100000,
443                         *atoms->resinfo[atoms->atom[a].resind].name,
444                         *atoms->atomname[a], (i+1) % 10000000,
445                         fr->v[a][XX], fr->v[a][YY], fr->v[a][ZZ]);
446             }
447         }
448         else
449         {
450             fprintf(out, "VELOCITYRED\n");
451             for (i = 0; i < nout; i++)
452             {
453                 if (index)
454                 {
455                     a = index[i];
456                 }
457                 else
458                 {
459                     a = i;
460                 }
461                 fprintf(out, "%15.9f%15.9f%15.9f\n",
462                         fr->v[a][XX], fr->v[a][YY], fr->v[a][ZZ]);
463             }
464         }
465         fprintf(out, "END\n");
466     }
467     if (fr->bBox)
468     {
469         fprintf(out, "BOX\n");
470         fprintf(out, "%15.9f%15.9f%15.9f",
471                 fr->box[XX][XX], fr->box[YY][YY], fr->box[ZZ][ZZ]);
472         if (fr->box[XX][YY] || fr->box[XX][ZZ] || fr->box[YY][XX] ||
473             fr->box[YY][ZZ] || fr->box[ZZ][XX] || fr->box[ZZ][YY])
474         {
475             fprintf(out, "%15.9f%15.9f%15.9f%15.9f%15.9f%15.9f",
476                     fr->box[XX][YY], fr->box[XX][ZZ], fr->box[YY][XX],
477                     fr->box[YY][ZZ], fr->box[ZZ][XX], fr->box[ZZ][YY]);
478         }
479         fprintf(out, "\n");
480         fprintf(out, "END\n");
481     }
482 }
483
484 static int get_espresso_word(FILE *fp, char word[])
485 {
486     int  ret, nc, i;
487
488     ret = 0;
489     nc  = 0;
490
491     do
492     {
493         i = fgetc(fp);
494         if (i != EOF)
495         {
496             if (i == ' ' || i == '\n' || i == '\t')
497             {
498                 if (nc > 0)
499                 {
500                     ret = 1;
501                 }
502             }
503             else if (i == '{')
504             {
505                 if (nc == 0)
506                 {
507                     word[nc++] = '{';
508                 }
509                 ret = 2;
510             }
511             else if (i == '}')
512             {
513                 if (nc == 0)
514                 {
515                     word[nc++] = '}';
516                 }
517                 ret = 3;
518             }
519             else
520             {
521                 word[nc++] = (char)i;
522             }
523         }
524     }
525     while (i != EOF && ret == 0);
526
527     word[nc] = '\0';
528
529     /*  printf("'%s'\n",word); */
530
531     return ret;
532 }
533
534 static int check_open_parenthesis(FILE *fp, int r,
535                                   const char *infile, const char *keyword)
536 {
537     int  level_inc;
538     char word[STRLEN];
539
540     level_inc = 0;
541     if (r == 2)
542     {
543         level_inc++;
544     }
545     else
546     {
547         r = get_espresso_word(fp, word);
548         if (r == 2)
549         {
550             level_inc++;
551         }
552         else
553         {
554             gmx_fatal(FARGS, "Expected '{' after '%s' in file '%s'",
555                       keyword, infile);
556         }
557     }
558
559     return level_inc;
560 }
561
562 static int check_close_parenthesis(FILE *fp, int r,
563                                    const char *infile, const char *keyword)
564 {
565     int  level_inc;
566     char word[STRLEN];
567
568     level_inc = 0;
569     if (r == 3)
570     {
571         level_inc--;
572     }
573     else
574     {
575         r = get_espresso_word(fp, word);
576         if (r == 3)
577         {
578             level_inc--;
579         }
580         else
581         {
582             gmx_fatal(FARGS, "Expected '}' after section '%s' in file '%s'",
583                       keyword, infile);
584         }
585     }
586
587     return level_inc;
588 }
589
590 enum {
591     espID, espPOS, espTYPE, espQ, espV, espF, espMOLECULE, espNR
592 };
593 const char *esp_prop[espNR] = {
594     "id", "pos", "type", "q", "v", "f",
595     "molecule"
596 };
597
598 static void read_espresso_conf(const char *infile,
599                                t_atoms *atoms, rvec x[], rvec *v, matrix box)
600 {
601     t_symtab *symtab = NULL;
602     FILE     *fp;
603     char      word[STRLEN], buf[STRLEN];
604     int       natoms, level, npar, r, nprop, p, i, m, molnr;
605     int       prop[32];
606     double    d;
607     gmx_bool  bFoundParticles, bFoundProp, bFoundVariable, bMol;
608
609     if (!symtab)
610     {
611         snew(symtab, 1);
612         open_symtab(symtab);
613     }
614
615     clear_mat(box);
616
617     fp = gmx_fio_fopen(infile, "r");
618
619     bFoundParticles = FALSE;
620     bFoundVariable  = FALSE;
621     bMol            = FALSE;
622     level           = 0;
623     while ((r = get_espresso_word(fp, word)))
624     {
625         if (level == 1 && strcmp(word, "particles") == 0 && !bFoundParticles)
626         {
627             bFoundParticles = TRUE;
628             level          += check_open_parenthesis(fp, r, infile, "particles");
629             nprop           = 0;
630             while (level == 2 && (r = get_espresso_word(fp, word)))
631             {
632                 bFoundProp = FALSE;
633                 for (p = 0; p < espNR; p++)
634                 {
635                     if (strcmp(word, esp_prop[p]) == 0)
636                     {
637                         bFoundProp    = TRUE;
638                         prop[nprop++] = p;
639                         /* printf("  prop[%d] = %s\n",nprop-1,esp_prop[prop[nprop-1]]); */
640                     }
641                 }
642                 if (!bFoundProp && word[0] != '}')
643                 {
644                     gmx_fatal(FARGS, "Can not read Espresso files with particle property '%s'", word);
645                 }
646                 if (bFoundProp && p == espMOLECULE)
647                 {
648                     bMol = TRUE;
649                 }
650                 if (r == 3)
651                 {
652                     level--;
653                 }
654             }
655
656             i = 0;
657             while (level > 0 && (r = get_espresso_word(fp, word)))
658             {
659                 if (r == 2)
660                 {
661                     level++;
662                 }
663                 else if (r == 3)
664                 {
665                     level--;
666                 }
667                 if (level == 2)
668                 {
669                     for (p = 0; p < nprop; p++)
670                     {
671                         switch (prop[p])
672                         {
673                             case espID:
674                                 r = get_espresso_word(fp, word);
675                                 /* Not used */
676                                 break;
677                             case espPOS:
678                                 for (m = 0; m < 3; m++)
679                                 {
680                                     r = get_espresso_word(fp, word);
681                                     sscanf(word, "%lf", &d);
682                                     x[i][m] = d;
683                                 }
684                                 break;
685                             case espTYPE:
686                                 r                   = get_espresso_word(fp, word);
687                                 atoms->atom[i].type = strtol(word, NULL, 10);
688                                 break;
689                             case espQ:
690                                 r = get_espresso_word(fp, word);
691                                 sscanf(word, "%lf", &d);
692                                 atoms->atom[i].q = d;
693                                 break;
694                             case espV:
695                                 for (m = 0; m < 3; m++)
696                                 {
697                                     r = get_espresso_word(fp, word);
698                                     sscanf(word, "%lf", &d);
699                                     v[i][m] = d;
700                                 }
701                                 break;
702                             case espF:
703                                 for (m = 0; m < 3; m++)
704                                 {
705                                     r = get_espresso_word(fp, word);
706                                     /* not used */
707                                 }
708                                 break;
709                             case espMOLECULE:
710                                 r     = get_espresso_word(fp, word);
711                                 molnr = strtol(word, NULL, 10);
712                                 if (i == 0 ||
713                                     atoms->resinfo[atoms->atom[i-1].resind].nr != molnr)
714                                 {
715                                     atoms->atom[i].resind =
716                                         (i == 0 ? 0 : atoms->atom[i-1].resind+1);
717                                     atoms->resinfo[atoms->atom[i].resind].nr       = molnr;
718                                     atoms->resinfo[atoms->atom[i].resind].ic       = ' ';
719                                     atoms->resinfo[atoms->atom[i].resind].chainid  = ' ';
720                                     atoms->resinfo[atoms->atom[i].resind].chainnum = molnr; /* Not sure if this is right? */
721                                 }
722                                 else
723                                 {
724                                     atoms->atom[i].resind = atoms->atom[i-1].resind;
725                                 }
726                                 break;
727                         }
728                     }
729                     /* Generate an atom name from the particle type */
730                     sprintf(buf, "T%d", atoms->atom[i].type);
731                     atoms->atomname[i] = put_symtab(symtab, buf);
732                     if (bMol)
733                     {
734                         if (i == 0 || atoms->atom[i].resind != atoms->atom[i-1].resind)
735                         {
736                             atoms->resinfo[atoms->atom[i].resind].name =
737                                 put_symtab(symtab, "MOL");
738                         }
739                     }
740                     else
741                     {
742                         /* Residue number is the atom number */
743                         atoms->atom[i].resind = i;
744                         /* Generate an residue name from the particle type */
745                         if (atoms->atom[i].type < 26)
746                         {
747                             sprintf(buf, "T%c", 'A'+atoms->atom[i].type);
748                         }
749                         else
750                         {
751                             sprintf(buf, "T%c%c",
752                                     'A'+atoms->atom[i].type/26, 'A'+atoms->atom[i].type%26);
753                         }
754                         t_atoms_set_resinfo(atoms, i, symtab, buf, i, ' ', 0, ' ');
755                     }
756
757                     if (r == 3)
758                     {
759                         level--;
760                     }
761                     i++;
762                 }
763             }
764             atoms->nres = atoms->nr;
765
766             if (i != atoms->nr)
767             {
768                 gmx_fatal(FARGS, "Internal inconsistency in Espresso routines, read %d atoms, expected %d atoms", i, atoms->nr);
769             }
770         }
771         else if (level == 1 && strcmp(word, "variable") == 0 && !bFoundVariable)
772         {
773             bFoundVariable = TRUE;
774             level         += check_open_parenthesis(fp, r, infile, "variable");
775             while (level == 2 && (r = get_espresso_word(fp, word)))
776             {
777                 if (level == 2 && strcmp(word, "box_l") == 0)
778                 {
779                     for (m = 0; m < 3; m++)
780                     {
781                         r = get_espresso_word(fp, word);
782                         sscanf(word, "%lf", &d);
783                         box[m][m] = d;
784                     }
785                     level += check_close_parenthesis(fp, r, infile, "box_l");
786                 }
787             }
788         }
789         else if (r == 2)
790         {
791             level++;
792         }
793         else if (r == 3)
794         {
795             level--;
796         }
797     }
798
799     if (!bFoundParticles)
800     {
801         fprintf(stderr, "Did not find a particles section in Espresso file '%s'\n",
802                 infile);
803     }
804
805     gmx_fio_fclose(fp);
806 }
807
808 static int get_espresso_coordnum(const char *infile)
809 {
810     FILE    *fp;
811     char     word[STRLEN];
812     int      natoms, level, r;
813     gmx_bool bFoundParticles;
814
815     natoms = 0;
816
817     fp = gmx_fio_fopen(infile, "r");
818
819     bFoundParticles = FALSE;
820     level           = 0;
821     while ((r = get_espresso_word(fp, word)) && !bFoundParticles)
822     {
823         if (level == 1 && strcmp(word, "particles") == 0 && !bFoundParticles)
824         {
825             bFoundParticles = TRUE;
826             level          += check_open_parenthesis(fp, r, infile, "particles");
827             while (level > 0 && (r = get_espresso_word(fp, word)))
828             {
829                 if (r == 2)
830                 {
831                     level++;
832                     if (level == 2)
833                     {
834                         natoms++;
835                     }
836                 }
837                 else if (r == 3)
838                 {
839                     level--;
840                 }
841             }
842         }
843         else if (r == 2)
844         {
845             level++;
846         }
847         else if (r == 3)
848         {
849             level--;
850         }
851     }
852     if (!bFoundParticles)
853     {
854         fprintf(stderr, "Did not find a particles section in Espresso file '%s'\n",
855                 infile);
856     }
857
858     gmx_fio_fclose(fp);
859
860     return natoms;
861 }
862
863 static void write_espresso_conf_indexed(FILE *out, const char *title,
864                                         t_atoms *atoms, int nx, atom_id *index,
865                                         rvec *x, rvec *v, matrix box)
866 {
867     int i, j;
868
869     fprintf(out, "# %s\n", title);
870     if (TRICLINIC(box))
871     {
872         gmx_warning("The Espresso format does not support triclinic unit-cells");
873     }
874     fprintf(out, "{variable {box_l %f %f %f}}\n", box[0][0], box[1][1], box[2][2]);
875
876     fprintf(out, "{particles {id pos type q%s}\n", v ? " v" : "");
877     for (i = 0; i < nx; i++)
878     {
879         if (index)
880         {
881             j = index[i];
882         }
883         else
884         {
885             j = i;
886         }
887         fprintf(out, "\t{%d %f %f %f %d %g",
888                 j, x[j][XX], x[j][YY], x[j][ZZ],
889                 atoms->atom[j].type, atoms->atom[j].q);
890         if (v)
891         {
892             fprintf(out, " %f %f %f", v[j][XX], v[j][YY], v[j][ZZ]);
893         }
894         fprintf(out, "}\n");
895     }
896     fprintf(out, "}\n");
897 }
898
899 static void get_coordnum_fp (FILE *in, char *title, int *natoms)
900 {
901     char line[STRLEN+1];
902
903     fgets2 (title, STRLEN, in);
904     fgets2 (line, STRLEN, in);
905     if (sscanf (line, "%d", natoms) != 1)
906     {
907         gmx_fatal(FARGS, "gro file does not have the number of atoms on the second line");
908     }
909 }
910
911 static void get_coordnum (const char *infile, int *natoms)
912 {
913     FILE *in;
914     char  title[STRLEN];
915
916     in = gmx_fio_fopen(infile, "r");
917     get_coordnum_fp(in, title, natoms);
918     gmx_fio_fclose (in);
919 }
920
921 static gmx_bool get_w_conf(FILE *in, const char *infile, char *title,
922                            t_symtab *symtab, t_atoms *atoms, int *ndec,
923                            rvec x[], rvec *v, matrix box)
924 {
925     char       name[6];
926     char       line[STRLEN+1], *ptr;
927     char       buf[256];
928     double     x1, y1, z1, x2, y2, z2;
929     rvec       xmin, xmax;
930     int        natoms, i, m, resnr, newres, oldres, ddist, c;
931     gmx_bool   bFirst, bVel;
932     char      *p1, *p2, *p3;
933
934     newres  = -1;
935     oldres  = NOTSET; /* Unlikely number for the first residue! */
936     ddist   = 0;
937
938     /* Read the title and number of atoms */
939     get_coordnum_fp(in, title, &natoms);
940
941     if (natoms > atoms->nr)
942     {
943         gmx_fatal(FARGS, "gro file contains more atoms (%d) than expected (%d)",
944                   natoms, atoms->nr);
945     }
946     else if (natoms <  atoms->nr)
947     {
948         fprintf(stderr, "Warning: gro file contains less atoms (%d) than expected"
949                 " (%d)\n", natoms, atoms->nr);
950     }
951
952     bFirst = TRUE;
953
954     bVel = FALSE;
955
956     /* just pray the arrays are big enough */
957     for (i = 0; (i < natoms); i++)
958     {
959         if ((fgets2 (line, STRLEN, in)) == NULL)
960         {
961             gmx_fatal(FARGS, "Unexpected end of file in file %s at line %d",
962                       infile, i+2);
963         }
964         if (strlen(line) < 39)
965         {
966             gmx_fatal(FARGS, "Invalid line in %s for atom %d:\n%s", infile, i+1, line);
967         }
968
969         /* determine read precision from distance between periods
970            (decimal points) */
971         if (bFirst)
972         {
973             bFirst = FALSE;
974             p1     = strchr(line, '.');
975             if (p1 == NULL)
976             {
977                 gmx_fatal(FARGS, "A coordinate in file %s does not contain a '.'", infile);
978             }
979             p2 = strchr(&p1[1], '.');
980             if (p2 == NULL)
981             {
982                 gmx_fatal(FARGS, "A coordinate in file %s does not contain a '.'", infile);
983             }
984             ddist = p2 - p1;
985             *ndec = ddist - 5;
986
987             p3 = strchr(&p2[1], '.');
988             if (p3 == NULL)
989             {
990                 gmx_fatal(FARGS, "A coordinate in file %s does not contain a '.'", infile);
991             }
992
993             if (p3 - p2 != ddist)
994             {
995                 gmx_fatal(FARGS, "The spacing of the decimal points in file %s is not consistent for x, y and z", infile);
996             }
997         }
998
999         /* residue number*/
1000         memcpy(name, line, 5);
1001         name[5] = '\0';
1002         sscanf(name, "%d", &resnr);
1003         memcpy(name, line+5, 5);
1004         name[5] = '\0';
1005         if (resnr != oldres)
1006         {
1007             oldres = resnr;
1008             newres++;
1009             if (newres >= natoms)
1010             {
1011                 gmx_fatal(FARGS, "More residues than atoms in %s (natoms = %d)",
1012                           infile, natoms);
1013             }
1014             atoms->atom[i].resind = newres;
1015             t_atoms_set_resinfo(atoms, i, symtab, name, resnr, ' ', 0, ' ');
1016         }
1017         else
1018         {
1019             atoms->atom[i].resind = newres;
1020         }
1021
1022         /* atomname */
1023         memcpy(name, line+10, 5);
1024         atoms->atomname[i] = put_symtab(symtab, name);
1025
1026         /* eventueel controle atomnumber met i+1 */
1027
1028         /* coordinates (start after residue data) */
1029         ptr = line + 20;
1030         /* Read fixed format */
1031         for (m = 0; m < DIM; m++)
1032         {
1033             for (c = 0; (c < ddist && ptr[0]); c++)
1034             {
1035                 buf[c] = ptr[0];
1036                 ptr++;
1037             }
1038             buf[c] = '\0';
1039             if (sscanf (buf, "%lf %lf", &x1, &x2) != 1)
1040             {
1041                 gmx_fatal(FARGS, "Something is wrong in the coordinate formatting of file %s. Note that gro is fixed format (see the manual)", infile);
1042             }
1043             else
1044             {
1045                 x[i][m] = x1;
1046             }
1047         }
1048
1049         /* velocities (start after residues and coordinates) */
1050         if (v)
1051         {
1052             /* Read fixed format */
1053             for (m = 0; m < DIM; m++)
1054             {
1055                 for (c = 0; (c < ddist && ptr[0]); c++)
1056                 {
1057                     buf[c] = ptr[0];
1058                     ptr++;
1059                 }
1060                 buf[c] = '\0';
1061                 if (sscanf (buf, "%lf", &x1) != 1)
1062                 {
1063                     v[i][m] = 0;
1064                 }
1065                 else
1066                 {
1067                     v[i][m] = x1;
1068                     bVel    = TRUE;
1069                 }
1070             }
1071         }
1072     }
1073     atoms->nres = newres + 1;
1074
1075     /* box */
1076     fgets2 (line, STRLEN, in);
1077     if (sscanf (line, "%lf%lf%lf", &x1, &y1, &z1) != 3)
1078     {
1079         gmx_warning("Bad box in file %s", infile);
1080
1081         /* Generate a cubic box */
1082         for (m = 0; (m < DIM); m++)
1083         {
1084             xmin[m] = xmax[m] = x[0][m];
1085         }
1086         for (i = 1; (i < atoms->nr); i++)
1087         {
1088             for (m = 0; (m < DIM); m++)
1089             {
1090                 xmin[m] = min(xmin[m], x[i][m]);
1091                 xmax[m] = max(xmax[m], x[i][m]);
1092             }
1093         }
1094         for (i = 0; i < DIM; i++)
1095         {
1096             for (m = 0; m < DIM; m++)
1097             {
1098                 box[i][m] = 0.0;
1099             }
1100         }
1101         for (m = 0; (m < DIM); m++)
1102         {
1103             box[m][m] = (xmax[m]-xmin[m]);
1104         }
1105         fprintf(stderr, "Generated a cubic box %8.3f x %8.3f x %8.3f\n",
1106                 box[XX][XX], box[YY][YY], box[ZZ][ZZ]);
1107     }
1108     else
1109     {
1110         /* We found the first three values, the diagonal elements */
1111         box[XX][XX] = x1;
1112         box[YY][YY] = y1;
1113         box[ZZ][ZZ] = z1;
1114         if (sscanf (line, "%*f%*f%*f%lf%lf%lf%lf%lf%lf",
1115                     &x1, &y1, &z1, &x2, &y2, &z2) != 6)
1116         {
1117             x1 = y1 = z1 = x2 = y2 = z2 = 0.0;
1118         }
1119         box[XX][YY] = x1;
1120         box[XX][ZZ] = y1;
1121         box[YY][XX] = z1;
1122         box[YY][ZZ] = x2;
1123         box[ZZ][XX] = y2;
1124         box[ZZ][YY] = z2;
1125     }
1126
1127     return bVel;
1128 }
1129
1130 static void read_whole_conf(const char *infile, char *title,
1131                             t_atoms *atoms, rvec x[], rvec *v, matrix box)
1132 {
1133     FILE    *in;
1134     int      ndec;
1135     t_symtab symtab;
1136
1137     /* open file */
1138     in = gmx_fio_fopen(infile, "r");
1139
1140     open_symtab(&symtab);
1141     get_w_conf(in, infile, title, &symtab, atoms, &ndec, x, v, box);
1142     /* We can't free the symbols, as they are still used in atoms, so
1143      * the only choice is to leak them. */
1144     free_symtab(&symtab);
1145
1146     gmx_fio_fclose(in);
1147 }
1148
1149 static gmx_bool gmx_one_before_eof(FILE *fp)
1150 {
1151     char     data[4];
1152     gmx_bool beof;
1153
1154     if ((beof = fread(data, 1, 1, fp)) == 1)
1155     {
1156         gmx_fseek(fp, -1, SEEK_CUR);
1157     }
1158     return !beof;
1159 }
1160
1161 gmx_bool gro_next_x_or_v(FILE *status, t_trxframe *fr)
1162 {
1163     t_atoms  atoms;
1164     t_symtab symtab;
1165     char     title[STRLEN], *p;
1166     double   tt;
1167     int      ndec = 0, i;
1168
1169     if (gmx_one_before_eof(status))
1170     {
1171         return FALSE;
1172     }
1173
1174     open_symtab(&symtab);
1175     atoms.nr = fr->natoms;
1176     snew(atoms.atom, fr->natoms);
1177     atoms.nres = fr->natoms;
1178     snew(atoms.resinfo, fr->natoms);
1179     snew(atoms.atomname, fr->natoms);
1180
1181     fr->bV    = get_w_conf(status, title, title, &symtab, &atoms, &ndec, fr->x, fr->v, fr->box);
1182     fr->bPrec = TRUE;
1183     fr->prec  = 1;
1184     /* prec = 10^ndec: */
1185     for (i = 0; i < ndec; i++)
1186     {
1187         fr->prec *= 10;
1188     }
1189     fr->title  = title;
1190     fr->bTitle = TRUE;
1191     fr->bX     = TRUE;
1192     fr->bBox   = TRUE;
1193
1194     sfree(atoms.atom);
1195     sfree(atoms.resinfo);
1196     sfree(atoms.atomname);
1197     done_symtab(&symtab);
1198
1199     if ((p = strstr(title, "t=")) != NULL)
1200     {
1201         p += 2;
1202         if (sscanf(p, "%lf", &tt) == 1)
1203         {
1204             fr->time  = tt;
1205             fr->bTime = TRUE;
1206         }
1207         else
1208         {
1209             fr->time  = 0;
1210             fr->bTime = FALSE;
1211         }
1212     }
1213
1214     if (atoms.nr != fr->natoms)
1215     {
1216         gmx_fatal(FARGS, "Number of atoms in gro frame (%d) doesn't match the number in the previous frame (%d)", atoms.nr, fr->natoms);
1217     }
1218
1219     return TRUE;
1220 }
1221
1222 int gro_first_x_or_v(FILE *status, t_trxframe *fr)
1223 {
1224     char title[STRLEN];
1225
1226     frewind(status);
1227     fprintf(stderr, "Reading frames from gro file");
1228     get_coordnum_fp(status, title, &fr->natoms);
1229     frewind(status);
1230     fprintf(stderr, " '%s', %d atoms.\n", title, fr->natoms);
1231     fr->bTitle = TRUE;
1232     fr->title  = title;
1233     if (fr->natoms == 0)
1234     {
1235         gmx_file("No coordinates in gro file");
1236     }
1237
1238     snew(fr->x, fr->natoms);
1239     snew(fr->v, fr->natoms);
1240     gro_next_x_or_v(status, fr);
1241
1242     return fr->natoms;
1243 }
1244
1245 static void make_hconf_format(int pr, gmx_bool bVel, char format[])
1246 {
1247     int l, vpr;
1248
1249     /* build format string for printing,
1250        something like "%8.3f" for x and "%8.4f" for v */
1251     if (pr < 0)
1252     {
1253         pr = 0;
1254     }
1255     if (pr > 30)
1256     {
1257         pr = 30;
1258     }
1259     l   = pr+5;
1260     vpr = pr+1;
1261     if (bVel)
1262     {
1263         sprintf(format, "%%%d.%df%%%d.%df%%%d.%df%%%d.%df%%%d.%df%%%d.%df\n",
1264                 l, pr, l, pr, l, pr, l, vpr, l, vpr, l, vpr);
1265     }
1266     else
1267     {
1268         sprintf(format, "%%%d.%df%%%d.%df%%%d.%df\n", l, pr, l, pr, l, pr);
1269     }
1270
1271 }
1272
1273 static void write_hconf_box(FILE *out, int pr, matrix box)
1274 {
1275     char format[100];
1276     int  l;
1277
1278     if (pr < 5)
1279     {
1280         pr = 5;
1281     }
1282     l = pr+5;
1283
1284     if (box[XX][YY] || box[XX][ZZ] || box[YY][XX] || box[YY][ZZ] ||
1285         box[ZZ][XX] || box[ZZ][YY])
1286     {
1287         sprintf(format, "%%%d.%df%%%d.%df%%%d.%df"
1288                 "%%%d.%df%%%d.%df%%%d.%df%%%d.%df%%%d.%df%%%d.%df\n",
1289                 l, pr, l, pr, l, pr, l, pr, l, pr, l, pr, l, pr, l, pr, l, pr);
1290         fprintf(out, format,
1291                 box[XX][XX], box[YY][YY], box[ZZ][ZZ],
1292                 box[XX][YY], box[XX][ZZ], box[YY][XX],
1293                 box[YY][ZZ], box[ZZ][XX], box[ZZ][YY]);
1294     }
1295     else
1296     {
1297         sprintf(format, "%%%d.%df%%%d.%df%%%d.%df\n", l, pr, l, pr, l, pr);
1298         fprintf(out, format,
1299                 box[XX][XX], box[YY][YY], box[ZZ][ZZ]);
1300     }
1301 }
1302
1303 void write_hconf_indexed_p(FILE *out, const char *title, t_atoms *atoms,
1304                            int nx, const atom_id index[], int pr,
1305                            rvec *x, rvec *v, matrix box)
1306 {
1307     char resnm[6], nm[6], format[100];
1308     int  ai, i, resind, resnr;
1309
1310     bromacs(format, 99);
1311     fprintf (out, "%s\n", (title && title[0]) ? title : format);
1312     fprintf (out, "%5d\n", nx);
1313
1314     make_hconf_format(pr, v != NULL, format);
1315
1316     for (i = 0; (i < nx); i++)
1317     {
1318         ai = index[i];
1319
1320         resind = atoms->atom[ai].resind;
1321         strncpy(resnm, " ??? ", sizeof(resnm)-1);
1322         if (resind < atoms->nres)
1323         {
1324             strncpy(resnm, *atoms->resinfo[resind].name, sizeof(resnm)-1);
1325             resnr = atoms->resinfo[resind].nr;
1326         }
1327         else
1328         {
1329             strncpy(resnm, " ??? ", sizeof(resnm)-1);
1330             resnr = resind + 1;
1331         }
1332
1333         if (atoms->atom)
1334         {
1335             strncpy(nm, *atoms->atomname[ai], sizeof(nm)-1);
1336         }
1337         else
1338         {
1339             strncpy(nm, " ??? ", sizeof(nm)-1);
1340         }
1341
1342         fprintf(out, "%5d%-5.5s%5.5s%5d", resnr%100000, resnm, nm, (ai+1)%100000);
1343         /* next fprintf uses built format string */
1344         if (v)
1345         {
1346             fprintf(out, format,
1347                     x[ai][XX], x[ai][YY], x[ai][ZZ], v[ai][XX], v[ai][YY], v[ai][ZZ]);
1348         }
1349         else
1350         {
1351             fprintf(out, format,
1352                     x[ai][XX], x[ai][YY], x[ai][ZZ]);
1353         }
1354     }
1355
1356     write_hconf_box(out, pr, box);
1357
1358     fflush(out);
1359 }
1360
1361 static void write_hconf_mtop(FILE *out, const char *title, gmx_mtop_t *mtop,
1362                              int pr,
1363                              rvec *x, rvec *v, matrix box)
1364 {
1365     char                    format[100];
1366     int                     i, resnr;
1367     gmx_mtop_atomloop_all_t aloop;
1368     t_atom                 *atom;
1369     char                   *atomname, *resname;
1370
1371     bromacs(format, 99);
1372     fprintf (out, "%s\n", (title && title[0]) ? title : format);
1373     fprintf (out, "%5d\n", mtop->natoms);
1374
1375     make_hconf_format(pr, v != NULL, format);
1376
1377     aloop = gmx_mtop_atomloop_all_init(mtop);
1378     while (gmx_mtop_atomloop_all_next(aloop, &i, &atom))
1379     {
1380         gmx_mtop_atomloop_all_names(aloop, &atomname, &resnr, &resname);
1381
1382         fprintf(out, "%5d%-5.5s%5.5s%5d",
1383                 resnr%100000, resname, atomname, (i+1)%100000);
1384         /* next fprintf uses built format string */
1385         if (v)
1386         {
1387             fprintf(out, format,
1388                     x[i][XX], x[i][YY], x[i][ZZ], v[i][XX], v[i][YY], v[i][ZZ]);
1389         }
1390         else
1391         {
1392             fprintf(out, format,
1393                     x[i][XX], x[i][YY], x[i][ZZ]);
1394         }
1395     }
1396
1397     write_hconf_box(out, pr, box);
1398
1399     fflush(out);
1400 }
1401
1402 void write_hconf_p(FILE *out, const char *title, t_atoms *atoms, int pr,
1403                    rvec *x, rvec *v, matrix box)
1404 {
1405     atom_id *aa;
1406     int      i;
1407
1408     snew(aa, atoms->nr);
1409     for (i = 0; (i < atoms->nr); i++)
1410     {
1411         aa[i] = i;
1412     }
1413     write_hconf_indexed_p(out, title, atoms, atoms->nr, aa, pr, x, v, box);
1414     sfree(aa);
1415 }
1416
1417 void write_conf_p(const char *outfile, const char *title,
1418                   t_atoms *atoms, int pr,
1419                   rvec *x, rvec *v, matrix box)
1420 {
1421     FILE *out;
1422
1423     out = gmx_fio_fopen(outfile, "w");
1424     write_hconf_p(out, title, atoms, pr, x, v, box);
1425
1426     gmx_fio_fclose (out);
1427 }
1428
1429 static void write_conf(const char *outfile, const char *title, t_atoms *atoms,
1430                        rvec *x, rvec *v, matrix box)
1431 {
1432     write_conf_p(outfile, title, atoms, 3, x, v, box);
1433 }
1434
1435 void write_sto_conf_indexed(const char *outfile, const char *title,
1436                             t_atoms *atoms,
1437                             rvec x[], rvec *v, int ePBC, matrix box,
1438                             atom_id nindex, atom_id index[])
1439 {
1440     FILE       *out;
1441     int         ftp;
1442     t_trxframe  fr;
1443
1444     ftp = fn2ftp(outfile);
1445     switch (ftp)
1446     {
1447         case efGRO:
1448             out = gmx_fio_fopen(outfile, "w");
1449             write_hconf_indexed_p(out, title, atoms, nindex, index, 3, x, v, box);
1450             gmx_fio_fclose(out);
1451             break;
1452         case efG96:
1453             clear_trxframe(&fr, TRUE);
1454             fr.bTitle = TRUE;
1455             fr.title  = title;
1456             fr.natoms = atoms->nr;
1457             fr.bAtoms = TRUE;
1458             fr.atoms  = atoms;
1459             fr.bX     = TRUE;
1460             fr.x      = x;
1461             if (v)
1462             {
1463                 fr.bV = TRUE;
1464                 fr.v  = v;
1465             }
1466             fr.bBox = TRUE;
1467             copy_mat(box, fr.box);
1468             out = gmx_fio_fopen(outfile, "w");
1469             write_g96_conf(out, &fr, nindex, index);
1470             gmx_fio_fclose(out);
1471             break;
1472         case efPDB:
1473         case efBRK:
1474         case efENT:
1475         case efPQR:
1476             out = gmx_fio_fopen(outfile, "w");
1477             write_pdbfile_indexed(out, title, atoms, x, ePBC, box, ' ', -1, nindex, index, NULL, TRUE);
1478             gmx_fio_fclose(out);
1479             break;
1480         case efESP:
1481             out = gmx_fio_fopen(outfile, "w");
1482             write_espresso_conf_indexed(out, title, atoms, nindex, index, x, v, box);
1483             gmx_fio_fclose(out);
1484             break;
1485         case efTPR:
1486             gmx_fatal(FARGS, "Sorry, can not write a topology to %s", outfile);
1487             break;
1488         default:
1489             gmx_incons("Not supported in write_sto_conf_indexed");
1490     }
1491 }
1492
1493 void write_sto_conf(const char *outfile, const char *title, t_atoms *atoms,
1494                     rvec x[], rvec *v, int ePBC, matrix box)
1495 {
1496     FILE       *out;
1497     int         ftp;
1498     t_trxframe  fr;
1499
1500     ftp = fn2ftp(outfile);
1501     switch (ftp)
1502     {
1503         case efGRO:
1504             write_conf(outfile, title, atoms, x, v, box);
1505             break;
1506         case efG96:
1507             clear_trxframe(&fr, TRUE);
1508             fr.bTitle = TRUE;
1509             fr.title  = title;
1510             fr.natoms = atoms->nr;
1511             fr.bAtoms = TRUE;
1512             fr.atoms  = atoms;
1513             fr.bX     = TRUE;
1514             fr.x      = x;
1515             if (v)
1516             {
1517                 fr.bV = TRUE;
1518                 fr.v  = v;
1519             }
1520             fr.bBox = TRUE;
1521             copy_mat(box, fr.box);
1522             out = gmx_fio_fopen(outfile, "w");
1523             write_g96_conf(out, &fr, -1, NULL);
1524             gmx_fio_fclose(out);
1525             break;
1526         case efPDB:
1527         case efBRK:
1528         case efENT:
1529             out = gmx_fio_fopen(outfile, "w");
1530             write_pdbfile(out, title, atoms, x, ePBC, box, ' ', -1, NULL, TRUE);
1531             gmx_fio_fclose(out);
1532             break;
1533         case efESP:
1534             out = gmx_fio_fopen(outfile, "w");
1535             write_espresso_conf_indexed(out, title, atoms, atoms->nr, NULL, x, v, box);
1536             gmx_fio_fclose(out);
1537             break;
1538         case efTPR:
1539             gmx_fatal(FARGS, "Sorry, can not write a topology to %s", outfile);
1540             break;
1541         default:
1542             gmx_incons("Not supported in write_sto_conf");
1543     }
1544 }
1545
1546 void write_sto_conf_mtop(const char *outfile, const char *title,
1547                          gmx_mtop_t *mtop,
1548                          rvec x[], rvec *v, int ePBC, matrix box)
1549 {
1550     int     ftp;
1551     FILE   *out;
1552     t_atoms atoms;
1553
1554     ftp = fn2ftp(outfile);
1555     switch (ftp)
1556     {
1557         case efGRO:
1558             out = gmx_fio_fopen(outfile, "w");
1559             write_hconf_mtop(out, title, mtop, 3, x, v, box);
1560             gmx_fio_fclose(out);
1561             break;
1562         default:
1563             /* This is a brute force approach which requires a lot of memory.
1564              * We should implement mtop versions of all writing routines.
1565              */
1566             atoms = gmx_mtop_global_atoms(mtop);
1567
1568             write_sto_conf(outfile, title, &atoms, x, v, ePBC, box);
1569
1570             done_atom(&atoms);
1571             break;
1572     }
1573 }
1574
1575 void get_stx_coordnum(const char *infile, int *natoms)
1576 {
1577     FILE      *in;
1578     int        ftp, tpxver, tpxgen;
1579     t_trxframe fr;
1580     char       g96_line[STRLEN+1];
1581
1582     ftp = fn2ftp(infile);
1583     range_check(ftp, 0, efNR);
1584     switch (ftp)
1585     {
1586         case efGRO:
1587             get_coordnum(infile, natoms);
1588             break;
1589         case efG96:
1590             in        = gmx_fio_fopen(infile, "r");
1591             fr.title  = NULL;
1592             fr.natoms = -1;
1593             fr.atoms  = NULL;
1594             fr.x      = NULL;
1595             fr.v      = NULL;
1596             fr.f      = NULL;
1597             *natoms   = read_g96_conf(in, infile, &fr, g96_line);
1598             gmx_fio_fclose(in);
1599             break;
1600         case efPDB:
1601         case efBRK:
1602         case efENT:
1603             in = gmx_fio_fopen(infile, "r");
1604             get_pdb_coordnum(in, natoms);
1605             gmx_fio_fclose(in);
1606             break;
1607         case efESP:
1608             *natoms = get_espresso_coordnum(infile);
1609             break;
1610         case efTPR:
1611         {
1612             t_tpxheader tpx;
1613
1614             read_tpxheader(infile, &tpx, TRUE, &tpxver, &tpxgen);
1615             *natoms = tpx.natoms;
1616             break;
1617         }
1618         default:
1619             gmx_fatal(FARGS, "File type %s not supported in get_stx_coordnum",
1620                       ftp2ext(ftp));
1621     }
1622 }
1623
1624 void read_stx_conf(const char *infile, char *title, t_atoms *atoms,
1625                    rvec x[], rvec *v, int *ePBC, matrix box)
1626 {
1627     FILE       *in;
1628     char        buf[256];
1629     gmx_mtop_t *mtop;
1630     t_topology  top;
1631     t_trxframe  fr;
1632     int         i, ftp, natoms;
1633     real        d;
1634     char        g96_line[STRLEN+1];
1635
1636     if (atoms->nr == 0)
1637     {
1638         fprintf(stderr, "Warning: Number of atoms in %s is 0\n", infile);
1639     }
1640     else if (atoms->atom == NULL)
1641     {
1642         gmx_mem("Uninitialized array atom");
1643     }
1644
1645     if (ePBC)
1646     {
1647         *ePBC = -1;
1648     }
1649
1650     ftp = fn2ftp(infile);
1651     switch (ftp)
1652     {
1653         case efGRO:
1654             read_whole_conf(infile, title, atoms, x, v, box);
1655             break;
1656         case efG96:
1657             fr.title  = NULL;
1658             fr.natoms = atoms->nr;
1659             fr.atoms  = atoms;
1660             fr.x      = x;
1661             fr.v      = v;
1662             fr.f      = NULL;
1663             in        = gmx_fio_fopen(infile, "r");
1664             read_g96_conf(in, infile, &fr, g96_line);
1665             gmx_fio_fclose(in);
1666             copy_mat(fr.box, box);
1667             strncpy(title, fr.title, STRLEN);
1668             break;
1669         case efPDB:
1670         case efBRK:
1671         case efENT:
1672             read_pdb_conf(infile, title, atoms, x, ePBC, box, TRUE, NULL);
1673             break;
1674         case efESP:
1675             read_espresso_conf(infile, atoms, x, v, box);
1676             break;
1677         case efTPR:
1678             snew(mtop, 1);
1679             i = read_tpx(infile, NULL, box, &natoms, x, v, NULL, mtop);
1680             if (ePBC)
1681             {
1682                 *ePBC = i;
1683             }
1684
1685             strcpy(title, *(mtop->name));
1686
1687             /* Free possibly allocated memory */
1688             done_atom(atoms);
1689
1690             *atoms = gmx_mtop_global_atoms(mtop);
1691             top    = gmx_mtop_t_to_t_topology(mtop);
1692             tpx_make_chain_identifiers(atoms, &top.mols);
1693
1694             sfree(mtop);
1695             /* The strings in the symtab are still in use in the returned t_atoms
1696              * structure, so we should not free them. But there is no place to put the
1697              * symbols; the only choice is to leak the memory...
1698              * So we clear the symbol table before freeing the topology structure. */
1699             free_symtab(&top.symtab);
1700             done_top(&top);
1701
1702             break;
1703         default:
1704             gmx_incons("Not supported in read_stx_conf");
1705     }
1706 }