- Mar 21, 2023
-
-
Axel Naumann authored
-
Axel Naumann authored
-
Axel Naumann authored
This reverts commit a4c07502. While this itself might not cause build issues, the related commit 90ffa89a does; handle them together.
-
Axel Naumann authored
This reverts commit 90ffa89a. It causes build failures on GCC 12.2.1 / c++17 with ``` [ 70%] Generating G__Core.cxx, ../lib/Core.pcm In file included from input_line_7:111: /home/linev/build/webgui/include/ROOT/RDirectoryEntry.hxx:31:33: error: missing '#include <bits/chrono.h>'; 'system_clock' must be declared before it is used using clock_t = std::chrono::system_clock; ^ /usr/include/c++/12/bits/chrono.h:1110:12: note: declaration here is not visible struct system_clock ^ In module 'std' imported from input_line_1:1: /usr/include/c++/12/bits/move.h:204:11: error: missing '#include <bits/chrono.h>'; 'time_point' must be defined before it is used _Tp __tmp = _GLIBCXX_MOVE(__a); ^ /home/linev/build/webgui/include/ROOT/RDirectoryEntry.hxx:89:4: note: in instantiation of function template specialization 'std::swap<std::chrono::time_point<std::chrono::system_clock, std::chrono::duration<long, std::ratio<1, 1000000000>>>>' requested here swap(fDate, other.fDate); ^ /usr/include/c++/12/bits/chrono.h:856:14: note: definition here is not reachable struct time_point ```
-
Axel Naumann authored
This fixes building ROOT (and installing the prerequisite python packages) e.g. on Alma9.
-
Sergey Linev authored
Also offsets for exp labels and fStripDecimals are supported
-
Sergey Linev authored
Format code a little bit
-
Sergey Linev authored
Protect against nullptr argument Move into implementation to provide proper documentation
-
Sergey Linev authored
Redirect calls to: * TGaxis::SetMaxDigits() * TGaxis::GetMaxDigits() * TGaxis::SetExponentOffset() Let use these configurations also in TWebCanvas, which has access to gStyle object
-
Vassil Vassilev authored
-
Vassil Vassilev authored
-
Axel Naumann authored
-
Mattias Ellert authored
This breaks the pattern used when undefining and then defining a variable in the same flag: $ echo | g++ -Wp,-UVAR,-DVAR=1 -c -x c++ - Here -Wp,-UVAR,-DVAR=1 will first undefine VAR and then define it to 1 If the -Wp, is dropped, this fails: $ echo | g++ -UVAR,-DVAR=1 -c -x c++ - <command-line>: warning: extra tokens at end of #undef directive Now it will only undefine VAR, but not define it. I.e. instead of #undef VAR #define VAR 1 you get #undef VAR,-DVAR=1 which explains the rather cryptic warning about extra token after #undef.
-
- Mar 20, 2023
-
-
Garima Singh authored
This commits adds support for including analytical integrals into the mock code-squashing test by introducing a private header that stores the stateless implementation details.
-
Olivier Couet authored
-
Sergey Linev authored
Changes required for new functionality in RGeomViewer Also support change visibility of physical nodes in plain JSROOT
-
Sergey Linev authored
Let fully decouple GL and hierarchy drawing. Cross-communication performed via RGeomDescription signals
-
Sergey Linev authored
Default browsing for TGeoManager does not fit for RBrowser needs
-
Sergey Linev authored
For demo purposes one provides methods which work without direct connection to the server like for github.io stored pages
-
Sergey Linev authored
For debugging purposes one can use protocol.json with all communication stored there. Now one can correctly record and restore different channels
-
Sergey Linev authored
-
Sergey Linev authored
If items where expand, correctly remember such list and restore them
-
Sergey Linev authored
Provide extra context menus
-
Sergey Linev authored
Represent flags as checkboxes in hierarchical view. If change visibility of logical nodes, settings for physical node automatically reset. Support in full and partial model
-
Sergey Linev authored
geodemo.C can be used without limitations with --web mode
-
- Mar 19, 2023
-
-
Florine de Geus authored
-
Florine de Geus authored
-
Florine de Geus authored
This reverts commit d950e77874e6a9025fdc1c67450a1f651eb74c13.
-
Florine de Geus authored
-
Florine de Geus authored
-
Florine de Geus authored
-
Florine de Geus authored
-
Florine de Geus authored
-
Florine de Geus authored
-
- Mar 18, 2023
-
-
Jonas Rembser authored
-
Jonas Rembser authored
This is done such that when importing the JSON back, names are not unexpectedly changes.
-
Jonas Rembser authored
-
Jonas Rembser authored
This is to be consistent with the old HistFactory implementation.
-
Jonas Rembser authored
-
Jonas Rembser authored
For the model parameters, the HS3 HistFactory implementation was able to generate them implicitly if they are not in the JSON. Now this is done in a consistent way also for the observables. So far, this was done in a differnt way that re-used the internals of the RooJSONFactoryWSTool.
-