Skip to content

Commit

Permalink
Better alignment of the Track members
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanGonzalezCaminero committed Sep 24, 2024
1 parent fa8ba18 commit ee31192
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions include/AdePT/core/Track.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,19 @@ struct Track {
vecgeom::NavigationState navState;

#ifdef USE_SPLIT_KERNELS
RanluxppDouble newRNG;

// Variables used to store track info needed for scoring
double preStepEKin;
vecgeom::Vector3D<Precision> preStepPos;
vecgeom::Vector3D<Precision> preStepDir;
vecgeom::NavigationState nextState;
vecgeom::NavigationState preStepNavState;
vecgeom::Vector3D<Precision> preStepPos;
vecgeom::Vector3D<Precision> preStepDir;
RanluxppDouble newRNG;
double preStepEKin{0};

// Variables used to store navigation results
long hitsurfID{0};
bool propagated{false};
double geometryStepLength{0};
double safety{0};
long hitsurfID{0};
bool propagated{false};

// Variables used to store results from G4HepEM
bool restrictedPhysicalStepLength{false};
Expand Down

0 comments on commit ee31192

Please sign in to comment.