Fork me on GitHub

Changes between Version 22 and Version 23 of WorkBook/QuickTour


Ignore:
Timestamp:
Aug 14, 2013, 6:03:32 PM (11 years ago)
Author:
Christophe Delaere
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WorkBook/QuickTour

    v22 v23  
    5757== Analyzing Delphes' Output ==
    5858
    59 Delphes' output can be analyzed with the ROOT data analysis framework.
     59Delphes' output can be analyzed with the ROOT data analysis framework.
     60This can be done in simple cases with TTree::Draw, or with macros for more advanced cases.
     61Examples and mini analysis frameworks are provided in C++ (using !ExRootAnalysis) and python (using DelphesAnalysis).
    6062
    6163=== Simple analysis using TTree::Draw ===
     
    164166root -l examples/Example2.C\(\"delphes_output.root\"\)
    165167}}}
     168
     169=== Analysis in python ===
     170
     171DelphesAnalysis is an analysis framework written in python where a clear separation is maintained between the standard code and what the user has to implement. This makes it easy to apprehend and generic, still retaining full flexibility and scalability. It is configured in a single configuration file.
     172
     173More details and examples on the dedicated page.