Fork me on GitHub

source: svn/trunk/python/DelphesAnalysis/BaseWeightClass.py@ 1184

Last change on this file since 1184 was 1112, checked in by Pavel Demin, 11 years ago

add DelphesAnalysis

File size: 362 bytes
Line 
1# Every weight class must contain a weight method, taking as first argument the event.
2# Additional methods and arguments are allowed.
3# Note that weight classes do not have to derive from BaseWeightClass.
4
5class BaseWeightClass:
6 """A class to reweight AnalysisEvents"""
7 def weight( self, event):
8 """Lepton eff weight"""
9 raise NotImplementedError
10
Note: See TracBrowser for help on using the repository browser.