Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 
0002 class EoS;
0003 class Fluid;
0004 
0005 // initial state from Gubser analytical solution (ideal hydro)
0006 class ICGubser {
0007  public:
0008   ICGubser(void);
0009   ~ICGubser(void);
0010   // setIC: initializes entire hydro grid at a given initial proper time tau
0011   void setIC(Fluid *f, EoS *eos, double tau);
0012 };