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

@ -32,31 +32,31 @@ class FixAveChunk : public Fix {
void init();
void setup(int);
void end_of_step();
double compute_array(int,int);
double compute_array(int, int);
double memory_usage();
private:
int nvalues;
int nrepeat,nfreq,irepeat;
int normflag,scaleflag,overwrite,biasflag,colextra;
bigint nvalid,nvalid_last;
double adof,cdof;
char *format,*format_user;
char *tstring,*sstring,*id_bias;
int *which,*argindex,*value2index;
int nrepeat, nfreq, irepeat;
int normflag, scaleflag, overwrite, biasflag, colextra;
bigint nvalid, nvalid_last;
double adof, cdof;
char *format, *format_user;
char *tstring, *sstring, *id_bias;
int *which, *argindex, *value2index;
char **ids;
class Compute *tbias; // ptr to additional bias compute
class Compute *tbias; // ptr to additional bias compute
FILE *fp;
int densityflag; // 1 if density/number or density/mass requested
int volflag; // SCALAR/VECTOR for density normalization by volume
int densityflag; // 1 if density/number or density/mass requested
int volflag; // SCALAR/VECTOR for density normalization by volume
double chunk_volume_scalar;
double *chunk_volume_vec;
int ave,nwindow;
int normcount,iwindow,window_limit;
int ave, nwindow;
int normcount, iwindow, window_limit;
int nchunk,maxchunk;
int nchunk, maxchunk;
char *idchunk;
class ComputeChunkAtom *cchunk;
int lockforever;
@ -69,16 +69,16 @@ class FixAveChunk : public Fix {
// one,many,sum vecs/arrays are used with a single Nfreq epoch
// total,list vecs/arrays are used across epochs
double *count_one,*count_many,*count_sum;
double **values_one,**values_many,**values_sum;
double *count_total,**count_list;
double **values_total,***values_list;
double *count_one, *count_many, *count_sum;
double **values_one, **values_many, **values_sum;
double *count_total, **count_list;
double **values_total, ***values_list;
void allocate();
bigint nextvalid();
};
}
} // namespace LAMMPS_NS
#endif
#endif