Fork me on GitHub

Changes between Version 1 and Version 2 of WorkBook/QuickTour


Ignore:
Timestamp:
Nov 19, 2012, 9:06:59 AM (12 years ago)
Author:
Pavel Demin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WorkBook/QuickTour

    v1 v2  
    1 == Getting the Source ==
     1
     2== Installing Delphes from Source ==
     3
     4To successfully build Delphes the following prerequisite packages should be installed:
     5 - [http://root.cern.ch/drupal/content/downloading-root ROOT Data Analysis Framework]
     6 - [http://www.tcl.tk Tcl scripting language]
    27
    38Commands to download Delphes' source and build Delphes:
     
    1217  make -j 4
    1318}}}
     19
     20== Running Delphes ==
     21
     22When running Delphes without parameters or when supplying an invalid command line, the following message will be shown:
     23{{{
     24# ./DelphesHepMC
     25 Usage: DelphesHepMC config_file output_file [input_file(s)]
     26 config_file - configuration file in Tcl format,
     27 output_file - output file in ROOT format,
     28 input_file(s) - input file(s) in HepMC format,
     29 with no input_file, or when input_file is -, read standard input.
     30}}}
     31
     32{{{
     33./DelphesHepMC examples/delphes_card_CMS.tcl test.root examples/test.hepmc
     34}}}
     35
     36
     37{{{
     38./DelphesSTDHEP examples/delphes_card_CMS.tcl test.root examples/test.stdhep
     39}}}
     40
     41{{{
     42./DelphesLHEF examples/delphes_card_CMS.tcl test.root examples/test.lhef
     43}}}