Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:19:16

0001 
0002 // initial state for hydrodynamic evolution from the table
0003 // in the format used in VISH2+1 hydro code
0004 
0005 namespace s95p {
0006 // energy density -> entropy density usgin s95 EoS
0007 double s95p_s(double e);
0008 // entropy density -> energy density usgin s95 EoS
0009 double s95p_e(double s);
0010 
0011 // load the table for the initial entropy density profile
0012 // factor: factor to scale the entropy density
0013 void loadSongIC(char* filename, double factor);
0014 // get the energy density at a given point in the transverse plane
0015 double getSongEps(double x, double y);
0016 }