Merge branch 'master' of git://git.gromacs.org/gromacs
[gromacs/adressmacs.git] / src / mdlib / gmx_qhop_db_test.c
blob8219672a839783a71932c2b94acffd70a138201b
1 /* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
2 * $Id: gmx_matrix.c,v 1.4 2008/12/02 18:27:57 spoel Exp $
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 4.5
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-2008, The GROMACS development team,
14 * check out http://www.gromacs.org for more information.
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.
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.
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.
31 * For more info, check our website at http://www.gromacs.org
33 * And Hey:
34 * Groningen Machine for Chemical Simulation
36 #ifdef HAVE_CONFIG_H
37 #include <config.h>
38 #endif
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include "gmx_fatal.h"
43 #include "macros.h"
44 #include "gmx_qhop_db.h"
46 int main(int argc,char *argv[])
48 gmx_qhop_db db;
49 char *donors[] = { "H3O+", "ACE" };
50 char *acceptors[] = { "H2O", "GLU" };
51 t_qhop_parameters qp;
52 int i,j;
54 if ((db = gmx_qhop_db_read("ffoplsaa")) == NULL)
55 gmx_fatal(FARGS,"Can not read qhop database information");
56 if (gmx_qhop_db_write("koe.dat",db) != 1)
57 gmx_fatal(FARGS,"Can not write qhop database information");
59 for(i=0; (i<asize(donors)); i++) {
60 for(j=0; (j<asize(acceptors)); j++) {
61 if (gmx_qhop_db_get_parameters(db,donors[i],acceptors[j],&qp) == 1) {
62 printf("Found qhop parameters for donor %s and acceptor %s\n",
63 donors[i],acceptors[j]);
65 else {
66 printf("Could not find qhop parameters for donor %s and acceptor %s\n",
67 donors[i],acceptors[j]);
72 if (gmx_qhop_db_done(db) != 1)
73 gmx_fatal(FARGS,"Error destroying qhop data");
75 return 0;