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 $
4 * This source code is part of
8 * GROningen MAchine for Chemical Simulations
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
34 * Groningen Machine for Chemical Simulation
42 #include "gmx_fatal.h"
44 #include "gmx_qhop_db.h"
46 int main(int argc
,char *argv
[])
49 char *donors
[] = { "H3O+", "ACE" };
50 char *acceptors
[] = { "H2O", "GLU" };
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
]);
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");