Skip to content

Commit

Permalink
core: Removed unused macro
Browse files Browse the repository at this point in the history
  • Loading branch information
fweik committed Oct 4, 2019
1 parent 36d5c72 commit ce6536f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
3 changes: 0 additions & 3 deletions src/core/particle_data.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,6 @@ enum {
/** \ref ParticleProperties::ext_flag "ext_flag" mask to check whether any of
* the coordinates is fixed. */
#define COORDS_FIX_MASK (COORD_FIXED(0) | COORD_FIXED(1) | COORD_FIXED(2))
/** \ref ParticleProperties::ext_flag "ext_flag" mask to check whether all of
* the coordinates are fixed. */
#define COORDS_ALL_FIXED (COORD_FIXED(0) & COORD_FIXED(1) & COORD_FIXED(2))

#ifdef ROTATION
/** \ref ParticleProperties::ext_flag "ext_flag" value for particle subject to
Expand Down
1 change: 0 additions & 1 deletion src/python/espressomd/particle_data.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ def _COORD_FIXED(coord):


COORDS_FIX_MASK = _COORD_FIXED(0) | _COORD_FIXED(1) | _COORD_FIXED(2)
COORDS_ALL_FIXED = _COORD_FIXED(0) & _COORD_FIXED(1) & _COORD_FIXED(2)
PARTICLE_EXT_TORQUE = 16
ROT_X = 2
ROT_Y = 4
Expand Down

0 comments on commit ce6536f

Please sign in to comment.