-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
111 additions
and
410 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
gen_jets.py --nov 10 -o test_jets.EVT.root | ||
gen_jets.py --nov 2 -o jets.EVT.root |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
gen_minbias.py --nov 1 --pileupAvg 10 --nov 10 -o test_mb.EVT.root | ||
gen_minbias.py --nov 1 --pileupAvg 1 -o mb.EVT.root |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
gen_zee.py --nov 10 -o test_zee.EVT.root | ||
gen_zee.py --nov 2 -o Zee.EVT.root |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
workarea=$1 | ||
place=$pwd | ||
|
||
mkdir -p $workarea | ||
cd $workarea | ||
|
||
# stage 1 | ||
if [ ! -f "stage_1.done" ]; then | ||
gen_zee.py --nov 2 -o Zee.EVT.root | ||
touch stage_1.done | ||
fi | ||
|
||
# stage 2 | ||
if [ ! -f "stage_2.done" ]; then | ||
gen_jets.py --nov 2 -o jets.EVT.root | ||
touch stage_2.done | ||
fi | ||
|
||
# stage 3 | ||
if [ ! -f "stage_3.done" ]; then | ||
gen_minbias.py --nov 1 --pileupAvg 1 -o mb.EVT.root | ||
touch stage_3.done | ||
fi | ||
|
||
# stage 4 | ||
if [ ! -f "stage_4.done" ]; then | ||
simu_trf.py -i Zee.EVT.root -o Zee.HIT.root -nt 2 | ||
touch stage_4.done | ||
fi | ||
|
||
# stage 5 | ||
if [ ! -f "stage_5.done" ]; then | ||
simu_trf.py -i mb.EVT.root -o mb.HIT.root -nt 2 | ||
touch stage_5.done | ||
fi | ||
|
||
# stage 6 | ||
if [ ! -f "stage_6.done" ]; then | ||
merge_trf.py -i Zee.HIT.root -p mb.HIT.root -o Zee.merged.HIT.root | ||
touch stage_6.done | ||
fi | ||
|
||
# stage 7 | ||
if [ ! -f "stage_7.done" ]; then | ||
digit_trf.py -i Zee.HIT.root -o Zee.ESD.root | ||
touch stage_7.done | ||
fi | ||
|
||
# stage 8 | ||
if [ ! -f "stage_8.done" ]; then | ||
reco_trf.py -i Zee.ESD.root -o Zee.AOD.root | ||
touch stage_8.done | ||
fi | ||
|
||
cd $place | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.