diff --git a/src/RIGID/fix_rigid_small.cpp b/src/RIGID/fix_rigid_small.cpp index 2d8e736a1eef1ebf811c555259695ace712b8038..64c1e5b33a2bc50d02d88c5bda556046a9cdd088 100644 --- a/src/RIGID/fix_rigid_small.cpp +++ b/src/RIGID/fix_rigid_small.cpp @@ -41,10 +41,6 @@ using namespace LAMMPS_NS; using namespace FixConst; using namespace MathConst; -// allocate space for static class variable - -FixRigidSmall *FixRigidSmall::frsptr; - #define MAXLINE 1024 #define CHUNK 1024 #define ATTRIBUTE_PERBODY 20 @@ -1499,8 +1495,7 @@ void FixRigidSmall::create_bodies() // func = update bbox with atom coords from every proc // when done, have full bbox for every rigid body my atoms are part of - frsptr = this; - comm->ring(m,sizeof(double),buf,1,ring_bbox,NULL); + comm->ring(m,sizeof(double),buf,1,ring_bbox,NULL,(void *)this); // check if any bbox is size 0.0, meaning rigid body is a single particle @@ -1549,8 +1544,7 @@ void FixRigidSmall::create_bodies() // func = update idclose,rsqclose with atom IDs from every proc // when done, have idclose for every rigid body my atoms are part of - frsptr = this; - comm->ring(m,sizeof(double),buf,2,ring_nearest,NULL); + comm->ring(m,sizeof(double),buf,2,ring_nearest,NULL,(void *)this); // set bodytag of all owned atoms, based on idclose // find max value of rsqclose across all procs @@ -1581,8 +1575,7 @@ void FixRigidSmall::create_bodies() // when done, have rsqfar for all atoms in bodies I own rsqfar = 0.0; - frsptr = this; - comm->ring(m,sizeof(double),buf,3,ring_farthest,NULL); + comm->ring(m,sizeof(double),buf,3,ring_farthest,NULL,(void *)this); // find maxextent of rsqfar across all procs // if defined, include molecule->maxextent @@ -1609,8 +1602,9 @@ void FixRigidSmall::create_bodies() update bounding box for rigid bodies my atoms are part of ------------------------------------------------------------------------- */ -void FixRigidSmall::ring_bbox(int n, char *cbuf) +void FixRigidSmall::ring_bbox(int n, char *cbuf, void *ptr) { + FixRigidSmall *frsptr = (FixRigidSmall *) ptr; std::map<tagint,int> *hash = frsptr->hash; double **bbox = frsptr->bbox; @@ -1641,8 +1635,9 @@ void FixRigidSmall::ring_bbox(int n, char *cbuf) update nearest atom to body center for rigid bodies my atoms are part of ------------------------------------------------------------------------- */ -void FixRigidSmall::ring_nearest(int n, char *cbuf) +void FixRigidSmall::ring_nearest(int n, char *cbuf, void *ptr) { + FixRigidSmall *frsptr = (FixRigidSmall *) ptr; std::map<tagint,int> *hash = frsptr->hash; double **ctr = frsptr->ctr; tagint *idclose = frsptr->idclose; @@ -1681,8 +1676,9 @@ void FixRigidSmall::ring_nearest(int n, char *cbuf) update rsqfar = distance from owning atom to other atom ------------------------------------------------------------------------- */ -void FixRigidSmall::ring_farthest(int n, char *cbuf) +void FixRigidSmall::ring_farthest(int n, char *cbuf, void *ptr) { + FixRigidSmall *frsptr = (FixRigidSmall *) ptr; double **x = frsptr->atom->x; imageint *image = frsptr->atom->image; int nlocal = frsptr->atom->nlocal; diff --git a/src/RIGID/fix_rigid_small.h b/src/RIGID/fix_rigid_small.h index 9c89bab885cf2365a24351b56e3eafc41510d853..ef5e8a716699eb4b1e3241139f42354f987f05ed 100644 --- a/src/RIGID/fix_rigid_small.h +++ b/src/RIGID/fix_rigid_small.h @@ -31,10 +31,6 @@ class FixRigidSmall : public Fix { friend class ComputeRigidLocal; public: - // static variable for ring communication callback to access class data - - static FixRigidSmall *frsptr; - FixRigidSmall(class LAMMPS *, int, char **); virtual ~FixRigidSmall(); virtual int setmask(); @@ -199,9 +195,9 @@ class FixRigidSmall : public Fix { // callback functions for ring communication - static void ring_bbox(int, char *); - static void ring_nearest(int, char *); - static void ring_farthest(int, char *); + static void ring_bbox(int, char *, void *); + static void ring_nearest(int, char *, void *); + static void ring_farthest(int, char *, void *); // debug diff --git a/src/RIGID/fix_shake.cpp b/src/RIGID/fix_shake.cpp index 5c993ee85933ff85b47710252be968e6e7905792..36f56aa2957cb7c8dc0de6b12a40ca9378f4505a 100644 --- a/src/RIGID/fix_shake.cpp +++ b/src/RIGID/fix_shake.cpp @@ -39,10 +39,6 @@ using namespace LAMMPS_NS; using namespace FixConst; using namespace MathConst; -// allocate space for static class variable - -FixShake *FixShake::fsptr; - #define BIG 1.0e20 #define MASSDELTA 0.1 @@ -844,8 +840,7 @@ void FixShake::find_clusters() // cycle buffer around ring of procs back to self - fsptr = this; - comm->ring(size,sizeof(tagint),buf,1,ring_bonds,buf); + comm->ring(size,sizeof(tagint),buf,1,ring_bonds,buf,(void *)this); // store partner info returned to me @@ -970,8 +965,7 @@ void FixShake::find_clusters() // cycle buffer around ring of procs back to self - fsptr = this; - comm->ring(size,sizeof(tagint),buf,2,ring_nshake,buf); + comm->ring(size,sizeof(tagint),buf,2,ring_nshake,buf,(void *)this); // store partner info returned to me @@ -1123,8 +1117,7 @@ void FixShake::find_clusters() // cycle buffer around ring of procs back to self - fsptr = this; - comm->ring(size,sizeof(tagint),buf,3,ring_shake,NULL); + comm->ring(size,sizeof(tagint),buf,3,ring_shake,NULL,(void *)this); memory->destroy(buf); @@ -1211,8 +1204,9 @@ void FixShake::find_clusters() search for bond with 1st atom and fill in bondtype ------------------------------------------------------------------------- */ -void FixShake::ring_bonds(int ndatum, char *cbuf) +void FixShake::ring_bonds(int ndatum, char *cbuf, void *ptr) { + FixShake *fsptr = (FixShake *)ptr; Atom *atom = fsptr->atom; double *rmass = atom->rmass; double *mass = atom->mass; @@ -1248,8 +1242,9 @@ void FixShake::ring_bonds(int ndatum, char *cbuf) if I own partner, fill in nshake value ------------------------------------------------------------------------- */ -void FixShake::ring_nshake(int ndatum, char *cbuf) +void FixShake::ring_nshake(int ndatum, char *cbuf, void *ptr) { + FixShake *fsptr = (FixShake *)ptr; Atom *atom = fsptr->atom; int nlocal = atom->nlocal; @@ -1269,8 +1264,9 @@ void FixShake::ring_nshake(int ndatum, char *cbuf) if I own partner, fill in nshake value ------------------------------------------------------------------------- */ -void FixShake::ring_shake(int ndatum, char *cbuf) +void FixShake::ring_shake(int ndatum, char *cbuf, void *ptr) { + FixShake *fsptr = (FixShake *)ptr; Atom *atom = fsptr->atom; int nlocal = atom->nlocal; diff --git a/src/RIGID/fix_shake.h b/src/RIGID/fix_shake.h index ff12b9e120cb54f17111e7df618fc971dba39507..12809a254a064524de4043af5d3fdccaa3646ff1 100644 --- a/src/RIGID/fix_shake.h +++ b/src/RIGID/fix_shake.h @@ -134,10 +134,9 @@ class FixShake : public Fix { // static variable for ring communication callback to access class data // callback functions for ring communication - static FixShake *fsptr; - static void ring_bonds(int, char *); - static void ring_nshake(int, char *); - static void ring_shake(int, char *); + static void ring_bonds(int, char *, void *); + static void ring_nshake(int, char *, void *); + static void ring_shake(int, char *, void *); }; } diff --git a/src/USER-DRUDE/fix_drude.cpp b/src/USER-DRUDE/fix_drude.cpp index 77253d1bb19e634132d358ef20844451dbc5426c..894757baa087e55c8eca84444ac17ea61478ae3b 100644 --- a/src/USER-DRUDE/fix_drude.cpp +++ b/src/USER-DRUDE/fix_drude.cpp @@ -28,8 +28,6 @@ using namespace LAMMPS_NS; using namespace FixConst; -FixDrude *FixDrude::sptr = NULL; - /* ---------------------------------------------------------------------- */ FixDrude::FixDrude(LAMMPS *lmp, int narg, char **arg) : @@ -111,7 +109,6 @@ void FixDrude::build_drudeid(){ std::vector<tagint> core_drude_vec; partner_set = new std::set<tagint>[nlocal]; // Temporary sets of bond partner tags - sptr = this; if (atom->molecular == 1) { // Build list of my atoms' bond partners @@ -149,7 +146,7 @@ void FixDrude::build_drudeid(){ // Loop on procs to fill my atoms' sets of bond partners comm->ring(core_drude_vec.size(), sizeof(tagint), (char *) core_drude_vec.data(), - 4, ring_build_partner, NULL, 1); + 4, ring_build_partner, NULL, (void *)this, 1); // Build the list of my Drudes' tags // The only bond partners of a Drude particle is its core, @@ -165,7 +162,7 @@ void FixDrude::build_drudeid(){ // so that each core finds its Drude. comm->ring(drude_vec.size(), sizeof(tagint), (char *) drude_vec.data(), - 3, ring_search_drudeid, NULL, 1); + 3, ring_search_drudeid, NULL, (void *)this, 1); delete [] partner_set; } @@ -174,14 +171,15 @@ void FixDrude::build_drudeid(){ * Look in my cores' bond partner tags if there is a Drude tag. * If so fill this core's dureid. ------------------------------------------------------------------------- */ -void FixDrude::ring_search_drudeid(int size, char *cbuf){ +void FixDrude::ring_search_drudeid(int size, char *cbuf, void *ptr){ // Search for the drude partner of my cores - Atom *atom = sptr->atom; + FixDrude *fdptr = (FixDrude *) ptr; + Atom *atom = fdptr->atom; int nlocal = atom->nlocal; int *type = atom->type; - std::set<tagint> *partner_set = sptr->partner_set; - tagint *drudeid = sptr->drudeid; - int *drudetype = sptr->drudetype; + std::set<tagint> *partner_set = fdptr->partner_set; + tagint *drudeid = fdptr->drudeid; + int *drudetype = fdptr->drudetype; tagint *first = (tagint *) cbuf; tagint *last = first + size; @@ -203,11 +201,12 @@ void FixDrude::ring_search_drudeid(int size, char *cbuf){ * buffer contains bond partners. Look for my atoms and add their partner's * tag in its set of bond partners. ------------------------------------------------------------------------- */ -void FixDrude::ring_build_partner(int size, char *cbuf){ +void FixDrude::ring_build_partner(int size, char *cbuf, void *ptr){ // Add partners from incoming list - Atom *atom = sptr->atom; + FixDrude *fdptr = (FixDrude *) ptr; + Atom *atom = fdptr->atom; int nlocal = atom->nlocal; - std::set<tagint> *partner_set = sptr->partner_set; + std::set<tagint> *partner_set = fdptr->partner_set; tagint *it = (tagint *) cbuf; tagint *last = it + size; @@ -338,11 +337,11 @@ void FixDrude::rebuild_special(){ // Remove Drude particles from the special lists of each proc comm->ring(drude_vec.size(), sizeof(tagint), (char *) drude_vec.data(), - 9, ring_remove_drude, NULL, 1); + 9, ring_remove_drude, NULL, (void *)this, 1); // Add back Drude particles in the lists just after their core comm->ring(core_drude_vec.size(), sizeof(tagint), (char *) core_drude_vec.data(), - 10, ring_add_drude, NULL, 1); + 10, ring_add_drude, NULL, (void *)this, 1); // Check size of special list nspecmax_loc = 0; @@ -373,16 +372,17 @@ void FixDrude::rebuild_special(){ // Copy core's list into their drude list comm->ring(core_special_vec.size(), sizeof(tagint), (char *) core_special_vec.data(), - 11, ring_copy_drude, NULL, 1); + 11, ring_copy_drude, NULL, (void *)this, 1); } /* ---------------------------------------------------------------------- * When receive buffer, build a set of drude tags, look into my atoms' * special list if some tags are drude particles. If so, remove it. ------------------------------------------------------------------------- */ -void FixDrude::ring_remove_drude(int size, char *cbuf){ +void FixDrude::ring_remove_drude(int size, char *cbuf, void *ptr){ // Remove all drude particles from special list - Atom *atom = sptr->atom; + FixDrude *fdptr = (FixDrude *) ptr; + Atom *atom = fdptr->atom; int nlocal = atom->nlocal; int **nspecial = atom->nspecial; tagint **special = atom->special; @@ -390,7 +390,7 @@ void FixDrude::ring_remove_drude(int size, char *cbuf){ tagint *first = (tagint *) cbuf; tagint *last = first + size; std::set<tagint> drude_set(first, last); - int *drudetype = sptr->drudetype; + int *drudetype = fdptr->drudetype; for (int i=0; i<nlocal; i++) { if (drudetype[type[i]] == DRUDE_TYPE) continue; @@ -415,16 +415,17 @@ void FixDrude::ring_remove_drude(int size, char *cbuf){ * Loop on my atoms' special list to find core tags. Insert their Drude * particle if they have one. ------------------------------------------------------------------------- */ -void FixDrude::ring_add_drude(int size, char *cbuf){ +void FixDrude::ring_add_drude(int size, char *cbuf, void *ptr){ // Assume special array size is big enough // Add all particle just after their core in the special list - Atom *atom = sptr->atom; + FixDrude *fdptr = (FixDrude *) ptr; + Atom *atom = fdptr->atom; int nlocal = atom->nlocal; int **nspecial = atom->nspecial; tagint **special = atom->special; int *type = atom->type; - tagint *drudeid = sptr->drudeid; - int *drudetype = sptr->drudetype; + tagint *drudeid = fdptr->drudeid; + int *drudetype = fdptr->drudetype; tagint *first = (tagint *) cbuf; tagint *last = first + size; @@ -471,15 +472,16 @@ void FixDrude::ring_add_drude(int size, char *cbuf){ * in the buffer. Loop on my Drude particles and copy their special * info from that of their core if the latter is found in the map. ------------------------------------------------------------------------- */ -void FixDrude::ring_copy_drude(int size, char *cbuf){ +void FixDrude::ring_copy_drude(int size, char *cbuf, void *ptr){ // Copy special list of drude from its core (except itself) - Atom *atom = sptr->atom; + FixDrude *fdptr = (FixDrude *) ptr; + Atom *atom = fdptr->atom; int nlocal = atom->nlocal; int **nspecial = atom->nspecial; tagint **special = atom->special; int *type = atom->type; - tagint *drudeid = sptr->drudeid; - int *drudetype = sptr->drudetype; + tagint *drudeid = fdptr->drudeid; + int *drudetype = fdptr->drudetype; tagint *first = (tagint *) cbuf; tagint *last = first + size; diff --git a/src/USER-DRUDE/fix_drude.h b/src/USER-DRUDE/fix_drude.h index ca2fc9fdb9a25f0c6e344f62282371e2622bb180..6775dcee6f5e25d150fa976fa8e8e2280ad8299f 100644 --- a/src/USER-DRUDE/fix_drude.h +++ b/src/USER-DRUDE/fix_drude.h @@ -50,16 +50,15 @@ class FixDrude : public Fix { private: int rebuildflag; - static FixDrude *sptr; std::set<tagint> * partner_set; void build_drudeid(); - static void ring_search_drudeid(int size, char *cbuf); - static void ring_build_partner(int size, char *cbuf); + static void ring_search_drudeid(int size, char *cbuf, void *ptr); + static void ring_build_partner(int size, char *cbuf, void *ptr); void rebuild_special(); - static void ring_remove_drude(int size, char *cbuf); - static void ring_add_drude(int size, char *cbuf); - static void ring_copy_drude(int size, char *cbuf); + static void ring_remove_drude(int size, char *cbuf, void *ptr); + static void ring_add_drude(int size, char *cbuf, void *ptr); + static void ring_copy_drude(int size, char *cbuf, void *ptr); }; } diff --git a/src/USER-MISC/fix_filter_corotate.cpp b/src/USER-MISC/fix_filter_corotate.cpp index b59a37e8f9fcf04211e7cc1830b0e864c8f746ae..7ada3aeb99e0d582bda2048e4dddb576ba53fc4e 100644 --- a/src/USER-MISC/fix_filter_corotate.cpp +++ b/src/USER-MISC/fix_filter_corotate.cpp @@ -46,10 +46,6 @@ using namespace LAMMPS_NS; using namespace MathConst; using namespace FixConst; -// allocate space for static class variable - -FixFilterCorotate *FixFilterCorotate::fsptr = NULL; - #define BIG 1.0e20 #define MASSDELTA 0.1 @@ -950,8 +946,7 @@ void FixFilterCorotate::find_clusters() // cycle buffer around ring of procs back to self - fsptr = this; - comm->ring(size,sizeof(tagint),buf,1,ring_bonds,buf); + comm->ring(size,sizeof(tagint),buf,1,ring_bonds,buf,(void *)this); // store partner info returned to me @@ -1079,8 +1074,7 @@ void FixFilterCorotate::find_clusters() // cycle buffer around ring of procs back to self - fsptr = this; - comm->ring(size,sizeof(tagint),buf,2,ring_nshake,buf); + comm->ring(size,sizeof(tagint),buf,2,ring_nshake,buf,(void *)this); // store partner info returned to me @@ -1240,8 +1234,7 @@ void FixFilterCorotate::find_clusters() // cycle buffer around ring of procs back to self - fsptr = this; - comm->ring(size,sizeof(tagint),buf,3,ring_shake,NULL); + comm->ring(size,sizeof(tagint),buf,3,ring_shake,NULL,(void *)this); memory->destroy(buf); @@ -1310,15 +1303,16 @@ void FixFilterCorotate::find_clusters() * search for bond with 1st atom and fill in bondtype * ------------------------------------------------------------------------- */ -void FixFilterCorotate::ring_bonds(int ndatum, char *cbuf) +void FixFilterCorotate::ring_bonds(int ndatum, char *cbuf, void *ptr) { - Atom *atom = fsptr->atom; + FixFilterCorotate *ffptr = (FixFilterCorotate *) ptr; + Atom *atom = ffptr->atom; double *rmass = atom->rmass; double *mass = atom->mass; int *mask = atom->mask; int *type = atom->type; int nlocal = atom->nlocal; - int nmass = fsptr->nmass; + int nmass = ffptr->nmass; tagint *buf = (tagint *) cbuf; int m,n; @@ -1332,10 +1326,10 @@ void FixFilterCorotate::ring_bonds(int ndatum, char *cbuf) if (nmass) { if (rmass) massone = rmass[m]; else massone = mass[type[m]]; - buf[i+4] = fsptr->masscheck(massone); + buf[i+4] = ffptr->masscheck(massone); } if (buf[i+5] == 0) { - n = fsptr->bondtype_findset(m,buf[i],buf[i+1],0); + n = ffptr->bondtype_findset(m,buf[i],buf[i+1],0); if (n) buf[i+5] = n; } } @@ -1347,12 +1341,13 @@ void FixFilterCorotate::ring_bonds(int ndatum, char *cbuf) * if I own partner, fill in nshake value * ------------------------------------------------------------------------- */ -void FixFilterCorotate::ring_nshake(int ndatum, char *cbuf) +void FixFilterCorotate::ring_nshake(int ndatum, char *cbuf, void *ptr) { - Atom *atom = fsptr->atom; + FixFilterCorotate *ffptr = (FixFilterCorotate *) ptr; + Atom *atom = ffptr->atom; int nlocal = atom->nlocal; - int *nshake = fsptr->nshake; + int *nshake = ffptr->nshake; tagint *buf = (tagint *) cbuf; int m; @@ -1368,14 +1363,15 @@ void FixFilterCorotate::ring_nshake(int ndatum, char *cbuf) * if I own partner, fill in nshake value * ------------------------------------------------------------------------- */ -void FixFilterCorotate::ring_shake(int ndatum, char *cbuf) +void FixFilterCorotate::ring_shake(int ndatum, char *cbuf, void *ptr) { - Atom *atom = fsptr->atom; + FixFilterCorotate *ffptr = (FixFilterCorotate *) ptr; + Atom *atom = ffptr->atom; int nlocal = atom->nlocal; - int *shake_flag = fsptr->shake_flag; - tagint **shake_atom = fsptr->shake_atom; - int **shake_type = fsptr->shake_type; + int *shake_flag = ffptr->shake_flag; + tagint **shake_atom = ffptr->shake_atom; + int **shake_type = ffptr->shake_type; tagint *buf = (tagint *) cbuf; int m; diff --git a/src/USER-MISC/fix_filter_corotate.h b/src/USER-MISC/fix_filter_corotate.h index 47accfedd3d2cf08e94d7cabe33fafa0cc20c54c..3f8e8bba43a75cd110b8c69489261399f9517850 100644 --- a/src/USER-MISC/fix_filter_corotate.h +++ b/src/USER-MISC/fix_filter_corotate.h @@ -120,13 +120,11 @@ namespace LAMMPS_NS int bondtype_findset(int, tagint, tagint, int); int angletype_findset(int, tagint, tagint, int); - // static variable for ring communication callback to access class data // callback functions for ring communication - static FixFilterCorotate *fsptr; - static void ring_bonds(int, char *); - static void ring_nshake(int, char *); - static void ring_shake(int, char *); + static void ring_bonds(int, char *, void *); + static void ring_nshake(int, char *, void *); + static void ring_shake(int, char *, void *); int sgn(double val) { return (0 < val) - (val < 0); diff --git a/src/comm.cpp b/src/comm.cpp index 871675ca8dc52ea1259a58a09f0afb869f168a71..88edf98ca60dffa3a646f2107ab144164aa2e228 100644 --- a/src/comm.cpp +++ b/src/comm.cpp @@ -678,10 +678,12 @@ int Comm::binary(double value, int n, double *vec) using original inbuf, which may have been updated for non-NULL outbuf, final updated inbuf is copied to it ok to specify outbuf = inbuf + the ptr argument is a pointer to the instance of calling class ------------------------------------------------------------------------- */ void Comm::ring(int n, int nper, void *inbuf, int messtag, - void (*callback)(int, char *), void *outbuf, int self) + void (*callback)(int, char *, void *), + void *outbuf, void *ptr, int self) { MPI_Request request; MPI_Status status; @@ -712,7 +714,7 @@ void Comm::ring(int n, int nper, void *inbuf, int messtag, MPI_Get_count(&status,MPI_CHAR,&nbytes); memcpy(buf,bufcopy,nbytes); } - if (self || loop < nprocs-1) callback(nbytes/nper,buf); + if (self || loop < nprocs-1) callback(nbytes/nper,buf,ptr); } if (outbuf) memcpy(outbuf,buf,nbytes); diff --git a/src/comm.h b/src/comm.h index 15b42111d897693de9fd916863e0c24be01d34b4..b0e71f54355d59a666b2de0d1f9719fe25dec30b 100644 --- a/src/comm.h +++ b/src/comm.h @@ -105,8 +105,8 @@ class Comm : protected Pointers { // non-virtual functions common to all Comm styles - void ring(int, int, void *, int, void (*)(int, char *), - void *, int self = 1); + void ring(int, int, void *, int, void (*)(int, char *, void *), + void *, void *, int self = 1); int read_lines_from_file(FILE *, int, int, char *); int read_lines_from_file_universe(FILE *, int, int, char *); diff --git a/src/compute_chunk_atom.cpp b/src/compute_chunk_atom.cpp index ac35629d08109324c9a117f4c7b997a5cbae7f94..f1052bb85acb39931a205c9edf1a9228a920310b 100644 --- a/src/compute_chunk_atom.cpp +++ b/src/compute_chunk_atom.cpp @@ -49,10 +49,6 @@ enum{LIMITMAX,LIMITEXACT}; #define IDMAX 1024*1024 #define INVOKED_PERATOM 8 -// allocate space for static class variable - -ComputeChunkAtom *ComputeChunkAtom::cptr; - /* ---------------------------------------------------------------------- */ ComputeChunkAtom::ComputeChunkAtom(LAMMPS *lmp, int narg, char **arg) : @@ -1088,8 +1084,7 @@ void ComputeChunkAtom::compress_chunk_ids() memory->destroy(listall); } else { - cptr = this; - comm->ring(n,sizeof(int),list,1,idring,NULL,0); + comm->ring(n,sizeof(int),list,1,idring,NULL,(void *)this,0); } memory->destroy(list); @@ -1121,8 +1116,9 @@ void ComputeChunkAtom::compress_chunk_ids() hash ends up storing all unique IDs across all procs ------------------------------------------------------------------------- */ -void ComputeChunkAtom::idring(int n, char *cbuf) +void ComputeChunkAtom::idring(int n, char *cbuf, void *ptr) { + ComputeChunkAtom *cptr = (ComputeChunkAtom *)ptr; tagint *list = (tagint *) cbuf; std::map<tagint,int> *hash = cptr->hash; for (int i = 0; i < n; i++) (*hash)[list[i]] = 0; diff --git a/src/compute_chunk_atom.h b/src/compute_chunk_atom.h index 9c64e9bc7a37587c5f3647f6bdb388a1ebd18f82..59c93b38f3798bcd59836e8c351410fcec9add07 100644 --- a/src/compute_chunk_atom.h +++ b/src/compute_chunk_atom.h @@ -107,11 +107,9 @@ class ComputeChunkAtom : public Compute { int *exclude; // 1 if atom is not assigned to any chunk std::map<tagint,int> *hash; // store original chunks IDs before compression - // static variable for ring communication callback to access class data - // callback functions for ring communication + // callback function for ring communication - static ComputeChunkAtom *cptr; - static void idring(int, char *); + static void idring(int, char *, void *); void assign_chunk_ids(); void compress_chunk_ids(); diff --git a/src/delete_atoms.cpp b/src/delete_atoms.cpp index 116c2a2f1e057431644c82b2747d7d95eac6095c..2414ef7818d202884ac7a1742bc88742454cd7c8 100644 --- a/src/delete_atoms.cpp +++ b/src/delete_atoms.cpp @@ -33,10 +33,6 @@ using namespace LAMMPS_NS; -// allocate space for static class variable - -DeleteAtoms *DeleteAtoms::cptr; - /* ---------------------------------------------------------------------- */ DeleteAtoms::DeleteAtoms(LAMMPS *lmp) : Pointers(lmp) {} @@ -464,8 +460,7 @@ void DeleteAtoms::delete_bond() for (int i = 0; i < nlocal; i++) if (dlist[i]) list[n++] = tag[i]; - cptr = this; - comm->ring(n,sizeof(tagint),list,1,bondring,NULL); + comm->ring(n,sizeof(tagint),list,1,bondring,NULL,(void *)this); delete hash; memory->destroy(list); @@ -503,8 +498,7 @@ void DeleteAtoms::delete_molecule() std::map<tagint,int>::iterator pos; for (pos = hash->begin(); pos != hash->end(); ++pos) list[n++] = pos->first; - cptr = this; - comm->ring(n,sizeof(tagint),list,1,molring,NULL); + comm->ring(n,sizeof(tagint),list,1,molring,NULL,(void *)this); delete hash; memory->destroy(list); @@ -576,37 +570,38 @@ void DeleteAtoms::recount_topology() callback from comm->ring() in delete_bond() ------------------------------------------------------------------------- */ -void DeleteAtoms::bondring(int nbuf, char *cbuf) +void DeleteAtoms::bondring(int nbuf, char *cbuf, void *ptr) { + DeleteAtoms *daptr = (DeleteAtoms *) ptr; tagint *list = (tagint *) cbuf; - std::map<tagint,int> *hash = cptr->hash; + std::map<tagint,int> *hash = daptr->hash; - int *num_bond = cptr->atom->num_bond; - int *num_angle = cptr->atom->num_angle; - int *num_dihedral = cptr->atom->num_dihedral; - int *num_improper = cptr->atom->num_improper; + int *num_bond = daptr->atom->num_bond; + int *num_angle = daptr->atom->num_angle; + int *num_dihedral = daptr->atom->num_dihedral; + int *num_improper = daptr->atom->num_improper; - int **bond_type = cptr->atom->bond_type; - tagint **bond_atom = cptr->atom->bond_atom; + int **bond_type = daptr->atom->bond_type; + tagint **bond_atom = daptr->atom->bond_atom; - int **angle_type = cptr->atom->angle_type; - tagint **angle_atom1 = cptr->atom->angle_atom1; - tagint **angle_atom2 = cptr->atom->angle_atom2; - tagint **angle_atom3 = cptr->atom->angle_atom3; + int **angle_type = daptr->atom->angle_type; + tagint **angle_atom1 = daptr->atom->angle_atom1; + tagint **angle_atom2 = daptr->atom->angle_atom2; + tagint **angle_atom3 = daptr->atom->angle_atom3; - int **dihedral_type = cptr->atom->dihedral_type; - tagint **dihedral_atom1 = cptr->atom->dihedral_atom1; - tagint **dihedral_atom2 = cptr->atom->dihedral_atom2; - tagint **dihedral_atom3 = cptr->atom->dihedral_atom3; - tagint **dihedral_atom4 = cptr->atom->dihedral_atom4; + int **dihedral_type = daptr->atom->dihedral_type; + tagint **dihedral_atom1 = daptr->atom->dihedral_atom1; + tagint **dihedral_atom2 = daptr->atom->dihedral_atom2; + tagint **dihedral_atom3 = daptr->atom->dihedral_atom3; + tagint **dihedral_atom4 = daptr->atom->dihedral_atom4; - int **improper_type = cptr->atom->improper_type; - tagint **improper_atom1 = cptr->atom->improper_atom1; - tagint **improper_atom2 = cptr->atom->improper_atom2; - tagint **improper_atom3 = cptr->atom->improper_atom3; - tagint **improper_atom4 = cptr->atom->improper_atom4; + int **improper_type = daptr->atom->improper_type; + tagint **improper_atom1 = daptr->atom->improper_atom1; + tagint **improper_atom2 = daptr->atom->improper_atom2; + tagint **improper_atom3 = daptr->atom->improper_atom3; + tagint **improper_atom4 = daptr->atom->improper_atom4; - int nlocal = cptr->atom->nlocal; + int nlocal = daptr->atom->nlocal; // cbuf = list of N deleted atom IDs from other proc, put them in hash @@ -692,13 +687,14 @@ void DeleteAtoms::bondring(int nbuf, char *cbuf) callback from comm->ring() in delete_molecule() ------------------------------------------------------------------------- */ -void DeleteAtoms::molring(int n, char *cbuf) +void DeleteAtoms::molring(int n, char *cbuf, void *ptr) { + DeleteAtoms *daptr = (DeleteAtoms *)ptr; tagint *list = (tagint *) cbuf; - int *dlist = cptr->dlist; - std::map<tagint,int> *hash = cptr->hash; - int nlocal = cptr->atom->nlocal; - tagint *molecule = cptr->atom->molecule; + int *dlist = daptr->dlist; + std::map<tagint,int> *hash = daptr->hash; + int nlocal = daptr->atom->nlocal; + tagint *molecule = daptr->atom->molecule; // cbuf = list of N molecule IDs from other proc, put them in hash diff --git a/src/delete_atoms.h b/src/delete_atoms.h index 62ba47d715d47efab94161362d21c5dcfa542847..a63c44402bc3b0d3a89d58c5e0c94373dfc771a8 100644 --- a/src/delete_atoms.h +++ b/src/delete_atoms.h @@ -49,12 +49,10 @@ class DeleteAtoms : protected Pointers { return j >> SBBITS & 3; } - // static variable for ring communication callback to access class data // callback functions for ring communication - static DeleteAtoms *cptr; - static void bondring(int, char *); - static void molring(int, char *); + static void bondring(int, char *, void *); + static void molring(int, char *, void *); }; } diff --git a/src/group.cpp b/src/group.cpp index 973fcbdcceea6a61f1073fc9889121dbdf472f36..76275f301d34272e6e6d1c8572c37840eb6c73f6 100644 --- a/src/group.cpp +++ b/src/group.cpp @@ -45,10 +45,6 @@ enum{LT,LE,GT,GE,EQ,NEQ,BETWEEN}; #define BIG 1.0e20 -// allocate space for static class variable - -Group *Group::cptr; - /* ---------------------------------------------------------------------- initialize group memory ------------------------------------------------------------------------- */ @@ -654,9 +650,8 @@ void Group::add_molecules(int igroup, int bit) std::map<tagint,int>::iterator pos; for (pos = hash->begin(); pos != hash->end(); ++pos) list[n++] = pos->first; - cptr = this; molbit = bit; - comm->ring(n,sizeof(tagint),list,1,molring,NULL); + comm->ring(n,sizeof(tagint),list,1,molring,NULL,(void *)this); delete hash; memory->destroy(list); @@ -669,14 +664,15 @@ void Group::add_molecules(int igroup, int bit) add atom to group flagged by molbit ------------------------------------------------------------------------- */ -void Group::molring(int n, char *cbuf) +void Group::molring(int n, char *cbuf, void *ptr) { + Group *gptr = (Group *) ptr; tagint *list = (tagint *) cbuf; - std::map<tagint,int> *hash = cptr->hash; - int nlocal = cptr->atom->nlocal; - tagint *molecule = cptr->atom->molecule; - int *mask = cptr->atom->mask; - int molbit = cptr->molbit; + std::map<tagint,int> *hash = gptr->hash; + int nlocal = gptr->atom->nlocal; + tagint *molecule = gptr->atom->molecule; + int *mask = gptr->atom->mask; + int molbit = gptr->molbit; hash->clear(); for (int i = 0; i < n; i++) (*hash)[list[i]] = 1; diff --git a/src/group.h b/src/group.h index 47114b1740cd1166c0ffde8dfe508b7f6deade9b..31e9b719f81bf14b35b76478f3fb2a3edac9dbfa 100644 --- a/src/group.h +++ b/src/group.h @@ -70,11 +70,9 @@ class Group : protected Pointers { int find_unused(); void add_molecules(int, int); - // static variable for ring communication callback to access class data // callback functions for ring communication - static Group *cptr; - static void molring(int, char *); + static void molring(int, char *, void *); int molbit; }; diff --git a/src/special.cpp b/src/special.cpp index 3fb5ec8077e21130009981b82f69958131072fe7..4697fc40a63b594841ce3448b6c032026f238460 100644 --- a/src/special.cpp +++ b/src/special.cpp @@ -27,10 +27,6 @@ using namespace LAMMPS_NS; -// allocate space for static class variable - -Special *Special::sptr; - /* ---------------------------------------------------------------------- */ Special::Special(LAMMPS *lmp) : Pointers(lmp) @@ -120,8 +116,7 @@ void Special::build() // when receive buffer, scan tags for atoms I own // when find one, increment nspecial count for that atom - sptr = this; - comm->ring(size,sizeof(tagint),buf,1,ring_one,NULL); + comm->ring(size,sizeof(tagint),buf,1,ring_one,NULL,(void *)this); memory->destroy(buf); } @@ -178,8 +173,7 @@ void Special::build() // when receive buffer, scan 2nd-atom tags for atoms I own // when find one, add 1st-atom tag to onetwo list for 2nd atom - sptr = this; - comm->ring(size,sizeof(tagint),buf,2,ring_two,NULL); + comm->ring(size,sizeof(tagint),buf,2,ring_two,NULL,(void *)this); memory->destroy(buf); } @@ -226,8 +220,7 @@ void Special::build() // when find one, increment 1-3 count by # of 1-2 neighbors of my atom, // subtracting one since my list will contain original atom - sptr = this; - comm->ring(size,sizeof(tagint),buf,3,ring_three,buf); + comm->ring(size,sizeof(tagint),buf,3,ring_three,buf,(void *)this); // extract count from buffer that has cycled back to me // nspecial[i][1] = # of 1-3 neighbors of atom i @@ -287,8 +280,7 @@ void Special::build() // exclude the atom whose tag = original // this process may include duplicates but they will be culled later - sptr = this; - comm->ring(size,sizeof(tagint),buf,4,ring_four,buf); + comm->ring(size,sizeof(tagint),buf,4,ring_four,buf,(void *)this); // fill onethree with buffer values that have been returned to me // sanity check: accumulated buf[i+3] count should equal @@ -343,8 +335,7 @@ void Special::build() // when find one, increment 1-4 count by # of 1-2 neighbors of my atom // may include duplicates and original atom but they will be culled later - sptr = this; - comm->ring(size,sizeof(tagint),buf,5,ring_five,buf); + comm->ring(size,sizeof(tagint),buf,5,ring_five,buf,(void *)this); // extract count from buffer that has cycled back to me // nspecial[i][2] = # of 1-4 neighbors of atom i @@ -402,8 +393,7 @@ void Special::build() // incrementing the count in buf(i+4) // this process may include duplicates but they will be culled later - sptr = this; - comm->ring(size,sizeof(tagint),buf,6,ring_six,buf); + comm->ring(size,sizeof(tagint),buf,6,ring_six,buf,(void *)this); // fill onefour with buffer values that have been returned to me // sanity check: accumulated buf[i+2] count should equal @@ -744,8 +734,7 @@ void Special::angle_trim() // when receive buffer, scan list of 1,3 atoms looking for atoms I own // when find one, scan its 1-3 neigh list and mark I,J as in an angle - sptr = this; - comm->ring(size,sizeof(tagint),buf,7,ring_seven,NULL); + comm->ring(size,sizeof(tagint),buf,7,ring_seven,NULL,(void *)this); // delete 1-3 neighbors if they are not flagged in dflag @@ -850,8 +839,7 @@ void Special::dihedral_trim() // when receive buffer, scan list of 1,4 atoms looking for atoms I own // when find one, scan its 1-4 neigh list and mark I,J as in a dihedral - sptr = this; - comm->ring(size,sizeof(tagint),buf,8,ring_eight,NULL); + comm->ring(size,sizeof(tagint),buf,8,ring_eight,NULL,(void *)this); // delete 1-4 neighbors if they are not flagged in dflag @@ -894,8 +882,9 @@ void Special::dihedral_trim() when find one, increment nspecial count for that atom ------------------------------------------------------------------------- */ -void Special::ring_one(int ndatum, char *cbuf) +void Special::ring_one(int ndatum, char *cbuf, void *ptr) { + Special *sptr = (Special *) ptr; Atom *atom = sptr->atom; int **nspecial = atom->nspecial; int nlocal = atom->nlocal; @@ -914,8 +903,9 @@ void Special::ring_one(int ndatum, char *cbuf) when find one, add 1st-atom tag to onetwo list for 2nd atom ------------------------------------------------------------------------- */ -void Special::ring_two(int ndatum, char *cbuf) +void Special::ring_two(int ndatum, char *cbuf, void *ptr) { + Special *sptr = (Special *) ptr; Atom *atom = sptr->atom; int nlocal = atom->nlocal; @@ -937,8 +927,9 @@ void Special::ring_two(int ndatum, char *cbuf) subtracting one since my list will contain original atom ------------------------------------------------------------------------- */ -void Special::ring_three(int ndatum, char *cbuf) +void Special::ring_three(int ndatum, char *cbuf, void *ptr) { + Special *sptr = (Special *) ptr; Atom *atom = sptr->atom; int **nspecial = atom->nspecial; int nlocal = atom->nlocal; @@ -968,8 +959,9 @@ void Special::ring_three(int ndatum, char *cbuf) this process may include duplicates but they will be culled later ------------------------------------------------------------------------- */ -void Special::ring_four(int ndatum, char *cbuf) +void Special::ring_four(int ndatum, char *cbuf, void *ptr) { + Special *sptr = (Special *) ptr; Atom *atom = sptr->atom; int **nspecial = atom->nspecial; int nlocal = atom->nlocal; @@ -1004,8 +996,9 @@ void Special::ring_four(int ndatum, char *cbuf) may include duplicates and original atom but they will be culled later ------------------------------------------------------------------------- */ -void Special::ring_five(int ndatum, char *cbuf) +void Special::ring_five(int ndatum, char *cbuf, void *ptr) { + Special *sptr = (Special *) ptr; Atom *atom = sptr->atom; int **nspecial = atom->nspecial; int nlocal = atom->nlocal; @@ -1033,8 +1026,9 @@ void Special::ring_five(int ndatum, char *cbuf) this process may include duplicates but they will be culled later ------------------------------------------------------------------------- */ -void Special::ring_six(int ndatum, char *cbuf) +void Special::ring_six(int ndatum, char *cbuf, void *ptr) { + Special *sptr = (Special *) ptr; Atom *atom = sptr->atom; int **nspecial = atom->nspecial; int nlocal = atom->nlocal; @@ -1065,8 +1059,9 @@ void Special::ring_six(int ndatum, char *cbuf) when find one, scan its 1-3 neigh list and mark I,J as in an angle ------------------------------------------------------------------------- */ -void Special::ring_seven(int ndatum, char *cbuf) +void Special::ring_seven(int ndatum, char *cbuf, void *ptr) { + Special *sptr = (Special *) ptr; Atom *atom = sptr->atom; int **nspecial = atom->nspecial; int nlocal = atom->nlocal; @@ -1105,8 +1100,9 @@ void Special::ring_seven(int ndatum, char *cbuf) when find one, scan its 1-4 neigh list and mark I,J as in a dihedral ------------------------------------------------------------------------- */ -void Special::ring_eight(int ndatum, char *cbuf) +void Special::ring_eight(int ndatum, char *cbuf, void *ptr) { + Special *sptr = (Special *) ptr; Atom *atom = sptr->atom; int **nspecial = atom->nspecial; int nlocal = atom->nlocal; diff --git a/src/special.h b/src/special.h index fbaad5ea343e8b70872528ceb1a5cb040ae5e4c3..9f25200336c597276c9c9ed5d2427be12debd3ef 100644 --- a/src/special.h +++ b/src/special.h @@ -39,18 +39,16 @@ class Special : protected Pointers { void combine(); void fix_alteration(); - // static variable for ring communication callback to access class data // callback functions for ring communication - static Special *sptr; - static void ring_one(int, char *); - static void ring_two(int, char *); - static void ring_three(int, char *); - static void ring_four(int, char *); - static void ring_five(int, char *); - static void ring_six(int, char *); - static void ring_seven(int, char *); - static void ring_eight(int, char *); + static void ring_one(int, char *, void *); + static void ring_two(int, char *, void *); + static void ring_three(int, char *, void *); + static void ring_four(int, char *, void *); + static void ring_five(int, char *, void *); + static void ring_six(int, char *, void *); + static void ring_seven(int, char *, void *); + static void ring_eight(int, char *, void *); }; }