Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianMarre committed Aug 12, 2024
1 parent a0c3a48 commit ff06725
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions include/picongpu/simulation/stage/AtomicPhysics.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -342,10 +342,7 @@ namespace picongpu::simulation::stage
// debug only
if constexpr(picongpu::atomicPhysics::debug::rejectionProbabilityCache::PRINT_TO_CONSOLE)
{
std::cout << "\t\t a histogram oversubscribed?: "
<< isOverSubscribed
? "true"
: "false")
std::cout << "\t\t a histogram oversubscribed?: " << (isOverSubscribed ? "true" : "false")
<< std::endl;

printOverSubscriptionFieldToConsole(mappingDesc);
Expand Down Expand Up @@ -488,7 +485,7 @@ namespace picongpu::simulation::stage
calculateIPDInput(mappingDesc, currentStep);
resetTimeStep(mappingDesc);
resetRateCache();
checkPresence();
checkPresence(mappingDesc);
fillRateCache(mappingDesc);
calculateSubStepLength(mappingDesc);

Expand Down

0 comments on commit ff06725

Please sign in to comment.