Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ic.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file ic.h
1 
2 class EoS;
3 class Fluid;
4 
5 // this class takes care of the initial conditions for hydrodynamic evolution
6 class IC {
7  public:
8  IC(char* icInputFile, double s0ScaleFactor);
9  ~IC(void);
10  // setIC: initializes entire hydro grid at a given initial proper time tau
11  void setIC(Fluid *f, EoS *eos, double tau);
12 };