Back to home page

sPhenix code displayed by LXR

 
 

    


Warning, /JETSCAPE/jail/README_for_LBT.old is written in an unsupported language. File is not indexed.

0001 ###################################################################################################
0002 
0003 This version includes the LBT (linear Boltzmann Transport) model for jet evolution
0004 
0005 At this moment, the LBT part can be used for the purpose of testing and code development within the JETSCAPE collaboration only. Releasing the LBT part to the public is NOT permitted.
0006  
0007 Copyright is reserved to the LBL-CCNU nuclear theory group.
0008 
0009 ###################################################################################################
0010 
0011 
0012 Compared to the master branch, following modification is implemented. 
0013 
0014 (1) In "src/framework/test/", "ElossModuleLBT.h" and "ElossModuleLBT.cc" are added, and "ElossModuleLBT.cc" is included into "CMakeLists.txt". These two new files include all functions of LBT and are written in the same way as the original "ElossModulesTest.cc" and "ElossModulesTest.h" designed by Joern.
0015 
0016 (2) In "src/framework/src/", "LBT_brickTest.cc" is added as a main function to test LBT. It is written in the same way as the original "brickTest.cc" as designed by Joern. It is added into "src/framework/CMakeLists.txt".
0017 
0018 (3) In "src/framework/", "jetscape_init.xml" is changed. It is exactly the same as the original "jetscape_init.xml" file except that LBT information is included.
0019 
0020 (4) To run the LBT code, some numerical tables (including physics information) should be downloaded from 
0021     "https://bitbucket.org/sscao/lbt-tables/downloads/LBT-tables.tar.gz".
0022     This can be automatically done by going to "src/framework/3rdparty" and executing "./get_lbtTab.sh"
0023 
0024 (5) Some other changes are made to "src/framework/CMakeLists.txt" to make sure "LBT_brickTest" is linked to necessary libraries, "jetscape_init.xml" is copied to "build", and "LBT-tables" [see (4) above] is linked to "build" if it is downloaded.
0025 
0026 ###################################################################################################
0027 
0028 To run the test of LBT, do the following. (Make sure you can compile and run the code in the master branch first before using this version including LBT.)
0029 
0030 (1) cd src/framework/
0031 (2) cd 3rdparty  (download and unzip tables for running LBT)
0032 (3) ./get_lbtTab.sh
0033 (4) cd ..
0034 (5) source setup.sh
0035 (6) mkdir build
0036 (7) cd build
0037 (8) cmake .. 
0038 (9) make
0039 (10) ./LBT_brickTest
0040 
0041