Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 /*******************************************************************************
0002  * Copyright (c) The JETSCAPE Collaboration, 2018
0003  *
0004  * Modular, task-based framework for simulating all aspects of heavy-ion collisions
0005  * 
0006  * For the list of contributors see AUTHORS.
0007  *
0008  * Report issues at https://github.com/JETSCAPE/JETSCAPE/issues
0009  *
0010  * or via email to bugs.jetscape@gmail.com
0011  *
0012  * Distributed under the GNU General Public License 3.0 (GPLv3 or later).
0013  * See COPYING for details.
0014  ******************************************************************************/
0015 // This is a general basic class for hydrodynamics
0016 
0017 #include "FluidCellInfo.h"
0018 
0019 namespace Jetscape {
0020 
0021 FluidCellInfo::FluidCellInfo() {
0022   energy_density = 0.0;
0023   entropy_density = 0.0;
0024   temperature = 0.0;
0025   pressure = 0.0;
0026   qgp_fraction = 0.0;
0027   mu_B = 0.0;
0028   mu_S = 0.0;
0029   mu_C = 0.0;
0030 
0031   vx = 0.0;
0032   vy = 0.0;
0033   vz = 0.0;
0034   for (int i = 0; i < 4; i++) {
0035     for (int j = 0; j < 4; j++) {
0036       pi[i][j] = 0.0;
0037     }
0038   }
0039   bulk_Pi = 0.0;
0040 }
0041 
0042 } // namespace Jetscape