Refactor t_params to InteractionTypeParameters
[alexxy/gromacs.git] / src / gromacs / gmxpreprocess / gen_ad.h
index d27f6725f33f3eb762b55f47e686c41ff48794f7..f4b2456141c9459b4939bdbf097f079abc576578 100644 (file)
@@ -44,14 +44,18 @@ struct t_atoms;
 struct t_excls;
 struct MoleculePatchDatabase;
 struct t_nextnb;
-struct t_params;
+struct InteractionTypeParameters;
 struct PreprocessResidue;
 
 void generate_excls(t_nextnb *nnb, int nrexcl, t_excls excls[]);
 void clean_excls(t_nextnb *nnb, int nrexcl, t_excls excls[]);
 
-void gen_pad(t_nextnb *nnb, t_atoms *atoms, gmx::ArrayRef<const PreprocessResidue> rtpFFDB,
-             t_params plist[], t_excls excls[], gmx::ArrayRef<MoleculePatchDatabase> globalPatches,
-             bool bAllowMissing);
+void gen_pad(t_nextnb                                       *nnb,
+             t_atoms                                        *atoms,
+             gmx::ArrayRef<const PreprocessResidue>          rtpFFDB,
+             gmx::ArrayRef<InteractionTypeParameters>        plist,
+             t_excls                                         excls[],
+             gmx::ArrayRef<MoleculePatchDatabase>            globalPatches,
+             bool                                            bAllowMissing);
 
 #endif