Skip to content
Snippets Groups Projects
Commit 89c2fd10 authored by Mark Hodgkinson's avatar Mark Hodgkinson
Browse files

Bug fix to AOD file name in comparison script. When running from ESD the AOD is called

AOD.pool.root and not myAOD.pool.root.
parent 34d539fa
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ echo "Creating new serial directory"
mkdir serial; cd serial
athena $1 | tee athenaSerial.log
rc=${PIPESTATUS[0]}
xAODDigest.py myAOD.pool.root | tee digestSerial.log
xAODDigest.py AOD.pool.root | tee digestSerial.log
echo "art-result: $rc Serial"
test_postProcessing_Errors.sh athenaSerial.log | tee errorsSerial.log
......@@ -15,7 +15,7 @@ mkdir threadOne; cd threadOne
athena --threads=1 $1 | tee athenaOneThread.log
rc1=${PIPESTATUS[0]}
xAODDigest.py myAOD.pool.root | tee digestOneThread.log
xAODDigest.py AOD.pool.root | tee digestOneThread.log
echo "art-result: $rc1 OneThread"
test_postProcessing_Errors.sh athenaOneThread.log | tee errorsOneThread.log
......@@ -39,7 +39,7 @@ mkdir threadTwo; cd threadTwo
athena --threads=2 $1 | tee athenaTwoThreads.log
rc2=${PIPESTATUS[0]}
xAODDigest.py myAOD.pool.root | tee digestTwoThreads.log
xAODDigest.py AOD.pool.root | tee digestTwoThreads.log
echo "art-result: $rc2 TwoThreads"
test_postProcessing_Errors.sh athenaTwoThreads.log | tee errorsTwoThreads.log
......@@ -59,7 +59,7 @@ mkdir threadFive; cd threadFive
athena --threads=5 $1 | tee athenaFiveThreads.log
rc5=${PIPESTATUS[0]}
xAODDigest.py myAOD.pool.root | tee digestFiveThreads.log
xAODDigest.py AOD.pool.root | tee digestFiveThreads.log
echo "art-result: $rc5 FiveThreads"
test_postProcessing_Errors.sh athenaFiveThreads.log | tee errorsFiveThreads.log
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment