Skip to content

Commit

Permalink
switch from float to unsigned int
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Osborn committed Dec 4, 2023
1 parent f6ba5bb commit 77d6d79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algorithms/tracking/OrthogonalTrackSeedingConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace eicrecon {
float m_collisionRegionMin = -250 * Acts::UnitConstants::mm; // Min z for primary vertex
float m_collisionRegionMax = 250 * Acts::UnitConstants::mm; // Max z for primary vertex

float m_maxSeedsPerSpM = 0; // max number of seeds a single middle sp can belong to - 1
unsigned int m_maxSeedsPerSpM = 0; // max number of seeds a single middle sp can belong to - 1
float m_cotThetaMax = 1.0 / tan(2. * atan(exp(-4.0))); // Cotangent of max theta angle (based on eta)

float m_sigmaScattering = 5; // How many standard devs of scattering angles to consider
Expand Down

0 comments on commit 77d6d79

Please sign in to comment.