forked from alisw/AliPhysics
-
Notifications
You must be signed in to change notification settings - Fork 0
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 alisw#19990 from Nikolajal/master
Added mult Eta05, generalisation of variables and EPOS 7TeV Generator script
- Loading branch information
Showing
4 changed files
with
87 additions
and
43 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,23 @@ | ||
#!/bin/bash | ||
#edited by [email protected] | ||
set -e | ||
|
||
if [[ $# -lt 1 ]]; then | ||
echo "You must specify at least where to write output to as first parameter." | ||
exit -1 | ||
fi | ||
|
||
echo "running in `pwd`, writing HepMC to $1" | ||
|
||
# prepare environment | ||
source /cvmfs/alice.cern.ch/etc/login.sh | ||
eval $(alienv printenv CRMC::v1.5.4-3) | ||
|
||
# force path to requested output | ||
sed -e s#__CRMC_BASEDIR__#"$CRMC_ROOT"# ${ALICE_PHYSICS}/PWG/MCLEGO/CRMC/crmc_template.param > crmc.param | ||
|
||
# ${ALICE_PHYSICS}/PWG/MCLEGO/CRMC/crmc_template.param > crmc.param | ||
# ${ALICE_PHYSICS}/PWGLF/CommonUtils/MConthefly/macros/crmc_template.param > crmc.param | ||
|
||
# run CRMC | ||
crmc -o hepmc -p 3500 -P-3500 -n 10000000 -m 0 -f $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
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