CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
BTagSF.py
Go to the documentation of this file.
1 # importing the python binding to the C++ class from ROOT
2 from ROOT import heppy
3 
5  '''Just an additional wrapper, not really needed :-)
6  We just want to illustrate the fact that you could
7  use such a wrapper to add functions, attributes, etc,
8  in an improved interface to the original C++ class.
9  '''
10  def __init__ (self, seed) :
11  super(BTagSF, self).__init__(seed)
12 
13 if __name__ == '__main__':
14 
15  btag = BTagSF(12345)
16  print 'created BTagSF instance'
def __init__
Definition: BTagSF.py:10