Skip to content

Commit

Permalink
Style
Browse files Browse the repository at this point in the history
  • Loading branch information
pshriwise committed Jan 11, 2025
1 parent 3f27fbd commit 3866dd4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions include/openmc/particle_data.h
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,9 @@ struct CacheDataMG {

struct BoundaryInfo {
double distance {INFINITY}; //!< distance to nearest boundary
int surface {SURFACE_NONE}; //!< surface token, non-zero if boundary is surface
int coord_level; //!< coordinate level after crossing boundary
int surface {
SURFACE_NONE}; //!< surface token, non-zero if boundary is surface
int coord_level; //!< coordinate level after crossing boundary
array<int, 3>
lattice_translation {}; //!< which way lattice indices will change

Expand Down Expand Up @@ -347,7 +348,8 @@ class GeometryState {
Position r_last_; //!< previous coordinates
Direction u_last_; //!< previous direction coordinates

int surface_ {SURFACE_NONE}; //!< surface token for surface the particle is currently on
int surface_ {
SURFACE_NONE}; //!< surface token for surface the particle is currently on

BoundaryInfo boundary_; //!< Info about the next intersection

Expand Down

0 comments on commit 3866dd4

Please sign in to comment.