Skip to content

Commit 2918334

Browse files
committed
Change url of the web server
1 parent cd80527 commit 2918334

File tree

81 files changed

+126
-126
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+126
-126
lines changed

README/ReleaseNotes/v626/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ root (cont'ed, cancel with .@) [1]<< "ROOT\n";
104104

105105
- `rootls` now follows the same logic of `TFile::ls()` to print the key cycle number and its tag when listing contents of a file with the `-l` option (PR [#7878](https://github.com/root-project/root/pull/7878)):
106106
```
107-
$: rootls -l https://root.cern/files/ttree_read_imt.root
107+
$: rootls -l https://root-test.web.cern.ch/files/ttree_read_imt.root
108108
TTree Mar 13 17:17 2019 TreeIMT;2 "TTree for IMT test" [current cycle]
109109
TTree Mar 13 17:17 2019 TreeIMT;1 "TTree for IMT test" [backup cycle]
110110
```

README/ReleaseNotes/v632/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ a bug.
163163
164164
Added correct treatment of extended term in asymptotically correct method for uncertainty determination in the presence of weights.
165165
This improvement will allow for extended unbinned maximum likelihood fits to use the asymptotically correct method when using the `RooFit::AsymptoticError()` command argument in [RooAbsPdf::fitTo()](https://root.cern.ch/doc/master/classRooAbsPdf.html#ab0721374836c343a710f5ff92a326ff5).
166-
See also this [writeup on extended weighted fits](https://root.cern/files/extended_weighted_fits.pdf) that is also linked from the reference guide.
166+
See also this [writeup on extended weighted fits](https://root-test.web.cern.ch/files/extended_weighted_fits.pdf) that is also linked from the reference guide.
167167
The [pull request](https://github.com/root-project/root/pull/14751) that introduced this feature might also be a good reference.
168168
169169
### Compile your code with memory safe interfaces

cmake/modules/SearchInstalledSoftware.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ macro(ROOT_CHECK_CONNECTION option)
2525
# Do something only if connection check is not already done
2626
if(NOT DEFINED NO_CONNECTION)
2727
message(STATUS "Checking internet connectivity")
28-
file(DOWNLOAD https://root.cern/files/cmake_connectivity_test.txt ${CMAKE_CURRENT_BINARY_DIR}/cmake_connectivity_test.txt
28+
file(DOWNLOAD https://root-test.web.cern.ch/files/cmake_connectivity_test.txt ${CMAKE_CURRENT_BINARY_DIR}/cmake_connectivity_test.txt
2929
TIMEOUT 10 STATUS DOWNLOAD_STATUS
3030
)
3131
# Get the status code from the download status

core/base/src/TRef.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ will automatically invoke a script GetWebHistogram.C via the interpreter.
189189
An example of a GetWebHistogram.C script is shown below
190190
~~~ {.cpp}
191191
void GetWebHistogram() {
192-
TFile *f= TFile::Open("http://root.cern/files/pippa.root");
192+
TFile *f= TFile::Open("http://root-test.web.cern.ch/files/pippa.root");
193193
f->cd("DM/CJ");
194194
TH1 *h6 = (TH1*)gDirectory->Get("h6");
195195
h6->SetDirectory(0);

documentation/JSROOT/JSROOT.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -274,11 +274,11 @@ One and two dimensional draw expressions can be resulted into TGraph object, usi
274274

275275
For any integer value one can accumulate histogram with value bits distribution, specifying as output ">>bits(16)" or ">>bits":
276276

277-
- [opt=event.fTracks.fBits>>bits](https://root.cern/js/latest/?file=https://root.cern/files/Event100000.root&item=T;2&opt=event.fTracks.fBits>>bits)
277+
- [opt=event.fTracks.fBits>>bits](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/Event100000.root&item=T;2&opt=event.fTracks.fBits>>bits)
278278

279279
There is special handling of TBits objects:
280280

281-
- [opt=event.fTriggerBits](https://root.cern/js/latest/?file=https://root.cern/files/event/event_0.root&item=EventTree&opt=event.fTriggerBits)
281+
- [opt=event.fTriggerBits](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/event/event_0.root&item=EventTree&opt=event.fTriggerBits)
282282

283283
It is allowed to use different expressions with branch values:
284284

@@ -309,11 +309,11 @@ Or one could dump values produced with draw expression (also first 10 entries by
309309
Working with array indexes is supported. By default, all elements in array are used for the drawing.
310310
One could specify index for any array dimension (-1 means last element in the array). For instance, dump last element from `event.fTracks` array:
311311

312-
- [opt=event.fTracks[-1].fBits>>dump](https://root.cern/js/latest/?file=https://root.cern/files/event/event_0.root&item=EventTree&opt=event.fTracks[-1].fBits>>dump)
312+
- [opt=event.fTracks[-1].fBits>>dump](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/event/event_0.root&item=EventTree&opt=event.fTracks[-1].fBits>>dump)
313313

314314
For any array or collection kind one could extract its size with expression:
315315

316-
- [opt=event.fTracks.@size](https://root.cern/js/latest/?file=https://root.cern/files/event/event_0.root&item=EventTree&opt=event.fTracks.@size;num:3000)
316+
- [opt=event.fTracks.@size](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/event/event_0.root&item=EventTree&opt=event.fTracks.@size;num:3000)
317317

318318
At the end of expression one can add several parameters with the syntax:
319319

@@ -330,7 +330,7 @@ Following parameters are supported:
330330
- "drawopt" - drawing option for produced histogram
331331
- "graph" - draw into TGraph object
332332

333-
Example - [opt=event.fTracks[].fTriggerBits;entries:1000;first:200;maxrange:25](https://root.cern/js/latest/?file=https://root.cern/files/event/event_0.root&item=EventTree&opt=event.fTracks[].fTriggerBits;entries:1000;first:200;maxrange:25)
333+
Example - [opt=event.fTracks[].fTriggerBits;entries:1000;first:200;maxrange:25](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/event/event_0.root&item=EventTree&opt=event.fTracks[].fTriggerBits;entries:1000;first:200;maxrange:25)
334334

335335

336336
## Geometry viewer
@@ -406,7 +406,7 @@ Another way to configure visibility flags is usage of ROOT macros, which typical
406406

407407
```cpp
408408
{
409-
TGeoManager::Import("http://root.cern/files/alice2.root");
409+
TGeoManager::Import("http://root-test.web.cern.ch/files/alice2.root");
410410
gGeoManager->DefaultColors();
411411
// gGeoManager->SetVisLevel(4);
412412
gGeoManager->GetVolume("HALL")->InvisibleAll();
@@ -432,19 +432,19 @@ All other will be ignored.
432432

433433

434434
Example of major LHC detectors:
435-
* ALICE: [full](https://root.cern/js/latest/?file=https://root.cern/files/alice2.root&item=Geometry;1&opt=macro:https://root.cern/js/files/geomAlice.C)
436-
* ATLAS: [full](https://root.cern/js/latest/?file=https://root.cern/files/atlas.root&item=atlas;1&opt=clipxyz), [cryo](https://root.cern/js/latest/?file=https://root.cern/files/atlas.root&item=atlas;1&opt=macro:https://root.cern/files/atlas_cryo.C), [sctt](https://root.cern/js/latest/?file=https://root.cern/files/atlas.root&item=atlas;1&opt=macro:https://root.cern/files/atlas_sctt.C)
437-
* CMS: [cmse](https://root.cern/js/latest/?file=https://root.cern/files/cms.root&item=cms;1&opt=macro:https://root.cern/files/cms_cmse.C;clipxyz), [calo](https://root.cern/js/latest/?file=https://root.cern/files/cms.root&item=cms;1&opt=macro:https://root.cern/files/cms_calo.C;clipxyz)
438-
* LHCb: [full](https://root.cern/js/latest/?file=https://root.cern/files/lhcbfull.root&item=Geometry;1&opt=all;dflt)
435+
* ALICE: [full](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/alice2.root&item=Geometry;1&opt=macro:https://root.cern/js/files/geomAlice.C)
436+
* ATLAS: [full](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/atlas.root&item=atlas;1&opt=clipxyz), [cryo](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/atlas.root&item=atlas;1&opt=macro:https://root-test.web.cern.ch/files/atlas_cryo.C), [sctt](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/atlas.root&item=atlas;1&opt=macro:https://root-test.web.cern.ch/files/atlas_sctt.C)
437+
* CMS: [cmse](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/cms.root&item=cms;1&opt=macro:https://root-test.web.cern.ch/files/cms_cmse.C;clipxyz), [calo](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/cms.root&item=cms;1&opt=macro:https://root-test.web.cern.ch/files/cms_calo.C;clipxyz)
438+
* LHCb: [full](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/lhcbfull.root&item=Geometry;1&opt=all;dflt)
439439

440440
Other detectors examples:
441-
* HADES: [full](https://root.cern/js/latest/?file=https://root.cern/files/hades2.root&item=CBMGeom;1&opt=all;dflt), [preselected](https://root.cern/js/latest/?json=../files/geom/hades.json.gz)
442-
* BABAR: [full](https://root.cern/js/latest/?file=https://root.cern/files/babar.root&item=babar;1&opt=macro:https://root.cern/files/babar_all.C), [emca](https://root.cern/js/latest/?file=https://root.cern/files/babar.root&item=babar;1&opt=macro:https://root.cern/files/babar_emca.C)
443-
* STAR: [full](https://root.cern/js/latest/?file=https://root.cern/files/star.root&item=star;1&opt=macro:https://root.cern/files/star_all.C;clipxyz), [svtt](https://root.cern/js/latest/?file=https://root.cern/files/star.root&item=star;1&opt=macro:https://root.cern/files/star_svtt.C)
444-
* D0: [full](https://root.cern/js/latest/?file=https://root.cern/files/d0.root&item=d0;1&opt=clipxyz)
445-
* NA47: [full](https://root.cern/js/latest/?file=https://root.cern/files/na47.root&item=na47;1&opt=dflt)
446-
* BRAHMS: [full](https://root.cern/js/latest/?file=https://root.cern/files/brahms.root&item=brahms;1&opt=dflt)
447-
* SLD: [full](https://root.cern/js/latest/?file=https://root.cern/files/sld.root&item=sld;1&opt=dflt;clipxyz)
441+
* HADES: [full](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/hades2.root&item=CBMGeom;1&opt=all;dflt), [preselected](https://root.cern/js/latest/?json=../files/geom/hades.json.gz)
442+
* BABAR: [full](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/babar.root&item=babar;1&opt=macro:https://root-test.web.cern.ch/files/babar_all.C), [emca](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/babar.root&item=babar;1&opt=macro:https://root-test.web.cern.ch/files/babar_emca.C)
443+
* STAR: [full](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/star.root&item=star;1&opt=macro:https://root-test.web.cern.ch/files/star_all.C;clipxyz), [svtt](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/star.root&item=star;1&opt=macro:https://root-test.web.cern.ch/files/star_svtt.C)
444+
* D0: [full](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/d0.root&item=d0;1&opt=clipxyz)
445+
* NA47: [full](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/na47.root&item=na47;1&opt=dflt)
446+
* BRAHMS: [full](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/brahms.root&item=brahms;1&opt=dflt)
447+
* SLD: [full](https://root.cern/js/latest/?file=https://root-test.web.cern.ch/files/sld.root&item=sld;1&opt=dflt;clipxyz)
448448

449449
Together with geometry one could display tracks (TEveTrack) and hits (TEvePointSet, TPolyMarker3D) objects.
450450
Either one do it interactively by drag and drop, or superimpose drawing with `+` sign like:

documentation/tmva/UsersGuide/UsingTMVAQuickStart.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ \subsection{Running the example}
7575

7676
The macros automatically fetch the data file from
7777
the web using the corresponding \code{TFile} constructor, \eg,
78-
\code{TFile::Open("http://root.cern/files/tmva_class_example.root")} (\code{tmva_reg_example.root} for regression). The example %ToDo: insert this code into our example execs and macros.
78+
\code{TFile::Open("http://root-test.web.cern.ch/files/tmva_class_example.root")} (\code{tmva_reg_example.root} for regression). The example %ToDo: insert this code into our example execs and macros.
7979
ROOT macros can be run directly in the \TmvaTutorialDir directory,
8080
or from anywhere after adding the macro directory
8181
to ROOT's macro search path:

hist/histpainter/src/THistPainter.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2429,7 +2429,7 @@ Begin_Macro(source)
24292429
auto p = new TH2Poly("USA","USA Population",lon1,lon2,lat1,lat2);
24302430
24312431
TFile::SetCacheFileDir(".");
2432-
auto f = TFile::Open("http://root.cern/files/usa.root", "CACHEREAD");
2432+
auto f = TFile::Open("http://root-test.web.cern.ch/files/usa.root", "CACHEREAD");
24332433
24342434
TMultiGraph *mg;
24352435
TKey *key;

io/doc/v528/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ <h4>TFile::MakeProject</h4>
187187
</ul>
188188
<h4>Misc.</h4>
189189
<ul>
190-
<li><tt>TFile::Open</tt> now does variable expansion so that you can include the protocol in the variable (for example: <pre style="border:gray 1px solid;padding:0.5em 2em;background:#ffe">export H1="http://root.cern/files/h1"
190+
<li><tt>TFile::Open</tt> now does variable expansion so that you can include the protocol in the variable (for example: <pre style="border:gray 1px solid;padding:0.5em 2em;background:#ffe">export H1="http://root-test.web.cern.ch/files/h1"
191191
...
192192
TFile::Open("$H1/dstarmb.root");</pre></li>
193193
<li>Added warning if the file does contain any StreamerInfo objects and was written with a different version of ROOT.</li>

io/doc/v532/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ <h4>TFile::MakeProject</h4>
120120
For example, the following generates a PAR package equivalent to
121121
tutorials/proof/event.par:
122122
<pre style="border:gray 1px solid;padding:0.5em 2em;background:#ffe">
123-
root [] TFile *f = TFile::Open("http://root.cern/files/data/event_1.root")
123+
root [] TFile *f = TFile::Open("http://root-test.web.cern.ch/files/data/event_1.root")
124124
root [] f->MakeProject("packages/myevent.par", "*", "par");
125125
</pre>
126126
Note that, because a PAR file is a tarball, for the time being, on Windows
@@ -151,7 +151,7 @@ <h4>TParallelMergingFile</h4>
151151
<pre style="border:gray 1px solid;padding:0.5em 2em;background:#ffe">
152152
TFile::Open("mergedClient.root?pmerge","RECREATE"); // For now contact localhost:1095
153153
TFile::Open("mergedClient.root?pmerge=localhost:1095","RECREATE");
154-
TFile::Open("rootd://root.cern/files/output.root?pmerger=pcanal:password@locahost:1095","NEW")
154+
TFile::Open("rootd://root-test.web.cern.ch/files/output.root?pmerger=pcanal:password@locahost:1095","NEW")
155155
</pre>
156156
<tt>tutorials/net/treeClient.C</tt> and <tt>fastMergeServer.C</tt>: update to follow the change in interfaces
157157
Introduce the tutorials <tt>parallelMergerClient.C</tt> and the temporary tutorials <tt>parallelMergerServer.C</tt>

io/io/test/RRawFile.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,12 @@ TEST(RRawFile, Basic)
100100
TEST(RRawFile, Remote)
101101
{
102102
#ifdef R__HAS_DAVIX
103-
auto f = RRawFile::Create("http://root.cern/files/davix.test");
103+
auto f = RRawFile::Create("http://root-test.web.cern.ch/files/davix.test");
104104
std::string line;
105105
EXPECT_TRUE(f->Readln(line));
106106
EXPECT_STREQ("Hello, World", line.c_str());
107107
#else
108-
EXPECT_THROW(RRawFile::Create("http://root.cern/files/davix.test"), std::runtime_error);
108+
EXPECT_THROW(RRawFile::Create("http://root-test.web.cern.ch/files/davix.test"), std::runtime_error);
109109
#endif
110110
}
111111

0 commit comments

Comments
 (0)