Back to home page

sPhenix code displayed by LXR

 
 

    


Warning, /JETSCAPE/jail/jetscape_init_pythiagun.xml is written in an unsupported language. File is not indexed.

0001 <?xml version="1.0"?>
0002 <!-- Just for test purposes! -->
0003 <!-- More details and final format to be determined ... -->
0004 <jetscape>
0005 
0006   <debug> on </debug>
0007   <remark> off </remark>
0008   <vlevel> 0 </vlevel>
0009 
0010   <!--  If for example one wants to run JetScape purely via xml ... -->
0011    <Tasks>
0012      <task>Matter</task>
0013      <task>Hydro1</task>
0014    </Tasks>
0015 
0016    <!--  Random Settings. For now, just a global  seed. -->
0017    <!--  Note: It's each modules responsibility to adopt it -->
0018    <!--  Note: Most if not all modules should understand 0 to mean a random value -->
0019    <!--  Note: Both 0 and non-zero values require careful treatment in case of multi-threading -->
0020    <!--           An example implementation is (will be) in JetEnergyLossManager.cc -->
0021    <Random>
0022      <seed>1</seed>
0023    </Random>
0024 
0025    <!-- Inital State Module ... -->
0026    <IS>
0027      <!-- x range [-grid_max_x, grid_max_x] -->
0028      <!-- y range [-grid_max_y, grid_max_y]-->
0029      <!-- longitudinal range [-grid_max_z, grid_max_z]-->
0030      <!-- in units of [fm] -->
0031      <grid_max_x> 10 </grid_max_x>
0032      <grid_max_y> 10 </grid_max_y>
0033      <grid_max_z> 0 </grid_max_z>
0034      <grid_step_x> 0.2 </grid_step_x>
0035      <grid_step_y> 0.2 </grid_step_y>
0036      <grid_step_z> 0.2 </grid_step_z>
0037      
0038      <Trento use_module="pre_defined">
0039          <!-- pre-defined system: default collisions have auau200, pbpb2760, pbpb5020, more in the future -->
0040          <pre_defined collision_system="auau200" centrality_min="30" centrality_max="40" />
0041          <!-- user-defined system: to get one event in 0-100% centrality range -->
0042          <user_defined projectile="Au" target="Au" sqrts="200" cross_section="4.2" />
0043      </Trento>
0044 
0045      <!-- Options to read initial conditions from saved file ... -->
0046      <initial_profile_path>../test/test_hydro_files/ic.hdf5</initial_profile_path>
0047    </IS>
0048 
0049    <!-- Hard Process/Pythia to be included -->
0050 
0051    <Hard>
0052 
0053      <!-- Pythia Gun test, currently with fixed IS pos = 0 -->
0054      <!-- Sensible defaults are set in the class. ptHat etc. get their own field -->
0055      <!-- Will try to provide a functionality to read in any command lines as well -->
0056      <PythiaGun>
0057        <name>PythiaGun</name>
0058        <pTHatMin>110</pTHatMin>
0059        <pTHatMax>120</pTHatMax>
0060        <eCM>2760</eCM>
0061        <LinesToRead>
0062          HardQCD:all = on        
0063        </LinesToRead>
0064      </PythiaGun>     
0065    </Hard>
0066    
0067    
0068    <!--Eloss Module ... -->
0069    <Eloss>
0070 
0071      <deltaT>0.1</deltaT>
0072      <formTime> -0.1</formTime>
0073      <maxT>3</maxT>
0074 
0075      <!-- Individual Eloss Modules run Eloss and Eloss Manager ... -->
0076      <!-- Just a test here (no physics implemented in Matter and Martini ... -->
0077      <Matter>
0078        <name>Matter</name>
0079        <Q0> 1.0 </Q0>
0080        <T0> 0.16 </T0>
0081        <vir_factor> 0.25 </vir_factor>
0082        <in_vac> 0 </in_vac>
0083        <brick_med> 0 </brick_med>
0084        <brick_length> 5.0 </brick_length>
0085        <hydro_Tc> 0.15 </hydro_Tc>
0086        <qhat0> 0.5 </qhat0>
0087        <alphas> 0.25 </alphas>
0088      </Matter>
0089 
0090      <Lbt>
0091        <name> Lbt </name>
0092        <Q0> 1.0 </Q0>
0093        <in_vac> 0 </in_vac>
0094        <only_leading> 0 </only_leading>
0095        <hydro_Tc> 0.15 </hydro_Tc>
0096        <alphas> 0.2 </alphas>
0097      </Lbt>
0098      
0099      <Martini>
0100        <name > Martini </name>
0101        <alpha_s> 0.3 </alpha_s>
0102        <pcut> 2.0 </pcut>
0103      </Martini>
0104      
0105      <AdSCFT>
0106        <name> AdSCFT </name>
0107        <kappa> 0.36 </kappa>
0108      </AdSCFT>
0109 
0110    </Eloss>
0111 
0112    <!-- Hydro  Module ... -->
0113    <Hydro>
0114      
0115      <Hydro1>
0116        <name>Hydro1</name>
0117        <eta> 0.2 </eta>
0118      </Hydro1>
0119 
0120      <!-- Test Brick ... -->
0121      <Brick>
0122        <name>Brick</name>
0123        <T>0.3</T>
0124      </Brick>
0125 
0126      <!-- Test Gubser ... -->
0127      <Gubser>
0128      </Gubser>
0129      
0130         <!-- hydro from a file ... -->
0131         <hydro_from_file>
0132             <name> hydro from a file </name>
0133             <read_in_multiple_hydro>1</read_in_multiple_hydro>
0134             <hydro_files_folder>../test/test_hydro_files</hydro_files_folder>
0135             <!-- read in file type ... -->
0136             <!-- hydro_type == 1 read in evo file from VISHNew... -->
0137             <!-- hydro_type == 2 read in evo file from MUSIC... -->
0138             <hydro_type>1</hydro_type>
0139             <!-- VISHNew hydro evolution filename (hdf5 format)... -->
0140             <VISH_file>../test/test_hydro_files/VISH_evo.h5</VISH_file>
0141             <!-- flag whether read in viscous information -->
0142             <!-- (only works for VISHNew evo files)... -->
0143             <load_viscous_info>0</load_viscous_info>
0144             <!-- MUSIC hydro evolution filename (plain binary format)... -->
0145             <!-- the associated input file specifies the grid information -->
0146             <MUSIC_input_file>../test/test_hydro_files/MUSIC_input</MUSIC_input_file>
0147             <MUSIC_file>../test/test_hydro_files/MUSIC_evo.dat</MUSIC_file>
0148             <!-- transition temperature between QGP and Hadron Resonance Gas -->
0149             <T_c>0.154</T_c>
0150             <!-- read in hydro evo file every Ntau step -->
0151             <!-- (only works for MUSIC evo files)... -->
0152             <read_hydro_every_ntau>1</read_hydro_every_ntau>
0153         </hydro_from_file>
0154      
0155         <!-- MUSIC ... -->
0156         <MUSIC>
0157             <name>MUSIC</name>
0158             <MUSIC_input_file>music_input</MUSIC_input_file>
0159             <Perform_CooperFrye_Feezeout>0</Perform_CooperFrye_Feezeout>
0160         </MUSIC>
0161     </Hydro>
0162     <SoftParticlization>
0163         <!-- iSpectraSampler -->
0164         <iSS>
0165             <!-- read in file type ... -->
0166             <!-- hydro_mode == 0 read in surface file from VISHNew... -->
0167             <!-- hydro_mode == 1 read in surface file from MUSIC (2+1)D... -->
0168             <!-- hydro_mode == 2 read in surface file from MUSIC (3+1)D... -->
0169             <hydro_mode>1</hydro_mode>
0170 
0171             <!-- file path for the default input file ... -->
0172             <iSS_input_file>iSS_parameters.dat</iSS_input_file>
0173             <!-- directory path where the hydro surface is stored ... -->
0174             <iSS_working_path>.</iSS_working_path>
0175             
0176             <number_of_repeated_sampling>10</number_of_repeated_sampling>
0177             <Perform_resonance_decays>1</Perform_resonance_decays>
0178         </iSS>
0179     </SoftParticlization>
0180 </jetscape>