Merge "Extended genbox to insert molecules at given positions"
[alexxy/gromacs.git] / src / gromacs / gmxlib / nonbonded / nb_generic_adress.h
1 /* -*- mode: c; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; c-file-style: "stroustrup"; -*-
2  *
3  * Copyright (c) 2011 Christoph Junghans, Sebastian Fritsch
4  * 
5  *                This source code is part of
6  * 
7  *                 G   R   O   M   A   C   S
8  * 
9  *          GROningen MAchine for Chemical Simulations
10  * 
11  *                        VERSION 4.0.5
12  * Written by Christoph Junghans, Brad Lambeth, and possibly others.
13  * Copyright (c) 2009 Christoph Junghans, Brad Lambeth.
14  * All rights reserved.
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  * Gallium Rubidium Oxygen Manganese Argon Carbon Silicon
35  */
36
37 #ifndef _nb_generic_adress_h_
38 #define _nb_generic_adress_h_
39
40 #include "nb_kernel.h"
41 #include "types/simple.h"
42 #include "typedefs.h"
43
44 void
45 gmx_nb_generic_adress_kernel(t_nblist *                nlist,
46                       rvec *                    xx,
47                       rvec *                    ff,
48                       t_forcerec *              fr,
49                       t_mdatoms *               mdatoms,
50                       nb_kernel_data_t *        kernel_data,
51                       t_nrnb *                  nrnb);
52
53 #endif
54