Skip to content

Commit bbdbdf8

Browse files
committed
[tutorial] Change path
1 parent fc3fced commit bbdbdf8

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

tutorials/CMakeLists.txt

+5-6
Original file line numberDiff line numberDiff line change
@@ -374,10 +374,9 @@ endif()
374374

375375
if(root7)
376376
set(root7_veto analysis/dataframe/df013_InspectAnalysis.C
377-
experimental/browser.cxx
378-
experimental/filedialog.cxx
379-
experimental/fitpanel.cxx
380-
experimental/fitpanel6.cxx
377+
tutorials/visualisation/webgui/browserv7/browser.cxx
378+
tutorials/visualisation/webgui/browserv7/filedialog.cxx
379+
tutorials/visualisation/webgui/fitpanelv7/fitpanel6.cxx
381380
)
382381
if(NOT davix)
383382
list(APPEND root7_veto io/ntuple/ntpl004_dimuon.C)
@@ -401,7 +400,7 @@ else()
401400
if(MSVC AND NOT win_broken_tests)
402401
list(APPEND root7_veto analysis/dataframe/df013_InspectAnalysis.C)
403402
endif()
404-
file(GLOB v7_veto_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/ experimental/*.py experimental/*.cxx experimental/*/*.cxx experimental/*.C experimental/*/*.C experimental/rcanvas/*.py experimental/rcanvas/*.cxx)
403+
file(GLOB v7_veto_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}/ tutorials/visualisation/webgui/browserv7/*.cxx tutorials/visualisation/webgui/fitpanelv7/*.cxx experimental/rcanvas/*.py experimental/rcanvas/*.cxx)
405404
list(APPEND root7_veto ${v7_veto_files})
406405
endif()
407406

@@ -505,7 +504,7 @@ if(webgui)
505504
list(APPEND tutorials ${visualisation/tutorials_webcanv})
506505
endif()
507506
if(root7 AND webgui)
508-
file(GLOB_RECURSE tutorials_exp RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} experimental/*.cxx)
507+
file(GLOB_RECURSE tutorials_exp RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} experimental/*.cxx tutorials/visualisation/webgui/browserv7/*.cxx tutorials/visualisation/webgui/fitpanelv7/*.cxx)
509508
list(APPEND tutorials ${tutorials_exp})
510509
endif()
511510
file(GLOB tutorials_veto RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} ${all_veto})

tutorials/experimental/browser.cxx renamed to tutorials/visualisation/webgui/browserv7/browser.cxx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/// \file
2-
/// \ingroup tutorial_exp
2+
/// \ingroup tutorial_webgui
33
///
4+
/// Example showing RBrowser, web-based ROOT files and objects browser.
45
/// \macro_code
56
///
67
/// \date 2019-05-29
7-
/// \warning This is part of the experimental API, which might change in the future. Feedback is welcome!
88
/// \authors Bertrand Bellenot <[email protected]>, Sergey Linev <[email protected]>
99

1010
/*************************************************************************

tutorials/experimental/filedialog.cxx renamed to tutorials/visualisation/webgui/browserv7/filedialog.cxx

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/// \file
2-
/// \ingroup tutorial_exp
2+
/// \ingroup tutorial_webgui
33
///
4+
/// Example showing how RFileDialog can be used in sync and async modes.
45
/// \macro_code
56
///
67
/// \date 2019-11-01
7-
/// \warning This is part of the experimental API, which might change in the future. Feedback is welcome!
88
/// \author Sergey Linev <[email protected]>
99

1010
/*************************************************************************
@@ -15,11 +15,11 @@
1515
* For the list of contributors see $ROOTSYS/README/CREDITS. *
1616
*************************************************************************/
1717

18-
// Show how RFileDialog can be used in sync and async modes
19-
// Normally file dialogs will be used inside other widgets as ui5 dialogs
18+
19+
// Normally file dialogs will be used inside other widgets as ui5 dialogs.
2020
// By default, dialog starts in async mode - means macro immediately returns to command line
2121
// To start OpenFile dialog in sync mode, call `root "filedialog.cxx(1)" -q`.
22-
// Once file is selected, root execution will be stopped
22+
// Once file is selected, root execution will be stopped.
2323

2424

2525
// macro must be here to let macro work on Windows

tutorials/experimental/fitpanel6.cxx renamed to tutorials/visualisation/webgui/fitpanelv7/fitpanel6.cxx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/// \file
2-
/// \ingroup tutorial_exp
2+
/// \ingroup tutorial_webgui
33
///
44
/// \macro_code
55
///

0 commit comments

Comments
 (0)