Giter VIP home page Giter VIP logo

eventproducer's Introduction

EventProducer

This package is used to centrally produced events for FCC-hh, HE-LHC at a center of mass of 100 and 27TeV respectively and for FCC-ee. Any other future collider can also be supported by this framework. In order to use it, please get in contact with [email protected] as running this package requieres specific rights.

Table of contents

Clone and initialisation

If you do not attempt to contribute to the repository, simply clone it:

git clone [email protected]:FCC-hh-framework/EventProducer.git

If you aim at contributing to the repository, you need to fork and then clone the forked repository:

git clone [email protected]:YOURGITUSERNAME/EventProducer.git

Then initialise:

source ./init.sh

Generate LHE files from gripacks

To send jobs starting from a gridpack that does not exist but that you have produced, do the following:

  • place gridpack on eos
    • for FCC /eos/experiment/fcc/hh/generation/gridpacks/
    • for HELHC /eos/experiment/fcc/helhc/generation/gridpacks/
  • if the gridpack is from Madgraph, name it mg_process (and call option gp_mg'''), if from powheg please name it pw_process(and call optiongp_pw'''),
  • add to config/param_FCC.py or config/param_HELHC.py an entry corresponding to the gridpack name in the gridpacklist list, depending on the study.

If the gridpack already exists or has been properly added to the param, then simply run:

python bin/run.py --FCC/HELHC --LHE --send --condor --typelhe gp -p <process> -n <nevents> -N <njobs> -q <queue>

example to send 10 jobs of 10 000 events of di-electron events with Mll> 2TeV using longlunch queue of HTCondor for HELHC:

python bin/run.py --HELHC --LHE --send --condor --typelhe gp -p mg_pp_ee_lo -n 10000 -N 10 -q longlunch

The options --ncpus and --priority can also be specified to increase the numbers of cpus on the cluster and to change the priority queue.

Generate LHE files directly from MG5

To send jobs directly from MG5, you need a configuration file (see in examples directory *.mg5) and, optionally:

  • a cuts.f file (containing additional cuts)
  • a model (see in models directory for instance)

As before, you need to add the process to the config/param_FCC.py file. Thn you can run with the following command:

python bin/run.py --FCC --LHE --send --condor --typelhe mg -p mg_pp_hh_test --mg5card mg5/examples/pp_hh.mg5 --model mg5/models/loop_sm_hh.tar -N 2 -n 10000 -q workday  --memory 16000. --disk 8000.

The options --ncpus and --priority can also be specified to increase the numbers of cpus on the cluster and to change the priority queue.

Generate FCCSW files from the LHE and decay with Pyhtia8

  1. if you want to let pythia decay without specifiying anything, you can use the default card, but if you have requested extra partons at matrix element, you might need to specify matching parameters to your pythia card
  2. if you want to use a specific decay, make sure that the decay you want is in decaylist and branching_ratios of the param
  3. then create appropriate pythia8 card, by appending standard card with decay syntax if needed and add it to the proper directory, example:
/eos/experiment/fcc/hh/utils/pythiacards/p8_pp_ttz_5f_znunu.cmd
  1. Run jobs:
python bin/run.py --FCC/HELHC --reco --send --type lhep8 --condor -p <process> -N <njobs> -q <queue> --version <version>

Example produce 10 jobs of FCC Delphes events of ttz decaying the Z to neutrinos. :

python bin/run.py --FCC --reco --send --type lhep8 --condor -p mg_pp_ttz_5f -N 10 -q workday --version fcc_v02 --decay znunu

Please note that the decay in pythia is optional, and that there is no need to specify the number of events to run on as it will by default run over all the events present in the LHE file

The options --ncpus and --priority can also be specified to increase the numbers of cpus on the cluster and to change the priority queue.

Generate FCCSW files from Pythia8

The Pythia8 manual is available here: http://home.thep.lu.se/~torbjorn/pythia81html/Welcome.html

  1. Define process in pythialist in the param corresponding to your job flavour
  2. Write Pythia8 process card and put it in: /eos/experiment/fcc/hh/utils/pythiacards/ or /eos/experiment/fcc/helhc/utils/pythiacards/ or /eos/experiment/fcc/ee/utils/pythiacards/

exemple p8_pp_Zprime_10TeV_ttbar.cmd

  1. send jobs
python bin/run.py --FCC/HELHC/FCCee --reco --send --type p8 --condor -p <process>  --pycard <pythia_card> -n <nevents> -N <njobs> -q <queue> --version <version>

Example produce 1 job of 10000 events of Z' to ttbar at HE-LHC

python bin/run.py --HELHC --reco --send --type p8 --condor -p p8_pp_Zprime_10TeV_ttbar -n 10000 -N 1 -q workday --version helhc_v01

Example produce 1 job of 10000 events of ZH at FCC-ee 240GeV

python bin/run.py --FCCee --reco --send -p p8_ee_ZH_ecm240 -n 10000 --type p8 -N 1 --condor -q longlunch --version fcc_v01

The options --ncpus and --priority can also be specified to increase the numbers of cpus on the cluster and to change the priority queue.

Important: If --pycard option not specified, this step wil lrun with the default pythia8 card, that does not include specific decays nor specific matching/merging parameters.

Expert mode

The following commands should be run with care, as they update the database, webapge etc... They run every two hours with crontab, thus you will eventually know when your sample is ready to be used. The --force option is used to force the script to run as to optimze running time, processes that have not been flagged will not be checked.

Updating the database

  1. First one need to check the eos directories that have been populated with new files. Example for LHE:
python bin/run.py --HELHC --LHE --checkeos [--process process] [--force]

Example for Delphes events:

python bin/run.py --HELHC --reco --checkeos --version helhc_v01 [--process process] [--force]
  1. Second one need to check the quality of the files that have been produced. Example for LHE:
python bin/run.py --HELHC --LHE --check [--process process] [--force]

Example for Delphes events:

python bin/run.py --HELHC --reco --check --version helhc_v01 [--process process] [--force]
  1. Then the checked files needs to be merged: Example for LHE:
python bin/run.py --HELHC --LHE --merge [--process process] [--force]

Example for Delphes events:

python bin/run.py --HELHC --reco --merge --version helhc_v01 [--process process] [--force]

Cleaning bad jobs

To clean jobs that are flagged as bad, the following command can be used for LHE:

python bin/run.py --HELHC --LHE --clean [--process process]

and for Delphes

python bin/run.py --HELHC --reco --clean --version helhc_v01 [--process process]

As the code checks the files that are in the end written on eos, we need to clean also old jobs that don't produced outputs 3 days after they started. To do so run the following command for LHE

python bin/run.py --HELHC --LHE --cleanold [--process process]

and for Delphes

python bin/run.py --HELHC --reco --cleanold --version helhc_v01 [--process process]

If you want to completly remove a process, the following command can be used with care for LHE:

python bin/run.py --HELHC --LHE --remove --process process 

and for Delphes

python bin/run.py --HELHC --reco --remove --process process --version helhc_v01

Update the webpage

The webpage can be updated after the files have been checked and merged by running for LHE

python bin/run.py --HELHC --LHE --web

and for Delphes

python bin/run.py --HELHC --reco --web --version helhc_v01

Create the sample list for analyses

To create the list of samples to be used in physics analyses

python bin/run.py --FCC --reco --sample --version fcc_v02

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.