Apply clang-format to source tree
[alexxy/gromacs.git] / src / gromacs / topology / index.h
index 148fcc8a6dfb472a67e8831307c7fcd090c8a13c..c6f1fb726385c12d3a360eacc9dbafcf73ef2042 100644 (file)
 struct t_atoms;
 struct t_blocka;
 
-void check_index(const char *gname, int n, int index[],
-                 const char *traj, int natoms);
+void check_index(const char* gname, int n, int index[], const char* traj, int natoms);
 /* Checks if any index is smaller than zero or larger than natoms,
  * if so a fatal_error is given with the gname (if gname=NULL, "Index" is used)
  * and traj (if traj=NULL, "the trajectory" is used).
  */
 
-struct t_blocka *init_index(const char *gfile, char ***grpname);
+struct t_blocka* init_index(const char* gfile, char*** grpname);
 /* Lower level routine than the next */
 
-void rd_index(const char *statfile, int ngrps, int isize[],
-              int *index[], char *grpnames[]);
+void rd_index(const char* statfile, int ngrps, int isize[], int* index[], char* grpnames[]);
 /* Assume the group file is generated, so the
  * format need not be user-friendly. The format is:
  * nr of groups, total nr of atoms
@@ -72,24 +70,24 @@ void rd_index(const char *statfile, int ngrps, int isize[],
  * the dimension of the isize and grpnames arrays are ngrps.
  */
 
-void get_index(const t_atoms *atoms, const char *fnm, int ngrps,
-               int isize[], int *index[], char *grpnames[]);
+void get_index(const t_atoms* atoms, const char* fnm, int ngrps, int isize[], int* index[], char* grpnames[]);
 /* Does the same as rd_index, but if the fnm pointer is NULL it
  * will not read from fnm, but it will make default index groups
  * for the atoms in *atoms.
  */
 
-typedef struct {
-    int               maxframe;
-    char            **grpname;
-    struct t_blocka  *clust;
-    int              *inv_clust;
+typedef struct
+{
+    int              maxframe;
+    char**           grpname;
+    struct t_blocka* clust;
+    int*             inv_clust;
 } t_cluster_ndx;
 
-t_cluster_ndx *cluster_index(FILE *fplog, const char *ndx);
+t_cluster_ndx* cluster_index(FILE* fplog, const char* ndx);
 
 
-void write_index(const char *outf, struct t_blocka *b, char **gnames, gmx_bool bDuplicate, int natoms);
+void write_index(const char* outf, struct t_blocka* b, char** gnames, gmx_bool bDuplicate, int natoms);
 /* Writes index blocks to outf (writes an indexfile) */
 
 /*! \brief
@@ -100,11 +98,10 @@ void write_index(const char *outf, struct t_blocka *b, char **gnames, gmx_bool b
  * \param[in] a Group to add to Block.
  * \param[in] name Group name.
  */
-void add_grp(struct t_blocka *b, char ***gnames, gmx::ArrayRef<const int> a, const std::string &name);
+void add_grp(struct t_blocka* b, char*** gnames, gmx::ArrayRef<const int> a, const std::string& name);
 /* Ads group a with name name to block b and namelist gnames */
 
-void analyse(const t_atoms *atoms, struct t_blocka *gb, char ***gn,
-             gmx_bool bASK, gmx_bool bVerb);
+void analyse(const t_atoms* atoms, struct t_blocka* gb, char*** gn, gmx_bool bASK, gmx_bool bVerb);
 /* Makes index groups gb with names gn for atoms in atoms.
  * bASK=FALSE gives default groups.
  */
@@ -116,7 +113,7 @@ void analyse(const t_atoms *atoms, struct t_blocka *gb, char ***gn,
  * \param[in] grpname The names of the groups
  * \return the group number or -1 if not found.
  */
-int find_group(const char *s, int ngrps, char **grpname);
+int find_group(const char* s, int ngrps, char** grpname);
 
 
 #endif