-
Notifications
You must be signed in to change notification settings - Fork 7
QuickStart
davidegerbaudo edited this page Aug 9, 2012
·
2 revisions
Recipe for the impatient one:
Use the supy-minimal-example and follow the README.
The configuration.py file specifies the parameters that are specific to your setup and ntuples. For a complete list of the possible parameters, see supy/defaults.py, from which the default values of the parameters that you don't specify are picked up.
The example_analysis.py file has an example of how your analysis can be organized:
-
listOfStepsdefines a list of steps (histograms, filters, etc.) through which your events will go -
listOfCalculablesdefines a list of things you want to compute for each event -
listOfSampleDictionariesdefines a dictionary of sample parameters (files, lumi or xsec,...) -
listOfSamplesdefines a list of samples to run over -
concludespecifies what should be done after all samples have been processed
See susycaf for a more complete and advanced example.