Changes between Version 22 and Version 23 of WorkBook/QuickTour
- Timestamp:
- Aug 14, 2013, 6:03:32 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WorkBook/QuickTour
v22 v23 57 57 == Analyzing Delphes' Output == 58 58 59 Delphes' output can be analyzed with the ROOT data analysis framework. 59 Delphes' output can be analyzed with the ROOT data analysis framework. 60 This can be done in simple cases with TTree::Draw, or with macros for more advanced cases. 61 Examples and mini analysis frameworks are provided in C++ (using !ExRootAnalysis) and python (using DelphesAnalysis). 60 62 61 63 === Simple analysis using TTree::Draw === … … 164 166 root -l examples/Example2.C\(\"delphes_output.root\"\) 165 167 }}} 168 169 === Analysis in python === 170 171 DelphesAnalysis 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 173 More details and examples on the dedicated page.