Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:19:05

0001 #!/usr/bin/env bash
0002 
0003 ###############################################################################
0004 # Copyright (c) The JETSCAPE Collaboration, 2018
0005 #
0006 # For the list of contributors see AUTHORS.
0007 #
0008 # Report issues at https://github.com/JETSCAPE/JETSCAPE/issues
0009 #
0010 # or via email to bugs.jetscape@gmail.com
0011 #
0012 # Distributed under the GNU General Public License 3.0 (GPLv3 or later).
0013 # See COPYING for details.
0014 ##############################################################################
0015 
0016 if [ -d "test_hydro_files/event-0" ]; then rm -Rf test_hydro_files/event-0; fi
0017 
0018 # download VISHNU hydro examples
0019 curlcmd=wget
0020 command -v ${curlcmd} > /dev/null || curlcmd="curl -LO"
0021 command -v ${curlcmd} > /dev/null || { echo "Please install curl or wget" ; exit 1; }
0022 $curlcmd "https://bitbucket.org/sscao/hydro_profiles/downloads/PbPb2760-Avg-00-05.tar.gz"
0023 
0024 tar xvzf PbPb2760-Avg-00-05.tar.gz
0025 mkdir -p test_hydro_files
0026 mv PbPb2760-Avg-00-05 test_hydro_files/event-0
0027 rm PbPb2760-Avg-00-05.tar.gz