Metadata-Version: 1.1
Name: hic
Version: 0.1.dev0
Summary: Tools for analyzing heavy-ion collision simulations.
Home-page: https://github.com/jbernhard/hic
Author: Jonah Bernhard
Author-email: jonah.bernhard@gmail.com
License: MIT
Description: ===
        hic
        ===
        
        Tools for analyzing heavy-ion collision simulations in Python.
        
        .. image:: https://travis-ci.org/jbernhard/hic.svg?branch=master
          :target: https://travis-ci.org/jbernhard/hic
        
        .. image:: https://coveralls.io/repos/jbernhard/hic/badge.png?branch=master
          :target: https://coveralls.io/r/jbernhard/hic?branch=master
        
        Simple examples
        ---------------
        
        Calculate flow cumulants:
        
        .. code:: python
        
          from hic import flow
        
          vnk = flow.FlowCumulant(mult, {2: q2, 3: q3})
          v22 = vnk.flow(2, 2)
        
        Randomly sample events with specified flows:
        
        .. code:: python
        
          phi = flow.sample_flow_pdf(mult, vn=(v2, v3))
        
        Calculate initial condition eccentricities:
        
        .. code:: python
        
          from hic import initial
        
          ic = initial.IC(profile, dxy)
          e2 = ic.ecc(2)
        
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Scientific/Engineering :: Physics
