-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from jpata/review_fixes
Review fixes
- Loading branch information
Showing
156 changed files
with
843 additions
and
35 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
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
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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,15 @@ | ||
#!/bin/bash | ||
|
||
source /opt/hepsim.sh | ||
export LD_LIBRARY_PATH=/opt/hepsim/delphes:$LD_LIBRARY_PATH | ||
export ROOT_INCLUDE_PATH=/opt/hepsim/delphes:/opt/hepsim/delphes/external | ||
|
||
XDIR="out/pythia8_qcd" | ||
mkdir -p $XDIR | ||
#rm -f $XDIR/*.pkl | ||
|
||
for NUM in `seq 10 10`; do | ||
INROOT="tev14_pythia8_qcd_$NUM.root" | ||
OUTPKL="tev14_pythia8_qcd_$NUM.pkl.bz2" | ||
python ntuplizer.py $XDIR/$INROOT $XDIR/$OUTPKL | ||
done |
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 |
---|---|---|
|
@@ -13,5 +13,6 @@ mkdir -p $XDIR | |
for i in `seq 0 9`; do | ||
nohup ./run_sim_seed.sh $i & | ||
done | ||
nohup ./run_sim_seed_qcd.sh 10 & | ||
|
||
wait |
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,18 @@ | ||
#!/bin/bash | ||
set +e | ||
|
||
NUM=$1 | ||
|
||
XDIR="out/pythia8_qcd" | ||
mkdir -p $XDIR | ||
OUTROOT="tev14_pythia8_qcd_$NUM.root" | ||
OUT="tev14_pythia8_qcd_$NUM.promc" | ||
LOG="logfile_$NUM.txt" | ||
|
||
rm -f $XDIR/$OUTROOT $XDIR/$OUT | ||
|
||
source /opt/hepsim.sh | ||
cp tev14_pythia8_qcd.py tev14_pythia8_qcd.py.${NUM} | ||
echo "Random:seed=${NUM}" >> tev14_pythia8_.py.${NUM} | ||
./main.exe tev14_pythia8_qcd.py.${NUM} $XDIR/$OUT > $XDIR/$LOG 2>&1 | ||
/opt/hepsim/delphes-local/DelphesProMC delphes_card_CMS_PileUp.tcl $XDIR/$OUTROOT $XDIR/$OUT >> $XDIR/$LOG 2>&1 |
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,57 @@ | ||
# based on Pythia8_A14_NNPDF23LO_Common.py | ||
# and https://atlaswww.hep.anl.gov/hepsim/info.php?item=18 | ||
# HepSim Pythia setting | ||
# J. Duarte and J. Pata | ||
# apply particle slim? | ||
ApplyParticleSlim=off | ||
# | ||
# Collision settings | ||
EventsNumber=5000 | ||
Random:setSeed = on | ||
Random:seed = 0 | ||
Beams:idA = 2212 | ||
Beams:idB = 2212 | ||
Beams:eCM = 14000. | ||
#physics processes | ||
HardQCD:all = on | ||
PhaseSpace:pTHatMin = 20 | ||
# set top quark mass to CMS value of 172.5 | ||
6:m0 = 172.5 | ||
|
||
# | ||
#PDF:pSet = LHAPDF6:MSTW2008lo68cl.LHgrid | ||
PDF:pSet = LHAPDF6:NNPDF23_lo_as_0130_qed | ||
PDF:extrapolate = on | ||
|
||
Tune:ee = 7 | ||
Tune:pp = 14 | ||
# PDF:useLHAPDF = on | ||
SpaceShower:rapidityOrder = on | ||
SigmaProcess:alphaSvalue = 0.140 | ||
SpaceShower:pT0Ref = 1.56 | ||
SpaceShower:pTmaxFudge = 0.91 | ||
SpaceShower:pTdampFudge = 1.05 | ||
SpaceShower:alphaSvalue = 0.127 | ||
TimeShower:alphaSvalue = 0.127 | ||
BeamRemnants:primordialKThard = 1.88 | ||
MultipartonInteractions:pT0Ref = 2.09 | ||
MultipartonInteractions:alphaSvalue = 0.126 | ||
# BeamRemnants:reconnectRange = 1.71 | ||
|
||
#Pythia settings | ||
#PhaseSpace:mHatMin = 100. | ||
#PhaseSpace:mHatMax = 10000 | ||
#PhaseSpace:pTHatMin = 40 | ||
#PhaseSpace:pTHatMax = 4000 | ||
#set K_S, Lambda stable | ||
ParticleDecays:limitTau0 = on | ||
#Makes particles with c*tau>10 mm stable | ||
ParticleDecays:tau0Max = 10 | ||
|
||
# fill high-pT tail and add weights to events | ||
#PhaseSpace:bias2Selection = on | ||
#PhaseSpace:bias2SelectionPow = 5.0 | ||
|
||
# color reconnection | ||
ColourReconnection:reconnect=on | ||
ColourReconnection:range=1.71 |
Oops, something went wrong.