From 5ebef8d53b7ac91855122adb57e9517d4e7e00d9 Mon Sep 17 00:00:00 2001
From: Rene Brun <Rene.Brun@cern.ch>
Date: Fri, 7 Mar 2008 16:36:07 +0000
Subject: [PATCH] From Lorenzo: New plugins

git-svn-id: http://root.cern.ch/svn/root/trunk@22526 27541ba8-7e3a-0410-8455-c3a389f83636
---
 etc/plugins/ROOT@@Math@@IRootFinderMethod/P010_Brent.C      | 5 +++++
 etc/plugins/ROOT@@Math@@IRootFinderMethod/P020_Bisection.C  | 5 +++++
 etc/plugins/ROOT@@Math@@IRootFinderMethod/P030_FalsePos.C   | 5 +++++
 etc/plugins/ROOT@@Math@@IRootFinderMethod/P040_Newton.C     | 5 +++++
 etc/plugins/ROOT@@Math@@IRootFinderMethod/P050_Secant.C     | 5 +++++
 etc/plugins/ROOT@@Math@@IRootFinderMethod/P060_Steffenson.C | 5 +++++
 6 files changed, 30 insertions(+)
 create mode 100644 etc/plugins/ROOT@@Math@@IRootFinderMethod/P010_Brent.C
 create mode 100644 etc/plugins/ROOT@@Math@@IRootFinderMethod/P020_Bisection.C
 create mode 100644 etc/plugins/ROOT@@Math@@IRootFinderMethod/P030_FalsePos.C
 create mode 100644 etc/plugins/ROOT@@Math@@IRootFinderMethod/P040_Newton.C
 create mode 100644 etc/plugins/ROOT@@Math@@IRootFinderMethod/P050_Secant.C
 create mode 100644 etc/plugins/ROOT@@Math@@IRootFinderMethod/P060_Steffenson.C

diff --git a/etc/plugins/ROOT@@Math@@IRootFinderMethod/P010_Brent.C b/etc/plugins/ROOT@@Math@@IRootFinderMethod/P010_Brent.C
new file mode 100644
index 00000000000..cef391598ab
--- /dev/null
+++ b/etc/plugins/ROOT@@Math@@IRootFinderMethod/P010_Brent.C
@@ -0,0 +1,5 @@
+void P010_Brent()
+{
+   gPluginMgr->AddHandler("ROOT::Math::IRootFinderMethod", "Brent", "ROOT::Math::Roots::Brent",
+                          "MathMore", "Brent()");
+}
diff --git a/etc/plugins/ROOT@@Math@@IRootFinderMethod/P020_Bisection.C b/etc/plugins/ROOT@@Math@@IRootFinderMethod/P020_Bisection.C
new file mode 100644
index 00000000000..6461b20562d
--- /dev/null
+++ b/etc/plugins/ROOT@@Math@@IRootFinderMethod/P020_Bisection.C
@@ -0,0 +1,5 @@
+void P020_Bisection()
+{
+   gPluginMgr->AddHandler("ROOT::Math::IRootFinderMethod", "Bisection", "ROOT::Math::Roots::Bisection",
+                          "MathMore", "Bisection()");
+}
diff --git a/etc/plugins/ROOT@@Math@@IRootFinderMethod/P030_FalsePos.C b/etc/plugins/ROOT@@Math@@IRootFinderMethod/P030_FalsePos.C
new file mode 100644
index 00000000000..5fd4e9be957
--- /dev/null
+++ b/etc/plugins/ROOT@@Math@@IRootFinderMethod/P030_FalsePos.C
@@ -0,0 +1,5 @@
+void P030_FalsePos()
+{
+   gPluginMgr->AddHandler("ROOT::Math::IRootFinderMethod", "FalsePos", "ROOT::Math::Roots::FalsePos",
+                          "MathMore", "FalsePos()");
+}
diff --git a/etc/plugins/ROOT@@Math@@IRootFinderMethod/P040_Newton.C b/etc/plugins/ROOT@@Math@@IRootFinderMethod/P040_Newton.C
new file mode 100644
index 00000000000..3485bd42067
--- /dev/null
+++ b/etc/plugins/ROOT@@Math@@IRootFinderMethod/P040_Newton.C
@@ -0,0 +1,5 @@
+void P040_Newton()
+{
+   gPluginMgr->AddHandler("ROOT::Math::IRootFinderMethod", "Newton", "ROOT::Math::Roots::Newton",
+                          "MathMore", "Newton()");
+}
diff --git a/etc/plugins/ROOT@@Math@@IRootFinderMethod/P050_Secant.C b/etc/plugins/ROOT@@Math@@IRootFinderMethod/P050_Secant.C
new file mode 100644
index 00000000000..cafd2fd1c00
--- /dev/null
+++ b/etc/plugins/ROOT@@Math@@IRootFinderMethod/P050_Secant.C
@@ -0,0 +1,5 @@
+void P050_Secant()
+{
+   gPluginMgr->AddHandler("ROOT::Math::IRootFinderMethod", "Secant", "ROOT::Math::Roots::Secant",
+                          "MathMore", "Secant()");
+}
diff --git a/etc/plugins/ROOT@@Math@@IRootFinderMethod/P060_Steffenson.C b/etc/plugins/ROOT@@Math@@IRootFinderMethod/P060_Steffenson.C
new file mode 100644
index 00000000000..9600bd58a3c
--- /dev/null
+++ b/etc/plugins/ROOT@@Math@@IRootFinderMethod/P060_Steffenson.C
@@ -0,0 +1,5 @@
+void P060_Steffenson()
+{
+   gPluginMgr->AddHandler("ROOT::Math::IRootFinderMethod", "Steffenson", "ROOT::Math::Roots::Steffenson",
+      "MathMore", "Steffenson()");
+}
-- 
GitLab