Fork me on GitHub

Changes between Initial Version and Version 1 of WorkBook/ReadingCMSFiles


Ignore:
Timestamp:
Nov 22, 2012, 1:38:38 AM (12 years ago)
Author:
Pavel Demin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WorkBook/ReadingCMSFiles

    v1 v1  
     1== Reading CMS ROOT Files ==
     2
     3It possible to run Delphes
     4
     5== Setting up CMSSW Computing Environment ==
     6
     7The instructions on how to setup CMSSW work area and runtime environment can be found at
     8 
     9https://twiki.cern.ch/twiki/bin/view/CMSPublic/WorkBookSetComputerNode
     10
     11== Building DelphesCMSFWLite ==
     12
     13Commands to build DelphesCMSFWLite:
     14
     15{{{
     16export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH
     17
     18source examples/DelphesCMSFWLite.sh
     19}}}
     20
     21== Running DelphesCMSFWLite ==
     22
     23When running DelphesCMSFWLite without parameters or when supplying an invalid command line, the following message will be shown:
     24{{{
     25 Usage: DelphesCMSFWLite 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 ROOT format.
     29}}}
     30
     31Running Delphes with CMS ROOT input files:
     32{{{
     33./DelphesCMSFWLite examples/delphes_card_CMS.tcl output.root input.root
     34}}}