apply clang-format to all headers with some exceptions

This commit is contained in:
Axel Kohlmeyer
2021-05-14 19:16:07 -04:00
parent 60e41a90c2
commit 7fcd449864
1651 changed files with 15108 additions and 15948 deletions

View File

@ -30,25 +30,25 @@ class CreateAtoms : public Command {
void command(int, char **);
private:
int me,nprocs;
int ntype,style,mode,nregion,nbasis,nrandom,seed;
int me, nprocs;
int ntype, style, mode, nregion, nbasis, nrandom, seed;
int remapflag;
int subsetflag;
bigint nsubset;
double subsetfrac;
int *basistype;
double xone[3],quatone[4];
double xone[3], quatone[4];
int varflag,vvar,xvar,yvar,zvar;
char *vstr,*xstr,*ystr,*zstr;
char *xstr_copy,*ystr_copy,*zstr_copy;
int varflag, vvar, xvar, yvar, zvar;
char *vstr, *xstr, *ystr, *zstr;
char *xstr_copy, *ystr_copy, *zstr_copy;
int ilo,ihi,jlo,jhi,klo,khi;
int ilo, ihi, jlo, jhi, klo, khi;
int nlatt; // number of owned lattice sites
int nlatt_overflow; // 1 if local nlatt exceeds a 32-bit int
int nlatt; // number of owned lattice sites
int nlatt_overflow; // 1 if local nlatt exceeds a 32-bit int
int *flag; // flag subset of particles to insert on lattice
int *flag; // flag subset of particles to insert on lattice
int *next;
class Molecule *onemol;
@ -56,17 +56,17 @@ class CreateAtoms : public Command {
class RanMars *ranlatt;
int triclinic;
double sublo[3],subhi[3]; // epsilon-extended proc sub-box for adding atoms
double sublo[3], subhi[3]; // epsilon-extended proc sub-box for adding atoms
void add_single();
void add_random();
void add_lattice();
void loop_lattice(int);
void add_molecule(double *, double * = nullptr);
int vartest(double *); // evaluate a variable with new atom position
int vartest(double *); // evaluate a variable with new atom position
};
}
} // namespace LAMMPS_NS
#endif
#endif