Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 13 additions & 66 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,66 +1,13 @@
# current

2021-10-06 Jong Soo Kim <jsk@th.physik.uni-bonn.de>

~ added added atlas_1502_05686, atlas_2103_11684, atlas_2004_10894, atlas_2106_09609
atlas_1911_06660

2021-08-23 Krzysztof Rolbiecki <krolb@fuw.edu.pl>

~ added atlas_phys_2014_007

2021-08-20 Krzysztof Rolbiecki <krolb@fuw.edu.pl>

~ added atlas_1807_07447

2021-07-16 Krzysztof Rolbiecki <krolb@fuw.edu.pl>

~ added atlas_1911_12606

2021-03-14 Arran Freegard <acf1g14@soton.ac.uk>

~ added atlas_1403_5294 and atlas_higg_2013_03

2021-02-12 Krzysztof Rolbiecki <krolb@fuw.edu.pl>

~ added atlas_1908_03122

2020-11-03 Krzysztof Rolbiecki <krolb@fuw.edu.pl>

~ added atlas_conf_2018_041

2021-02-10 Krzysztof Rolbiecki <krolb@fuw.edu.pl>

~ added atlas_2101_01629

020-04-08 Krzysztof Rolbiecki <krolb@fuw.edu.pl>

~ added atlas_conf_2020_048

2020-09-27 Manimala Chakraborti, Ipsita Saha

~ added atlas_1803_02762

2020-09-27 Manimala Chakraborti, Ipsita Saha

~ added atlas_conf_2019_020

2020-09-29 Krzysztof Rolbiecki <krolb@fuw.edu.pl>

~ added atlas_2004_14060

2020-04-08 Krzysztof Rolbiecki <krolb@fuw.edu.pl>

~ removed python Root check due to a change in naming conventions (python->pyroot) around v6.20

2019-11-28 Krzysztof Rolbiecki <krolb@fuw.edu.pl>

~ added atlas_conf_2019_040

2019-11-22 Krzysztof Rolbiecki <krolb@fuw.edu.pl>

~ added atlas_1909_08457

2019-10-03 Krzysztof Rolbiecki <krolb@fuw.edu.pl>

~ added atlas_1706_03731
This version we modified the code to deal with the case that param_card.dat is generated by SPheno. Sometimes it can't be directly used in MG5 and it needs "update missing" to update the parameter file and make MG5 work smoothly.

Installation Guide
Environment Setup:
1. Python2.7.X(X>3)
2. Delphes 3.4.2(Delphes3.5.0 will not work). When installing Delphes 3.4.2, need to modify Delphes/validation/DelphesValidation.cpp, add "#include TF1.h" and then make
3. Pythia 8245(Pythia 8.3 will not work)

Steps:
1. git clone [website]
2. autoreconf ----> If can't autoreconf, $export ACLOCAL_PATH="/usr/share/aclocal/:/usr/local/share/aclocal"
3. ./configure
4. make -j4
2 changes: 1 addition & 1 deletion tools/fritz/include/pythiahandler/MG5toPy8.h
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ bool LHAupMadgraph::launch() {
if (!pythia) return false;
fstream config((dir + "/launch.py").c_str(), ios::out);
if (!override[Launch]) {
config << "launch " << dir << " -n run \n";
config << "launch " << dir << " -n run \nupdate missing\n";
}

// Write the user settings.
Expand Down