Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PreequilibriumDynamics.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PreequilibriumDynamics.h
1 /*******************************************************************************
2  * Copyright (c) The JETSCAPE Collaboration, 2018
3  *
4  * Modular, task-based framework for simulating all aspects of heavy-ion collisions
5  *
6  * For the list of contributors see AUTHORS.
7  *
8  * Report issues at https://github.com/JETSCAPE/JETSCAPE/issues
9  *
10  * or via email to bugs.jetscape@gmail.com
11  *
12  * Distributed under the GNU General Public License 3.0 (GPLv3 or later).
13  * See COPYING for details.
14  ******************************************************************************/
15 
16 #ifndef PREEQUILDYNAMICS_H
17 #define PREEQUILDYNAMICS_H
18 
19 #include <vector>
20 #include "InitialState.h"
21 #include "JetScapeModuleBase.h"
22 #include "RealType.h"
23 
24 namespace Jetscape {
25 // Flags for preequilibrium dynamics status.
27 
29 public:
30  // preequilibrium dynamics parameters file name.
32 };
33 
34 // Interface for the Preequilibrium Dynamics of the medium
36 private:
38  // record preequilibrium start and end proper time [fm/c]
40 
41 public:
43 
44  virtual ~PreequilibriumDynamics();
45 
49  void Init();
50 
54  void Exec();
55 
57  virtual void Clear();
58 
59  virtual void
61  virtual void EvolvePreequilibrium() {}
62 
63  // add initial state shared pointer
66  std::shared_ptr<InitialState> ini;
67 
69 
71 
72  // @return Start time (or tau) for hydrodynamic evolution
74 
75  // @return End time (or tau) for hydrodynamic evolution.
77 
78  // record preequilibrium running status
80 
81  std::vector<double> e_;
82  std::vector<double> P_;
83  std::vector<double> utau_;
84  std::vector<double> ux_;
85  std::vector<double> uy_;
86  std::vector<double> ueta_;
87  std::vector<double> pi00_;
88  std::vector<double> pi01_;
89  std::vector<double> pi02_;
90  std::vector<double> pi03_;
91  std::vector<double> pi11_;
92  std::vector<double> pi12_;
93  std::vector<double> pi13_;
94  std::vector<double> pi22_;
95  std::vector<double> pi23_;
96  std::vector<double> pi33_;
97  std::vector<double> bulk_Pi_;
98 };
99 
100 } // end namespace Jetscape
101 
102 #endif