Re: issue with SL17d
Updated on Fri, 2017-07-14 06:40. Originally created by veprbl on 2017-07-14 06:20.
http://www.star.bnl.gov/HyperNews-star/protected/get/starsoft/9855.html
#!/bin/sh set -e RUNID=13047022 WORKDIR=`pwd`/readroot_test_$RUNID rm -rf $WORKDIR || true mkdir -p $WORKDIR cat << EOF > $WORKDIR/compile_cut_di c++ -Wall -ggdb \ \`root-config --cflags --libs\` -lEG \ -I\$STAR/StRoot/StSpinPool/StJetEvent -I\$STAR/StRoot/StSpinPool/StJetSkimEvent \ -L\$STAR_LIB -lStJetSkimEvent -lStJetEvent \ /star/u/hl60/pwg/macros/readroot_cutcheck_dijets_trigmatch_mycut_JP2.cxx -o readroot_cutcheck_dijets_trigmatch_mycut_JP2.exe EOF for version in SL16g SL17d do echo Creating $WORKDIR/${version} mkdir -p $WORKDIR/${version} cd $WORKDIR/${version} csh -c "starver ${version}; which c++; env; source $WORKDIR/compile_cut_di; ./readroot_cutcheck_dijets_trigmatch_mycut_JP2.exe 100000000 /star/u/hl60/pwg/samples/run12_200GeVJets/$RUNID/\\*.jets.root /star/u/hl60/pwg/samples/run12_200GeVJets/$RUNID/\\*.skim.root run$RUNID.root 1. log_run$RUNID.out" 2&>1 1>$WORKDIR/${version}/log done set -x set +e #diff $WORKDIR/SL16g/log $WORKDIR/SL17d/log diff $WORKDIR/{SL16g,SL17d}/readroot_cutcheck_dijets_trigmatch_mycut_JP2.exe diff $WORKDIR/{SL16g,SL17d}/log_run$RUNID.out diff $WORKDIR/{SL16g,SL17d}/run$RUNID.root # compare to yours SL16g diff -au $WORKDIR/SL16g/log_run$RUNID.out /star/u/hl60/pwg/macros/output_run12_trigmatch_mycut_JP2_SL16g/log_run$RUNID.out diff -au $WORKDIR/SL17d/log_run$RUNID.out /star/u/hl60/pwg/macros/output_run12_trigmatch_mycut_JP2_SL16g/log_run$RUNID.out set +x set -eDoesn't reproduce the issue.
»
- veprbl's blog
- Login or register to post comments