-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests and fix event counting for Jetscape
Fix num_output_per_event() so that it starts counting from 0 for Oscar and from 1 for Jetscape files. Also add test for warning in case of empty event list.
- Loading branch information
Lucas Constantin
committed
Nov 7, 2024
1 parent
504bc7b
commit 79bba84
Showing
11 changed files
with
798 additions
and
11 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
LICENSE | ||
README.md | ||
pyproject.toml | ||
setup.py | ||
src/sparkx/CentralityClasses.py | ||
src/sparkx/EventCharacteristics.py | ||
src/sparkx/Filter.py | ||
src/sparkx/Histogram.py | ||
src/sparkx/Jackknife.py | ||
src/sparkx/JetAnalysis.py | ||
src/sparkx/Jetscape.py | ||
src/sparkx/Lattice3D.py | ||
src/sparkx/MultiParticlePtCorrelations.py | ||
src/sparkx/Oscar.py | ||
src/sparkx/Particle.py | ||
src/sparkx/Utilities.py | ||
src/sparkx/__init__.py | ||
src/sparkx.egg-info/PKG-INFO | ||
src/sparkx.egg-info/SOURCES.txt | ||
src/sparkx.egg-info/dependency_links.txt | ||
src/sparkx.egg-info/requires.txt | ||
src/sparkx.egg-info/top_level.txt | ||
src/sparkx/flow/EventPlaneFlow.py | ||
src/sparkx/flow/FlowInterface.py | ||
src/sparkx/flow/GenerateFlow.py | ||
src/sparkx/flow/LeeYangZeroFlow.py | ||
src/sparkx/flow/PCAFlow.py | ||
src/sparkx/flow/QCumulantFlow.py | ||
src/sparkx/flow/ReactionPlaneFlow.py | ||
src/sparkx/flow/ScalarProductFlow.py | ||
src/sparkx/flow/__init__.py | ||
tests/test_CentralityClasses.py | ||
tests/test_EventCharacteristics.py | ||
tests/test_Filter.py | ||
tests/test_Flow.py | ||
tests/test_Histogram.py | ||
tests/test_Jackknife.py | ||
tests/test_JetAnalysis.py | ||
tests/test_Jetscape.py | ||
tests/test_Lattice3D.py | ||
tests/test_MultiParticlePtCorrelations.py | ||
tests/test_Oscar.py | ||
tests/test_Particle.py | ||
tests/test_Utilities.py |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
particle==0.23.0 | ||
numpy>=1.23.5 | ||
scipy>=1.10.1 | ||
abc-property==1.0 | ||
fastjet==3.4.1.3 | ||
matplotlib>=3.7.1 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
sparkx |
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
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
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