[533] | 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 |
|
---|
| 21 | To run Delphes:
|
---|
| 22 | ______________________
|
---|
| 23 |
|
---|
| 24 | 1) create a list of input files that you want to process,
|
---|
| 25 | - with one file name (or path/name) per line
|
---|
| 26 | - all files should be of the same type in a given list-file.
|
---|
| 27 | name your list-file as you prefer, for instance "inputlist.list"
|
---|
| 28 |
|
---|
| 29 | 2) run the command line
|
---|
| 30 | ./Delphes inputlist.list outputfile.root
|
---|
| 31 |
|
---|
| 32 | 3) this will run Delphes. Once completed, you should have the file "outputfile.root" ready for analyses.
|
---|
| 33 |
|
---|
| 34 |
|
---|
| 35 | To run particular setup files:
|
---|
| 36 | _______________________________
|
---|
| 37 |
|
---|
| 38 | Usage: ./Delphes input_file output_file [detector_card] [trigger_card]
|
---|
| 39 | input_list - list of files in Ntpl, StdHep, HepMC or LHEF format,
|
---|
| 40 | output_file - output file.
|
---|
| 41 | detector_card - Datacard containing resolution variables for the detector simulation (optional)
|
---|
| 42 | trigger_card - Datacard containing the trigger algorithms (optional)
|
---|
| 43 |
|
---|
| 44 | The default detector and trigger cards for the ATLAS and CMS detectors are located in the "data/" subdirectory
|
---|
| 45 | data/DetectorCard_ATLAS.dat & data/TriggerCard_ATLAS.dat
|
---|
| 46 | data/DetectorCard_CMS.dat & data/TriggerCard_CMS.dat
|
---|
| 47 | data/DetectorCard.dat & data/TriggerCard.dat
|
---|
| 48 |
|
---|
| 49 |
|
---|
| 50 | For more details, have a look at the User Manual at the end of this document
|
---|
| 51 | http://arxiv.org/abs/0903.2225
|
---|
| 52 | arXiv:0903.2225v1 [hep-ph]
|
---|
| 53 |
|
---|
| 54 |
|
---|
| 55 | -- last change 05/11/2009 --
|
---|