apply clang-format

This commit is contained in:
Axel Kohlmeyer
2024-10-06 00:25:53 -04:00
parent 7da8748e90
commit 25dfb03386
28 changed files with 73 additions and 74 deletions

View File

@ -79,17 +79,17 @@ class DumpImage : public DumpCustom {
double *diamtype, *diamelement, *bdiamtype; // per-type diameters
double **colortype, **colorelement, **bcolortype; // per-type colors
int gridflag; // 0/1 for draw grid cells
int gridflag; // 0/1 for draw grid cells
class Grid2d *grid2d;
class Grid3d *grid3d;
char *id_grid_compute,*id_grid_fix;
char *id_grid_compute, *id_grid_fix;
class Compute *grid_compute;
class Fix *grid_fix;
int grid_igrid,grid_idata,grid_index;
int nxgrid,nygrid,nzgrid;
int nxlo_in,nxhi_in,nylo_in,nyhi_in,nzlo_in,nzhi_in;
int grid_igrid, grid_idata, grid_index;
int nxgrid, nygrid, nzgrid;
int nxlo_in, nxhi_in, nylo_in, nyhi_in, nzlo_in, nzhi_in;
double *gbuf;
int ngrid,maxgrid;
int ngrid, maxgrid;
double gcorners[8][3];
class AtomVecLine *avec_line; // ptrs to atom style (sub)classes
@ -98,10 +98,10 @@ class DumpImage : public DumpCustom {
class Fix *fixptr; // ptr to Fix that provides image data
class Image *image; // class that renders each image
class Image *image; // class that renders each image
int *chooseghost; // extended choose array for comm
double **bufcopy; // buffer for communicating bond/atom info
int *chooseghost; // extended choose array for comm
double **bufcopy; // buffer for communicating bond/atom info
int maxbufcopy;
void init_style() override;