├── .gitignore ├── LHEF.h ├── README.md ├── RivetPlugins ├── ATLAS_2019_I1734263.cc ├── ATLAS_2019_I1734263.yoda ├── CMS_2019_I1744604.cc ├── CMS_2019_I1744604.yoda ├── CMS_2021_PAS_SMP_20_005.cc ├── CMS_2021_PAS_SMP_20_005.yoda ├── HiggsTemplateCrossSections.cc ├── HiggsTemplateCrossSections.h ├── HiggsTemplateCrossSectionsStage1.cc ├── HiggsTemplateCrossSectionsStage1.h ├── HiggsTemplateCrossSectionsStage1p1.cc ├── HiggsTemplateCrossSectionsStage1p1.h ├── ZvvTemplateCrossSections.cc └── ZvvTemplateCrossSections.yoda ├── cards ├── WG-LO │ ├── README.md │ ├── config.json │ ├── param_card.dat │ ├── proc_card.dat │ ├── pythia8_card.dat │ ├── reweight_card.dat │ └── run_card.dat ├── WH_lep-HEL-hig-19-005 │ ├── proc_card.dat │ └── run_card.dat ├── WpWptj-SMEFTsim-madspin │ ├── madspin_card.dat │ ├── proc_card.dat │ └── run_card.dat ├── ZH_lep-HEL-hig-19-005 │ ├── proc_card.dat │ └── run_card.dat ├── ggF-HEL-hig-19-005 │ ├── proc_card.dat │ └── run_card.dat ├── ggF-HEL │ ├── proc_card.dat │ ├── pythia8_card.dat │ └── run_card.dat ├── ggF-SMEFTatNLO-0jet-loop │ ├── param_card.dat │ ├── proc_card.dat │ ├── pythia8_card.dat │ ├── reweight_card.dat │ └── run_card.dat ├── ggF-SMEFTatNLO-0jet-tree-loop │ ├── param_card.dat │ ├── proc_card.dat │ ├── pythia8_card.dat │ ├── reweight_card.dat │ └── run_card.dat ├── ggF-SMEFTatNLO-0jet-tree │ ├── param_card.dat │ ├── proc_card.dat │ ├── pythia8_card.dat │ ├── reweight_card.dat │ └── run_card.dat ├── ggF-SMEFTatNLO-1jet-loop │ ├── param_card.dat │ ├── proc_card.dat │ ├── pythia8_card.dat │ ├── reweight_card.dat │ └── run_card.dat ├── ggF-SMEFTatNLO-1jet-tree-loop │ ├── param_card.dat │ ├── proc_card.dat │ ├── pythia8_card.dat │ ├── reweight_card.dat │ └── run_card.dat ├── ggF-SMEFTatNLO-1jet-tree │ ├── param_card.dat │ ├── proc_card.dat │ ├── pythia8_card.dat │ ├── reweight_card.dat │ └── run_card.dat ├── ggF-SMEFTatNLO-2jet-loop │ ├── param_card.dat │ ├── proc_card.dat │ ├── pythia8_card.dat │ ├── reweight_card.dat │ └── run_card.dat ├── ggF-SMEFTatNLO-2jet-tree-loop │ ├── param_card.dat │ ├── proc_card.dat │ ├── pythia8_card.dat │ ├── reweight_card.dat │ └── run_card.dat ├── ggF-SMEFTatNLO-2jet-tree │ ├── param_card.dat │ ├── proc_card.dat │ ├── pythia8_card.dat │ ├── reweight_card.dat │ └── run_card.dat ├── ggF-SMEFTatNLO-tree │ ├── param_card.dat │ ├── proc_card.dat │ ├── pythia8_card.dat │ ├── reweight_card.dat │ └── run_card.dat ├── ggF-SMEFTatNLO │ ├── param_card.dat │ ├── proc_card.dat │ ├── pythia8_card.dat │ ├── reweight_card.dat │ └── run_card.dat ├── ggF-SMEFTsim │ ├── proc_card.dat │ ├── pythia8_card.dat │ └── run_card.dat ├── qqH-HEL-hig-19-005 │ ├── proc_card.dat │ └── run_card.dat ├── qqH │ └── proc_card.dat ├── ttH-HEL-hig-19-005 │ ├── proc_card.dat │ └── run_card.dat ├── zh-HEL │ ├── proc_card.dat │ ├── pythia8_card.dat │ └── run_card.dat └── zh-SMEFTsim3 │ ├── param_card.dat │ ├── proc_card.dat │ ├── pythia8_card.dat │ ├── reweight_card.dat │ └── run_card.dat ├── docs └── HiggsGluonFusion.md ├── env.sh ├── pdgid_to_evtgenname.csv ├── pyrightconfig.json ├── resources ├── STXS_bin_labels.json ├── docs │ ├── EFT2Obs.jpeg │ ├── HiggsTemplateCrossSections_pT_V.png │ ├── mu_eqn.png │ ├── sigma_eqn.png │ ├── tex_table.png │ └── weight_table.png ├── pythia8 │ └── cms_default_2018.dat ├── translate_root.json └── translate_tex.json ├── scripts ├── auto_detect_operators.py ├── combineGGF.py ├── eftscaling.py ├── event.py ├── get_scaling.py ├── jobs.py ├── launch_gridpack.py ├── launch_gridpack_nlo.py ├── launch_jobs.py ├── lhe_interface.py ├── lhereader │ └── __init__.py ├── makePlot.py ├── make_config.py ├── make_gridpack.sh ├── make_gridpack_NLO.sh ├── make_param_card.py ├── make_reweight_card.py ├── make_standalone.py ├── plotting.py ├── produce_plots_lhe.py ├── reading_lhe.py ├── run_NLO.sh ├── run_gridpack.py ├── rw_module_tester.py ├── setup_mg5.sh ├── setup_model_HEL.sh ├── setup_model_SMEFTatNLO.sh ├── setup_model_SMEFTsim.sh ├── setup_model_SMEFTsim3.sh ├── setup_process.sh ├── setup_process_NLO.sh ├── setup_process_standalone.sh ├── setup_rivet.sh ├── setup_rivet_plugins.sh ├── standalone_reweight.py └── tools.py └── setup ├── HEL_fix_MZ__parameters.py.patch ├── MG5aMC_PY8_interface.cc.patch ├── Pythia82_hep.cc.patch ├── SMEFTatNLO__restrict_ggFshape.dat ├── SMEFTsim_A_MFV_MwScheme_UFO_v2_1__restrict_test.dat ├── WeightCorrector.h ├── corrector_MG5aMC_PY8_interface.cc.patch ├── helas_objects.py.patch ├── master_interface.py.patch ├── reweight_interface.py.patch └── shower_template.sh.patch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/.gitignore -------------------------------------------------------------------------------- /LHEF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/LHEF.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/README.md -------------------------------------------------------------------------------- /RivetPlugins/ATLAS_2019_I1734263.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/RivetPlugins/ATLAS_2019_I1734263.cc -------------------------------------------------------------------------------- /RivetPlugins/ATLAS_2019_I1734263.yoda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/RivetPlugins/ATLAS_2019_I1734263.yoda -------------------------------------------------------------------------------- /RivetPlugins/CMS_2019_I1744604.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/RivetPlugins/CMS_2019_I1744604.cc -------------------------------------------------------------------------------- /RivetPlugins/CMS_2019_I1744604.yoda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/RivetPlugins/CMS_2019_I1744604.yoda -------------------------------------------------------------------------------- /RivetPlugins/CMS_2021_PAS_SMP_20_005.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/RivetPlugins/CMS_2021_PAS_SMP_20_005.cc -------------------------------------------------------------------------------- /RivetPlugins/CMS_2021_PAS_SMP_20_005.yoda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/RivetPlugins/CMS_2021_PAS_SMP_20_005.yoda -------------------------------------------------------------------------------- /RivetPlugins/HiggsTemplateCrossSections.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/RivetPlugins/HiggsTemplateCrossSections.cc -------------------------------------------------------------------------------- /RivetPlugins/HiggsTemplateCrossSections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/RivetPlugins/HiggsTemplateCrossSections.h -------------------------------------------------------------------------------- /RivetPlugins/HiggsTemplateCrossSectionsStage1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/RivetPlugins/HiggsTemplateCrossSectionsStage1.cc -------------------------------------------------------------------------------- /RivetPlugins/HiggsTemplateCrossSectionsStage1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/RivetPlugins/HiggsTemplateCrossSectionsStage1.h -------------------------------------------------------------------------------- /RivetPlugins/HiggsTemplateCrossSectionsStage1p1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/RivetPlugins/HiggsTemplateCrossSectionsStage1p1.cc -------------------------------------------------------------------------------- /RivetPlugins/HiggsTemplateCrossSectionsStage1p1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/RivetPlugins/HiggsTemplateCrossSectionsStage1p1.h -------------------------------------------------------------------------------- /RivetPlugins/ZvvTemplateCrossSections.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/RivetPlugins/ZvvTemplateCrossSections.cc -------------------------------------------------------------------------------- /RivetPlugins/ZvvTemplateCrossSections.yoda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/RivetPlugins/ZvvTemplateCrossSections.yoda -------------------------------------------------------------------------------- /cards/WG-LO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/WG-LO/README.md -------------------------------------------------------------------------------- /cards/WG-LO/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/WG-LO/config.json -------------------------------------------------------------------------------- /cards/WG-LO/param_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/WG-LO/param_card.dat -------------------------------------------------------------------------------- /cards/WG-LO/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/WG-LO/proc_card.dat -------------------------------------------------------------------------------- /cards/WG-LO/pythia8_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/WG-LO/pythia8_card.dat -------------------------------------------------------------------------------- /cards/WG-LO/reweight_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/WG-LO/reweight_card.dat -------------------------------------------------------------------------------- /cards/WG-LO/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/WG-LO/run_card.dat -------------------------------------------------------------------------------- /cards/WH_lep-HEL-hig-19-005/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/WH_lep-HEL-hig-19-005/proc_card.dat -------------------------------------------------------------------------------- /cards/WH_lep-HEL-hig-19-005/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/WH_lep-HEL-hig-19-005/run_card.dat -------------------------------------------------------------------------------- /cards/WpWptj-SMEFTsim-madspin/madspin_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/WpWptj-SMEFTsim-madspin/madspin_card.dat -------------------------------------------------------------------------------- /cards/WpWptj-SMEFTsim-madspin/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/WpWptj-SMEFTsim-madspin/proc_card.dat -------------------------------------------------------------------------------- /cards/WpWptj-SMEFTsim-madspin/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/WpWptj-SMEFTsim-madspin/run_card.dat -------------------------------------------------------------------------------- /cards/ZH_lep-HEL-hig-19-005/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ZH_lep-HEL-hig-19-005/proc_card.dat -------------------------------------------------------------------------------- /cards/ZH_lep-HEL-hig-19-005/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ZH_lep-HEL-hig-19-005/run_card.dat -------------------------------------------------------------------------------- /cards/ggF-HEL-hig-19-005/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-HEL-hig-19-005/proc_card.dat -------------------------------------------------------------------------------- /cards/ggF-HEL-hig-19-005/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-HEL-hig-19-005/run_card.dat -------------------------------------------------------------------------------- /cards/ggF-HEL/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-HEL/proc_card.dat -------------------------------------------------------------------------------- /cards/ggF-HEL/pythia8_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-HEL/pythia8_card.dat -------------------------------------------------------------------------------- /cards/ggF-HEL/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-HEL/run_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-0jet-loop/param_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-0jet-loop/param_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-0jet-loop/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-0jet-loop/proc_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-0jet-loop/pythia8_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-0jet-loop/pythia8_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-0jet-loop/reweight_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-0jet-loop/reweight_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-0jet-loop/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-0jet-loop/run_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-0jet-tree-loop/param_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-0jet-tree-loop/param_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-0jet-tree-loop/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-0jet-tree-loop/proc_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-0jet-tree-loop/pythia8_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-0jet-tree-loop/pythia8_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-0jet-tree-loop/reweight_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-0jet-tree-loop/reweight_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-0jet-tree-loop/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-0jet-tree-loop/run_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-0jet-tree/param_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-0jet-tree/param_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-0jet-tree/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-0jet-tree/proc_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-0jet-tree/pythia8_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-0jet-tree/pythia8_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-0jet-tree/reweight_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-0jet-tree/reweight_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-0jet-tree/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-0jet-tree/run_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-1jet-loop/param_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-1jet-loop/param_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-1jet-loop/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-1jet-loop/proc_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-1jet-loop/pythia8_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-1jet-loop/pythia8_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-1jet-loop/reweight_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-1jet-loop/reweight_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-1jet-loop/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-1jet-loop/run_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-1jet-tree-loop/param_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-1jet-tree-loop/param_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-1jet-tree-loop/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-1jet-tree-loop/proc_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-1jet-tree-loop/pythia8_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-1jet-tree-loop/pythia8_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-1jet-tree-loop/reweight_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-1jet-tree-loop/reweight_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-1jet-tree-loop/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-1jet-tree-loop/run_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-1jet-tree/param_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-1jet-tree/param_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-1jet-tree/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-1jet-tree/proc_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-1jet-tree/pythia8_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-1jet-tree/pythia8_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-1jet-tree/reweight_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-1jet-tree/reweight_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-1jet-tree/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-1jet-tree/run_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-2jet-loop/param_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-2jet-loop/param_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-2jet-loop/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-2jet-loop/proc_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-2jet-loop/pythia8_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-2jet-loop/pythia8_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-2jet-loop/reweight_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-2jet-loop/reweight_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-2jet-loop/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-2jet-loop/run_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-2jet-tree-loop/param_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-2jet-tree-loop/param_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-2jet-tree-loop/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-2jet-tree-loop/proc_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-2jet-tree-loop/pythia8_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-2jet-tree-loop/pythia8_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-2jet-tree-loop/reweight_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-2jet-tree-loop/reweight_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-2jet-tree-loop/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-2jet-tree-loop/run_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-2jet-tree/param_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-2jet-tree/param_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-2jet-tree/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-2jet-tree/proc_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-2jet-tree/pythia8_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-2jet-tree/pythia8_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-2jet-tree/reweight_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-2jet-tree/reweight_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-2jet-tree/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-2jet-tree/run_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-tree/param_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-tree/param_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-tree/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-tree/proc_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-tree/pythia8_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-tree/pythia8_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-tree/reweight_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-tree/reweight_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO-tree/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO-tree/run_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO/param_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO/param_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO/proc_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO/pythia8_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO/pythia8_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO/reweight_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO/reweight_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTatNLO/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTatNLO/run_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTsim/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTsim/proc_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTsim/pythia8_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTsim/pythia8_card.dat -------------------------------------------------------------------------------- /cards/ggF-SMEFTsim/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ggF-SMEFTsim/run_card.dat -------------------------------------------------------------------------------- /cards/qqH-HEL-hig-19-005/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/qqH-HEL-hig-19-005/proc_card.dat -------------------------------------------------------------------------------- /cards/qqH-HEL-hig-19-005/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/qqH-HEL-hig-19-005/run_card.dat -------------------------------------------------------------------------------- /cards/qqH/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/qqH/proc_card.dat -------------------------------------------------------------------------------- /cards/ttH-HEL-hig-19-005/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ttH-HEL-hig-19-005/proc_card.dat -------------------------------------------------------------------------------- /cards/ttH-HEL-hig-19-005/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/ttH-HEL-hig-19-005/run_card.dat -------------------------------------------------------------------------------- /cards/zh-HEL/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/zh-HEL/proc_card.dat -------------------------------------------------------------------------------- /cards/zh-HEL/pythia8_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/zh-HEL/pythia8_card.dat -------------------------------------------------------------------------------- /cards/zh-HEL/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/zh-HEL/run_card.dat -------------------------------------------------------------------------------- /cards/zh-SMEFTsim3/param_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/zh-SMEFTsim3/param_card.dat -------------------------------------------------------------------------------- /cards/zh-SMEFTsim3/proc_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/zh-SMEFTsim3/proc_card.dat -------------------------------------------------------------------------------- /cards/zh-SMEFTsim3/pythia8_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/zh-SMEFTsim3/pythia8_card.dat -------------------------------------------------------------------------------- /cards/zh-SMEFTsim3/reweight_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/zh-SMEFTsim3/reweight_card.dat -------------------------------------------------------------------------------- /cards/zh-SMEFTsim3/run_card.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/cards/zh-SMEFTsim3/run_card.dat -------------------------------------------------------------------------------- /docs/HiggsGluonFusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/docs/HiggsGluonFusion.md -------------------------------------------------------------------------------- /env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/env.sh -------------------------------------------------------------------------------- /pdgid_to_evtgenname.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/pdgid_to_evtgenname.csv -------------------------------------------------------------------------------- /pyrightconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "include": ["scripts"] 3 | } 4 | -------------------------------------------------------------------------------- /resources/STXS_bin_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/resources/STXS_bin_labels.json -------------------------------------------------------------------------------- /resources/docs/EFT2Obs.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/resources/docs/EFT2Obs.jpeg -------------------------------------------------------------------------------- /resources/docs/HiggsTemplateCrossSections_pT_V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/resources/docs/HiggsTemplateCrossSections_pT_V.png -------------------------------------------------------------------------------- /resources/docs/mu_eqn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/resources/docs/mu_eqn.png -------------------------------------------------------------------------------- /resources/docs/sigma_eqn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/resources/docs/sigma_eqn.png -------------------------------------------------------------------------------- /resources/docs/tex_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/resources/docs/tex_table.png -------------------------------------------------------------------------------- /resources/docs/weight_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/resources/docs/weight_table.png -------------------------------------------------------------------------------- /resources/pythia8/cms_default_2018.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/resources/pythia8/cms_default_2018.dat -------------------------------------------------------------------------------- /resources/translate_root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/resources/translate_root.json -------------------------------------------------------------------------------- /resources/translate_tex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/resources/translate_tex.json -------------------------------------------------------------------------------- /scripts/auto_detect_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/auto_detect_operators.py -------------------------------------------------------------------------------- /scripts/combineGGF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/combineGGF.py -------------------------------------------------------------------------------- /scripts/eftscaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/eftscaling.py -------------------------------------------------------------------------------- /scripts/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/event.py -------------------------------------------------------------------------------- /scripts/get_scaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/get_scaling.py -------------------------------------------------------------------------------- /scripts/jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/jobs.py -------------------------------------------------------------------------------- /scripts/launch_gridpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/launch_gridpack.py -------------------------------------------------------------------------------- /scripts/launch_gridpack_nlo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/launch_gridpack_nlo.py -------------------------------------------------------------------------------- /scripts/launch_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/launch_jobs.py -------------------------------------------------------------------------------- /scripts/lhe_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/lhe_interface.py -------------------------------------------------------------------------------- /scripts/lhereader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/lhereader/__init__.py -------------------------------------------------------------------------------- /scripts/makePlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/makePlot.py -------------------------------------------------------------------------------- /scripts/make_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/make_config.py -------------------------------------------------------------------------------- /scripts/make_gridpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/make_gridpack.sh -------------------------------------------------------------------------------- /scripts/make_gridpack_NLO.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/make_gridpack_NLO.sh -------------------------------------------------------------------------------- /scripts/make_param_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/make_param_card.py -------------------------------------------------------------------------------- /scripts/make_reweight_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/make_reweight_card.py -------------------------------------------------------------------------------- /scripts/make_standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/make_standalone.py -------------------------------------------------------------------------------- /scripts/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/plotting.py -------------------------------------------------------------------------------- /scripts/produce_plots_lhe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/produce_plots_lhe.py -------------------------------------------------------------------------------- /scripts/reading_lhe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/reading_lhe.py -------------------------------------------------------------------------------- /scripts/run_NLO.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/run_NLO.sh -------------------------------------------------------------------------------- /scripts/run_gridpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/run_gridpack.py -------------------------------------------------------------------------------- /scripts/rw_module_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/rw_module_tester.py -------------------------------------------------------------------------------- /scripts/setup_mg5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/setup_mg5.sh -------------------------------------------------------------------------------- /scripts/setup_model_HEL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/setup_model_HEL.sh -------------------------------------------------------------------------------- /scripts/setup_model_SMEFTatNLO.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/setup_model_SMEFTatNLO.sh -------------------------------------------------------------------------------- /scripts/setup_model_SMEFTsim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/setup_model_SMEFTsim.sh -------------------------------------------------------------------------------- /scripts/setup_model_SMEFTsim3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/setup_model_SMEFTsim3.sh -------------------------------------------------------------------------------- /scripts/setup_process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/setup_process.sh -------------------------------------------------------------------------------- /scripts/setup_process_NLO.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/setup_process_NLO.sh -------------------------------------------------------------------------------- /scripts/setup_process_standalone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/setup_process_standalone.sh -------------------------------------------------------------------------------- /scripts/setup_rivet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/setup_rivet.sh -------------------------------------------------------------------------------- /scripts/setup_rivet_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/setup_rivet_plugins.sh -------------------------------------------------------------------------------- /scripts/standalone_reweight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/standalone_reweight.py -------------------------------------------------------------------------------- /scripts/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/scripts/tools.py -------------------------------------------------------------------------------- /setup/HEL_fix_MZ__parameters.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/setup/HEL_fix_MZ__parameters.py.patch -------------------------------------------------------------------------------- /setup/MG5aMC_PY8_interface.cc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/setup/MG5aMC_PY8_interface.cc.patch -------------------------------------------------------------------------------- /setup/Pythia82_hep.cc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/setup/Pythia82_hep.cc.patch -------------------------------------------------------------------------------- /setup/SMEFTatNLO__restrict_ggFshape.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/setup/SMEFTatNLO__restrict_ggFshape.dat -------------------------------------------------------------------------------- /setup/SMEFTsim_A_MFV_MwScheme_UFO_v2_1__restrict_test.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/setup/SMEFTsim_A_MFV_MwScheme_UFO_v2_1__restrict_test.dat -------------------------------------------------------------------------------- /setup/WeightCorrector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/setup/WeightCorrector.h -------------------------------------------------------------------------------- /setup/corrector_MG5aMC_PY8_interface.cc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/setup/corrector_MG5aMC_PY8_interface.cc.patch -------------------------------------------------------------------------------- /setup/helas_objects.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/setup/helas_objects.py.patch -------------------------------------------------------------------------------- /setup/master_interface.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/setup/master_interface.py.patch -------------------------------------------------------------------------------- /setup/reweight_interface.py.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/setup/reweight_interface.py.patch -------------------------------------------------------------------------------- /setup/shower_template.sh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ajgilbert/EFT2Obs/HEAD/setup/shower_template.sh.patch --------------------------------------------------------------------------------