Warning, /JETSCAPE/examples/simplevalidate.xml is written in an unsupported language. File is not indexed.
0001 <?xml version="1.0"?>
0002
0003 <!-- Copyright (c) The JETSCAPE Collaboration, 2018 -->
0004 <!-- Modular, task-based framework for simulating all aspects of heavy-ion collisions -->
0005 <!-- For the list of contributors see AUTHORS. -->
0006 <!-- Report issues at https://github.com/JETSCAPE/JETSCAPE/issues -->
0007 <!-- or via email to bugs.jetscape@gmail.com -->
0008 <!-- Distributed under the GNU General Public License 3.0 (GPLv3 or later). -->
0009 <!-- See COPYING for details. -->
0010
0011 <!-- Just for test purposes! -->
0012 <!-- More details and final format to be determined ... -->
0013
0014 <jetscape>
0015
0016 <debug> on </debug>
0017 <remark> off </remark>
0018 <vlevel> 0 </vlevel>
0019
0020 <!-- Random Settings. For now, just a global seed. -->
0021 <!-- Note: It's each modules responsibility to adopt it -->
0022 <!-- Note: Most if not all modules should understand 0 to mean a random value -->
0023 <!-- Note: Both 0 and non-zero values require careful treatment in case of multi-threading -->
0024 <!-- An example implementation is (will be) in JetEnergyLossManager.cc -->
0025 <Random>
0026 <seed>1</seed>
0027 </Random>
0028
0029 <!-- Inital State Module ... -->
0030 <IS>
0031 <!-- x range [-grid_max_x, grid_max_x] -->
0032 <!-- y range [-grid_max_y, grid_max_y]-->
0033 <!-- longitudinal range [-grid_max_z, grid_max_z]-->
0034 <!-- in units of [fm] -->
0035 <grid_max_x> 10 </grid_max_x>
0036 <grid_max_y> 10 </grid_max_y>
0037 <grid_max_z> 0 </grid_max_z>
0038 <grid_step_x> 0.2 </grid_step_x>
0039 <grid_step_y> 0.2 </grid_step_y>
0040 <grid_step_z> 0.2 </grid_step_z>
0041
0042 </IS>
0043
0044 <!-- Hard Process -->
0045 <Hard>
0046 <!-- Parton Gun test with fixed pT and fixed IS pos = 0 -->
0047 <PGun>
0048 <name>PGun</name>
0049 <pT>100</pT>
0050 <!-- for validation purposes ony -->
0051 <fixed_eta1>0.5</fixed_eta1>
0052 <fixed_eta2>-0.4</fixed_eta2>
0053 <fixed_phi1>1</fixed_phi1>
0054 <fixed_phi2>-1</fixed_phi2>
0055 <fixed_pid1>21</fixed_pid1>
0056 <fixed_pid2>-1</fixed_pid2>
0057 </PGun>
0058 </Hard>
0059
0060
0061 <!--Eloss Module ... -->
0062 <Eloss>
0063 <deltaT>0.1</deltaT>
0064 <maxT>0.5</maxT>
0065
0066 <!-- Individual Eloss Modules run Eloss and Eloss Manager ... -->
0067 <ElossValidate>
0068 <name>ElossValidate</name>
0069 </ElossValidate>
0070
0071 </Eloss>
0072
0073 <!-- Hydro Module ... -->
0074 <Hydro>
0075 <!-- Test Brick if bjorken_expansion_on="true", T(t) = T * (start_time[fm]/t)^{1/3} -->
0076 <Brick bjorken_expansion_on="false" start_time="0.6">
0077 <name>Brick</name>
0078 <T>0.2</T>
0079 </Brick>
0080
0081 </Hydro>
0082
0083 </jetscape>