Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SoftParticlization.h
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file SoftParticlization.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 // JETSCAPE module for soft particlization
17 // This module will generate Monte-Carlo samples for soft hadrons
18 // -----------------------------------------
19 
20 #ifndef SOFTPARTICLIZATION_H_
21 #define SOFTPARTICLIZATION_H_
22 
23 #include <vector>
24 
25 #include "JetScapeModuleBase.h"
26 #include "JetClass.h"
27 #include "JetScapeWriter.h"
28 
29 namespace Jetscape {
30 
32 private:
33 public:
36 
37  virtual void Init();
38  virtual void Exec();
39  virtual void Clear();
40 
41  std::vector<std::vector<shared_ptr<Hadron>>> Hadron_list_;
42 
45 };
46 
47 } // end namespace Jetscape
48 
49 #endif // SOFTPARTICLIZATION_H_