Back to home page

sPhenix code displayed by LXR

 
 

    


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

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 
0016 #ifndef FREESTREAMMILNEWRAPPER_H
0017 #define FREESTREAMMILNEWRAPPER_H
0018 
0019 #include "PreequilibriumDynamics.h"
0020 #include "FreestreamMilne.cpp"
0021 
0022 using namespace Jetscape;
0023 
0024 class FreestreamMilneWrapper : public PreequilibriumDynamics {
0025 private:
0026   //int mode; //!< records running mode
0027   FREESTREAMMILNE *fsmilne_ptr;
0028 
0029   // Allows the registration of the module so that it is available to be used by the Jetscape framework.
0030   static RegisterJetScapeModule<FreestreamMilneWrapper> reg;
0031 
0032 public:
0033   FreestreamMilneWrapper();
0034   ~FreestreamMilneWrapper();
0035 
0036   void InitializePreequilibrium(PreEquilibriumParameterFile parameter_list);
0037   void EvolvePreequilibrium();
0038 };
0039 
0040 #endif // FREESTREAMMILNEWRAPPER_H