Fork me on GitHub

source: git/python/DelphesAnalysis/BaseWeightClass.py@ 87ae892

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 87ae892 was ae1d49f, checked in by pavel <pavel@…>, 11 years ago

add DelphesAnalysis

  • Property mode set to 100644
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.