We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be8ab72 commit aa1544cCopy full SHA for aa1544c
etc/plugins/ROOT@@Internal@@RRawFile/P015_RRawFileCurl.C
@@ -0,0 +1,15 @@
1
+void P015_RRawFileCurl()
2
+{
3
+ TString configfeatures = gROOT->GetConfigFeatures();
4
+
5
+ if (configfeatures.Contains("curl") &&
6
+ (!configfeatures.Contains("davix") || gEnv->GetValue("Curl.ReplaceDavix", 0))) {
7
8
+ gPluginMgr->AddHandler(
9
+ "ROOT::Internal::RRawFile",
10
+ "^http[s]?:",
11
+ "ROOT::Internal::RRawFileCurl",
12
+ "RCurlHttp",
13
+ "RRawFileCurl(std::string_view, ROOT::Internal::RRawFile::ROptions)");
14
+ }
15
+}
0 commit comments