-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add some scripts that pipe specific gevgen channels through gdb
- Loading branch information
Showing
2 changed files
with
42 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/sh | ||
|
||
# Generic SN run... | ||
|
||
NUMEVT=1000 | ||
if [ $# -gt 0 ]; then | ||
NUMEVT=$1 | ||
fi | ||
|
||
# http://pdg.lbl.gov/2007/reviews/montecarlorpp.pdf | ||
# http://pdg.lbl.gov/2011/mcdata/mc_particle_id_contents.html | ||
# http://genie.hepforge.org/doxygen/html/PDGCodes_8h_source.html | ||
CARBON="1000060120" | ||
OXYGEN="1000080160" | ||
|
||
TARGET=$OXYGEN | ||
|
||
gdb -tui --args gevgen -n $NUMEVT -p -12 -t $TARGET -e 2 -r 101 \ | ||
--seed 2989819 --cross-sections $XSECSPLINEDIR/gxspl-vA-v2.8.0.xml \ | ||
--event-generator-list CCQE | ||
|
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,21 @@ | ||
#!/bin/sh | ||
|
||
# Generic SN run... | ||
|
||
NUMEVT=5 | ||
if [ $# -gt 0 ]; then | ||
NUMEVT=$1 | ||
fi | ||
|
||
# http://pdg.lbl.gov/2007/reviews/montecarlorpp.pdf | ||
# http://pdg.lbl.gov/2011/mcdata/mc_particle_id_contents.html | ||
# http://genie.hepforge.org/doxygen/html/PDGCodes_8h_source.html | ||
CARBON="1000060120" | ||
OXYGEN="1000080160" | ||
|
||
TARGET=$OXYGEN | ||
|
||
gdb -tui --args gevgen -n $NUMEVT -p -12 -t $TARGET -e 0.02 -r 101 \ | ||
--seed 2989819 --cross-sections $XSECSPLINEDIR/gxspl-vA-v2.8.0.xml \ | ||
--event-generator-list VLE | ||
|