CMS 3D CMS Logo

BTagSF.py
Go to the documentation of this file.
1 from __future__ import print_function
2 # importing the python binding to the C++ class from ROOT
3 from ROOT import heppy
4 
6  '''Just an additional wrapper, not really needed :-)
7  We just want to illustrate the fact that you could
8  use such a wrapper to add functions, attributes, etc,
9  in an improved interface to the original C++ class.
10  '''
11  def __init__ (self, seed) :
12  super(BTagSF, self).__init__(seed)
13 
14 if __name__ == '__main__':
15 
16  btag = BTagSF(12345)
17  print('created BTagSF instance')
S & print(S &os, JobReport::InputFile const &f)
Definition: JobReport.cc:66
def __init__(self, seed)
Definition: BTagSF.py:11