Table of Contents
Delphes2 samples
Here are the links to the existing Monte Carlo samples for top-quark studies generated for the 14 TeV center-of-mass energy (pp collisions). Events were generated with the PYTHIA8 and HERWIG++ models, and processed using the Delphes 2.03 fast detector simulation.
All data are stored as ROOT files using the standard Delphes 2.0.3 output. Therefore, it is recommended to install Delphes 2.0.3 and look at the example explaining how to read such ROOT files (see the directory “Examples” inside the Delphes package).
Information about the geometry (resolutions) is given in these Delphes input files (comes with the default Delphes installation):
The output ROOT files have the truth information and the detector-level objects (jets, leptons etc).
How to download MC samples
Please read How to download the link the link
How to analyse MCs
First you need to install ROOT. Then the procedure is somewhat different depending on what Delphes version you are using, “Delphes 2.03” (production) or Delphes 3.0 (beta). Go to the Delphes web page and download the needed version. The packages contain basic examples of how to read ROOT files generated by Delphes. One example for Delphes 3.0(beta) is given in this section
Let's do some analysis using the files given on this web page. Download Delphes_V_2.0.3.tar.gz and compile it (should work on Scientific Linux 5 or 6):
wget --no-check-certificate https://cp3.irmp.ucl.ac.be/projects/delphes/raw-attachment/wiki/WikiStart/Delphes_V_2.0.3.tar.gz tar -zvxf Delphes_V_2.0.3.tar.gz cd Delphes_V_2.0.3/ make
You will see this:
The directory “Examples” contains the example source code. Let's replace it with our example program. snowmass_tutorial.tgz
mv Delphes_V_2.0.3/Examples Delphes_V_2.0.3/Examples_old cd /tmp wget --no-check-certificate https://mc.hep.anl.gov/asc/wikidoc/lib/exe/fetch.php?media=snowmass2013:snowmass_tutorial.tgz tar -zvxf snowmass_tutorial.tgz mv /tmp/snowmass_tutorial/* Delphes_V_2.0.3/ # copy the content to the Delphes installation cd Delphes_V_2.0.3/ make # recompile again
The new code which is inside “Examples” calculated some basic histograms for the top production. You can run it using the script “A_RUN”. Open it and define the path to the directory with ROOT files. The run it as “./A_RUN”. The program runs over the list of ROOT files and creates a ROOT file with histograms inside “out/” directory.
TTbar production at high pT
The generator-level settings are given below. No pile-up was included.
PYTHIA8 samples
The events were generated with this input card: analysis.ini. The luminosity info and cross section for 5000 generated events can be found here:
Get the ROOT files from the download link
Example for downloading 5 files:
python download.py 5 pythia8/ttbar650pt pythia8_ttbar_pt650
I total there are 80 files to download. This gives 80×5000=400,000 events.
HERWIG++ samples
The log file for 5000 generated events is here:
Get the ROOT files from the download link
Example for downloading 5 files:
python download.py 5 herwigpp/ttbar650pt herwigpp_ttbar_pt650
In total, there are 80 files to download. This gives 80×5000=400,000 events.
QCD (multijet) background
The total luminosity for inclusive QCD jet sample is roughly 9.6 fb-1 (for each sample, PYTHIA and HERWIG). The files are grouped in 2 directories and one should combine them to get ~9.6 fb-1.
PYTHIA8 samples
The events were generated with this input card: analysis.ini
Get the ROOT files grouped in 2 directories:
Example for downloading 5 files:
python download.py 5 pythia8/qcd650pt/run1 pythia8_qcd_pt650 python download.py 5 pythia8/qcd650pt/run2 pythia8_qcd_pt650_2
HERWIG++ samples
The MC samples were generated for inclusive jets events. The part of the log file with the cross sections is shown below (for 5000 events):
Get the ROOT files from these 2 locations:
Example for downloading 5 files:
python download.py 5 herwigpp/qcd650pt/run1 herwigpp_qcd_pt650 python download.py 5 herwigpp/qcd650pt/run2 herwigpp_qcd_pt650_2
— Sergei Chekanov 2013/01/31 08:52