1 | To install Delphes:
|
---|
2 | ________________________
|
---|
3 |
|
---|
4 | 1) untar the sources:
|
---|
5 | tar -xvf Delphes_V_1.8.tar.gz
|
---|
6 |
|
---|
7 | 2) go to the directory:
|
---|
8 | cd Delphes_V_1.8
|
---|
9 |
|
---|
10 | 3) generate the Makefile corresponding to your environment:
|
---|
11 | ./genMakefile.tcl > Makefile
|
---|
12 |
|
---|
13 | 4) compile the sources
|
---|
14 | make
|
---|
15 |
|
---|
16 | If the compilation succeeds, one reads:
|
---|
17 | Delphes has been compiled
|
---|
18 | Ready to run
|
---|
19 |
|
---|
20 | In case of troubles with the compilation of FROG, it is probable that
|
---|
21 | you miss the libGL packages. Here are some hints to install these on Linux:
|
---|
22 | On Fedora:
|
---|
23 | sudo yum install mesa-libGL*
|
---|
24 | On Ubuntu:
|
---|
25 | sudo apg-get install libgl1-mesa
|
---|
26 |
|
---|
27 |
|
---|
28 | To run Delphes:
|
---|
29 | ______________________
|
---|
30 |
|
---|
31 | 1) create a list of input files that you want to process,
|
---|
32 | - with one file name (or path/name) per line
|
---|
33 | - all files should be of the same type in a given list-file.
|
---|
34 | name your list-file as you prefer, for instance "inputlist.list"
|
---|
35 |
|
---|
36 | 2) run the command line
|
---|
37 | ./Delphes inputlist.list outputfile.root
|
---|
38 |
|
---|
39 | 3) this will run Delphes. Once completed, you should have the file "outputfile.root" ready for analyses.
|
---|
40 |
|
---|
41 |
|
---|
42 | To run particular setup files:
|
---|
43 | _______________________________
|
---|
44 |
|
---|
45 | Usage: ./Delphes input_file output_file [detector_card] [trigger_card]
|
---|
46 | input_list - list of files in Ntpl, StdHep, HepMC or LHEF format,
|
---|
47 | output_file - output file.
|
---|
48 | detector_card - Datacard containing resolution variables for the detector simulation (optional)
|
---|
49 | trigger_card - Datacard containing the trigger algorithms (optional)
|
---|
50 |
|
---|
51 | The default detector and trigger cards for the ATLAS and CMS detectors are located in the "data/" subdirectory
|
---|
52 | data/DetectorCard_ATLAS.dat & data/TriggerCard_ATLAS.dat
|
---|
53 | data/DetectorCard_CMS.dat & data/TriggerCard_CMS.dat
|
---|
54 | data/DetectorCard.dat & data/TriggerCard.dat
|
---|
55 |
|
---|
56 |
|
---|
57 | For more details, have a look at the User Manual at the end of this document
|
---|
58 | http://arxiv.org/abs/0903.2225
|
---|
59 | arXiv:0903.2225v1 [hep-ph]
|
---|
60 |
|
---|
61 |
|
---|
62 | -- last change 05/11/2009 --
|
---|