-
Notifications
You must be signed in to change notification settings - Fork 197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Function to get particle cell index. #5118
Merged
roelof-groenewald
merged 30 commits into
ECP-WarpX:development
from
archermarx:particle_cell_id
Aug 21, 2024
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
a7d358f
Add particle cell id function
archermarx 89216c6
Add header
archermarx a71fad0
Rewrite in header
archermarx 1a8a045
Remove commented-out code
archermarx 68459d8
Merge branch 'development' into particle_cell_id
archermarx ccde01d
better ignoring of unused variables
archermarx 7b80c85
Const decls for clang-tidy
archermarx fcfbb45
Add overload for getParticleCellIndex using SuperParticleType
archermarx 68f278a
Use ignore_unsued for index variables to appease clang-tidy
archermarx cd4cd15
Update Source/Utils/ParticleUtils.cpp
archermarx 2eed9cd
Merge branch 'ECP-WarpX:development' into particle_cell_id
archermarx 8d1d32f
Remove unused variable 'lo'
archermarx 737d2cf
Update Source/Utils/ParticleUtils.H
archermarx 002e8ce
Add use of function to ParticleReductionFunctor.cpp
archermarx de86103
Update Source/Utils/ParticleUtils.H
archermarx 6c7b222
Update Source/Utils/ParticleUtils.H
archermarx bc28bde
Merge branch 'particle_cell_id' of github.com:archermarx/WarpX into p…
archermarx 15b7670
Revert use of new function in ParticleUtils.cpp to get CI to pass
archermarx 9bda9dd
Merge branch 'development' into particle_cell_id
archermarx b5059c4
Remove parameter
archermarx 25111a4
fix typo
archermarx c177530
Use new overload of amrex::getParticleCell
archermarx 970f8a6
remove particleutils.h header include in ParticleReductionFunctor
archermarx 513bd14
Update ParticleUtils.H
archermarx 8e13732
Merge branch 'ECP-WarpX:development' into particle_cell_id
archermarx 055776b
Fix structured bindings
archermarx b248dc0
Remove new function entirely and rely on getParticleCell
archermarx 4e8f688
Try using amrex::getParticleCell in ParticleUtils.cpp
archermarx fef22fe
Revert "Try using amrex::getParticleCell in ParticleUtils.cpp"
archermarx b20c5ce
remove unnecessary include
archermarx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, there is another branch,
m_do_average
, below that can use the same functionality.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Follow-up in #5557