Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
s95p.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file s95p.h
1 
2 // initial state for hydrodynamic evolution from the table
3 // in the format used in VISH2+1 hydro code
4 
5 namespace s95p {
6 // energy density -> entropy density usgin s95 EoS
7 double s95p_s(double e);
8 // entropy density -> energy density usgin s95 EoS
9 double s95p_e(double s);
10 
11 // load the table for the initial entropy density profile
12 // factor: factor to scale the entropy density
13 void loadSongIC(char* filename, double factor);
14 // get the energy density at a given point in the transverse plane
15 double getSongEps(double x, double y);
16 }