Skip to content

Commit

Permalink
Merge pull request #162 from smash-transport/roch/PCA_flow
Browse files Browse the repository at this point in the history
PCA flow
  • Loading branch information
Hendrik1704 authored Dec 7, 2023
2 parents 2969c05 + c52ef50 commit c1aaa5d
Show file tree
Hide file tree
Showing 6 changed files with 474 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ A `Deprecated` section could be added if needed for soon-to-be removed features.
* GenerateFlow: Add functionality to generate flow with k-particle correlations
* LeeYangZeroFlow: Add beta version of integrated and differential flow analysis with the Lee-Yang zero method
* QCumulantFlow: Add beta version of integrated flow analysis with the Q-Cumulant method
* PCAFlow: Add flow analysis with PCA method

### Fixed

Expand Down
10 changes: 10 additions & 0 deletions docs/source/classes/flow/PCAFlow/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.. _PCA_flow:

PCAFlow
=======

.. currentmodule:: PCAFlow
.. autoclass:: PCAFlow

.. automethod:: PCAFlow.differential_flow
.. automethod:: PCAFlow.Pearson_correlation
1 change: 1 addition & 0 deletions docs/source/classes/flow/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ Flow
EventPlaneFlow/index
LeeYangZeroFlow/index
QCumulantFlow/index
PCAFlow/index
GenerateFlow/index

3 changes: 2 additions & 1 deletion src/sparkx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
from sparkx.flow.ScalarProductFlow import ScalarProductFlow
from sparkx.flow.LeeYangZeroFlow import LeeYangZeroFlow
from sparkx.flow.QCumulantFlow import QCumulantFlow
from sparkx.flow.PCAFlow import PCAFlow
from sparkx.flow.GenerateFlow import GenerateFlow
from sparkx.Histogram import Histogram
from sparkx.JetAnalysis import JetAnalysis
from sparkx.Jetscape import Jetscape
from sparkx.Lattice3D import Lattice3D
from sparkx.Oscar import Oscar
from sparkx.Particle import Particle
from sparkx.Utilities import pdg_to_latex
from sparkx.Utilities import pdg_to_latex
Loading

0 comments on commit c1aaa5d

Please sign in to comment.