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 // this class takes care of the initial conditions for hydrodynamic evolution
0006 class IC {
0007  public:
0008   IC(char* icInputFile, double s0ScaleFactor);
0009   ~IC(void);
0010   // setIC: initializes entire hydro grid at a given initial proper time tau
0011   void setIC(Fluid *f, EoS *eos, double tau);
0012 };