From 6d747d09c8e0c29543d36b3b2215ff1281acff05 Mon Sep 17 00:00:00 2001 From: Enric Tejedor Saavedra <enric.tejedor.saavedra@cern.ch> Date: Fri, 2 Nov 2018 16:34:39 +0100 Subject: [PATCH] Add missing headers to Exp PyROOT files --- .../PyROOT/python/ROOT/__init__.py | 9 +++++++++ .../PyROOT/python/ROOT/pythonization/__init__.py | 9 +++++++++ .../PyROOT/python/ROOT/pythonization/_generic.py | 10 ++++++++++ .../PyROOT/python/ROOT/pythonization/_rvec.py | 10 ++++++++++ .../PyROOT/python/ROOT/pythonization/_stl_vector.py | 10 ++++++++++ .../PyROOT/python/ROOT/pythonization/_ttree.py | 9 +++++++++ .../pyroot_experimental/PyROOT/src/GenericPyz.cxx | 11 +++++++++++ bindings/pyroot_experimental/PyROOT/src/Helpers.cxx | 11 +++++++++++ .../pyroot_experimental/PyROOT/src/PyROOTModule.cxx | 10 ++++++++++ .../pyroot_experimental/PyROOT/src/PyROOTPythonize.h | 10 ++++++++++ .../pyroot_experimental/PyROOT/src/PyROOTStrings.cxx | 10 ++++++++++ .../pyroot_experimental/PyROOT/src/PyROOTStrings.h | 10 ++++++++++ .../pyroot_experimental/PyROOT/src/PyROOTWrapper.cxx | 10 ++++++++++ .../pyroot_experimental/PyROOT/src/PyROOTWrapper.h | 10 ++++++++++ bindings/pyroot_experimental/PyROOT/src/TTreePyz.cxx | 10 ++++++++++ 15 files changed, 149 insertions(+) diff --git a/bindings/pyroot_experimental/PyROOT/python/ROOT/__init__.py b/bindings/pyroot_experimental/PyROOT/python/ROOT/__init__.py index 4b6e0c285d3..95d6d60bb37 100644 --- a/bindings/pyroot_experimental/PyROOT/python/ROOT/__init__.py +++ b/bindings/pyroot_experimental/PyROOT/python/ROOT/__init__.py @@ -1,3 +1,12 @@ +# Author: Enric Tejedor, Danilo Piparo CERN 06/2018 + +################################################################################ +# Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. # +# All rights reserved. # +# # +# For the licensing terms see $ROOTSYS/LICENSE. # +# For the list of contributors see $ROOTSYS/README/CREDITS. # +################################################################################ import cppyy import ROOT.pythonization as pyz diff --git a/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/__init__.py b/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/__init__.py index e69de29bb2d..cdf39290f25 100644 --- a/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/__init__.py +++ b/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/__init__.py @@ -0,0 +1,9 @@ +# Author: Enric Tejedor, Danilo Piparo CERN 06/2018 + +################################################################################ +# Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. # +# All rights reserved. # +# # +# For the licensing terms see $ROOTSYS/LICENSE. # +# For the list of contributors see $ROOTSYS/README/CREDITS. # +################################################################################ diff --git a/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/_generic.py b/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/_generic.py index 39a763074e7..8320b4a3a2d 100644 --- a/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/_generic.py +++ b/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/_generic.py @@ -1,3 +1,13 @@ +# Author: Stefan Wunsch CERN 06/2018 + +################################################################################ +# Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. # +# All rights reserved. # +# # +# For the licensing terms see $ROOTSYS/LICENSE. # +# For the list of contributors see $ROOTSYS/README/CREDITS. # +################################################################################ + from libROOTPython import AddPrettyPrintingPyz from ROOT import pythonization diff --git a/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/_rvec.py b/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/_rvec.py index e6873d0e268..4922719aa68 100644 --- a/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/_rvec.py +++ b/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/_rvec.py @@ -1,3 +1,13 @@ +# Author: Stefan Wunsch CERN 08/2018 + +################################################################################ +# Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. # +# All rights reserved. # +# # +# For the licensing terms see $ROOTSYS/LICENSE. # +# For the list of contributors see $ROOTSYS/README/CREDITS. # +################################################################################ + from ROOT import pythonization from libROOTPython import GetEndianess, GetVectorDataPointer, GetSizeOfType diff --git a/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/_stl_vector.py b/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/_stl_vector.py index d4925941482..1bb0ac510b0 100644 --- a/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/_stl_vector.py +++ b/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/_stl_vector.py @@ -1,3 +1,13 @@ +# Author: Stefan Wunsch CERN 08/2018 + +################################################################################ +# Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. # +# All rights reserved. # +# # +# For the licensing terms see $ROOTSYS/LICENSE. # +# For the list of contributors see $ROOTSYS/README/CREDITS. # +################################################################################ + from ROOT import pythonization from ROOT.pythonization._rvec import add_array_interface_property diff --git a/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/_ttree.py b/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/_ttree.py index ff11d051bc8..ccaf8a692d0 100644 --- a/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/_ttree.py +++ b/bindings/pyroot_experimental/PyROOT/python/ROOT/pythonization/_ttree.py @@ -1,3 +1,12 @@ +# Author: Enric Tejedor CERN 06/2018 + +################################################################################ +# Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. # +# All rights reserved. # +# # +# For the licensing terms see $ROOTSYS/LICENSE. # +# For the list of contributors see $ROOTSYS/README/CREDITS. # +################################################################################ from libROOTPython import AddBranchAttrSyntax, SetBranchAddressPyz, BranchPyz diff --git a/bindings/pyroot_experimental/PyROOT/src/GenericPyz.cxx b/bindings/pyroot_experimental/PyROOT/src/GenericPyz.cxx index e8f5d68ac4e..0d86847b762 100644 --- a/bindings/pyroot_experimental/PyROOT/src/GenericPyz.cxx +++ b/bindings/pyroot_experimental/PyROOT/src/GenericPyz.cxx @@ -1,3 +1,14 @@ +// Author: Stefan Wunsch CERN 06/2018 +// Original PyROOT code by Wim Lavrijsen, LBL + +/************************************************************************* + * Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. * + * All rights reserved. * + * * + * For the licensing terms see $ROOTSYS/LICENSE. * + * For the list of contributors see $ROOTSYS/README/CREDITS. * + *************************************************************************/ + #include "CPyCppyy.h" #include "PyROOTPythonize.h" #include "CPPInstance.h" diff --git a/bindings/pyroot_experimental/PyROOT/src/Helpers.cxx b/bindings/pyroot_experimental/PyROOT/src/Helpers.cxx index 4ce721edac3..10ca39945dc 100644 --- a/bindings/pyroot_experimental/PyROOT/src/Helpers.cxx +++ b/bindings/pyroot_experimental/PyROOT/src/Helpers.cxx @@ -1,3 +1,14 @@ +// Author: Stefan Wunsch CERN 08/2018 +// Original PyROOT code by Wim Lavrijsen, LBL + +/************************************************************************* + * Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. * + * All rights reserved. * + * * + * For the licensing terms see $ROOTSYS/LICENSE. * + * For the list of contributors see $ROOTSYS/README/CREDITS. * + *************************************************************************/ + #include "CPyCppyy.h" #include "CPPInstance.h" #include "PyROOTPythonize.h" diff --git a/bindings/pyroot_experimental/PyROOT/src/PyROOTModule.cxx b/bindings/pyroot_experimental/PyROOT/src/PyROOTModule.cxx index bfb52c3387c..3dac53acfea 100644 --- a/bindings/pyroot_experimental/PyROOT/src/PyROOTModule.cxx +++ b/bindings/pyroot_experimental/PyROOT/src/PyROOTModule.cxx @@ -1,3 +1,13 @@ +// Author: Enric Tejedor CERN 06/2018 +// Original PyROOT code by Wim Lavrijsen, LBL + +/************************************************************************* + * Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. * + * All rights reserved. * + * * + * For the licensing terms see $ROOTSYS/LICENSE. * + * For the list of contributors see $ROOTSYS/README/CREDITS. * + *************************************************************************/ // Bindings #include "PyROOTPythonize.h" diff --git a/bindings/pyroot_experimental/PyROOT/src/PyROOTPythonize.h b/bindings/pyroot_experimental/PyROOT/src/PyROOTPythonize.h index 566005f0f31..b1d9b19ac86 100644 --- a/bindings/pyroot_experimental/PyROOT/src/PyROOTPythonize.h +++ b/bindings/pyroot_experimental/PyROOT/src/PyROOTPythonize.h @@ -1,3 +1,13 @@ +// Author: Enric Tejedor CERN 06/2018 +// Original PyROOT code by Wim Lavrijsen, LBL + +/************************************************************************* + * Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. * + * All rights reserved. * + * * + * For the licensing terms see $ROOTSYS/LICENSE. * + * For the list of contributors see $ROOTSYS/README/CREDITS. * + *************************************************************************/ #ifndef PYROOT_PYTHONIZE_H #define PYROOT_PYTHONIZE_H diff --git a/bindings/pyroot_experimental/PyROOT/src/PyROOTStrings.cxx b/bindings/pyroot_experimental/PyROOT/src/PyROOTStrings.cxx index 774e8137cb6..e609bafe335 100644 --- a/bindings/pyroot_experimental/PyROOT/src/PyROOTStrings.cxx +++ b/bindings/pyroot_experimental/PyROOT/src/PyROOTStrings.cxx @@ -1,3 +1,13 @@ +// Author: Enric Tejedor CERN 06/2018 +// Original PyROOT code by Wim Lavrijsen, LBL + +/************************************************************************* + * Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. * + * All rights reserved. * + * * + * For the licensing terms see $ROOTSYS/LICENSE. * + * For the list of contributors see $ROOTSYS/README/CREDITS. * + *************************************************************************/ // Bindings #include "CPyCppyy.h" diff --git a/bindings/pyroot_experimental/PyROOT/src/PyROOTStrings.h b/bindings/pyroot_experimental/PyROOT/src/PyROOTStrings.h index f6eb3b36b88..09681edb369 100644 --- a/bindings/pyroot_experimental/PyROOT/src/PyROOTStrings.h +++ b/bindings/pyroot_experimental/PyROOT/src/PyROOTStrings.h @@ -1,3 +1,13 @@ +// Author: Enric Tejedor CERN 06/2018 +// Original PyROOT code by Wim Lavrijsen, LBL + +/************************************************************************* + * Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. * + * All rights reserved. * + * * + * For the licensing terms see $ROOTSYS/LICENSE. * + * For the list of contributors see $ROOTSYS/README/CREDITS. * + *************************************************************************/ #ifndef PYROOT_PYSTRINGS_H #define PYROOT_PYSTRINGS_H diff --git a/bindings/pyroot_experimental/PyROOT/src/PyROOTWrapper.cxx b/bindings/pyroot_experimental/PyROOT/src/PyROOTWrapper.cxx index 90abc911ece..52390fc76d9 100644 --- a/bindings/pyroot_experimental/PyROOT/src/PyROOTWrapper.cxx +++ b/bindings/pyroot_experimental/PyROOT/src/PyROOTWrapper.cxx @@ -1,3 +1,13 @@ +// Author: Enric Tejedor CERN 06/2018 +// Original PyROOT code by Wim Lavrijsen, LBL + +/************************************************************************* + * Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. * + * All rights reserved. * + * * + * For the licensing terms see $ROOTSYS/LICENSE. * + * For the list of contributors see $ROOTSYS/README/CREDITS. * + *************************************************************************/ // Bindings #include "PyROOTWrapper.h" diff --git a/bindings/pyroot_experimental/PyROOT/src/PyROOTWrapper.h b/bindings/pyroot_experimental/PyROOT/src/PyROOTWrapper.h index fe104b8044b..ea70b343ce0 100644 --- a/bindings/pyroot_experimental/PyROOT/src/PyROOTWrapper.h +++ b/bindings/pyroot_experimental/PyROOT/src/PyROOTWrapper.h @@ -1,3 +1,13 @@ +// Author: Enric Tejedor CERN 06/2018 +// Original PyROOT code by Wim Lavrijsen, LBL + +/************************************************************************* + * Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. * + * All rights reserved. * + * * + * For the licensing terms see $ROOTSYS/LICENSE. * + * For the list of contributors see $ROOTSYS/README/CREDITS. * + *************************************************************************/ #ifndef PYROOT_ROOTWRAPPER_H #define PYROOT_ROOTWRAPPER_H diff --git a/bindings/pyroot_experimental/PyROOT/src/TTreePyz.cxx b/bindings/pyroot_experimental/PyROOT/src/TTreePyz.cxx index 589f5000fb3..3417c75c3e1 100644 --- a/bindings/pyroot_experimental/PyROOT/src/TTreePyz.cxx +++ b/bindings/pyroot_experimental/PyROOT/src/TTreePyz.cxx @@ -1,3 +1,13 @@ +// Author: Enric Tejedor CERN 06/2018 +// Original PyROOT code by Wim Lavrijsen, LBL + +/************************************************************************* + * Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. * + * All rights reserved. * + * * + * For the licensing terms see $ROOTSYS/LICENSE. * + * For the list of contributors see $ROOTSYS/README/CREDITS. * + *************************************************************************/ // Bindings #include "CPyCppyy.h" -- GitLab