Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Also preload Hist
  • Loading branch information
Teemperor committed Dec 3, 2017
commit a1c8a35b3e7ebc6ce04b986f6acfb63e79690927
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ if(runtime_cxxmodules)
# we will always load them to workaround the fact that we can't
# load the decls in them via rootmap files (as they are inside
# namespaces which isn't supported).
add_custom_target(onepcm DEPENDS RooStats Gpad TreePlayer TMVA Graf GenVector)
add_custom_target(onepcm DEPENDS RooStats Hist Gpad TreePlayer TMVA Graf GenVector)
else()
add_custom_command(OUTPUT etc/allDict.cxx.pch
COMMAND ${CMAKE_COMMAND} -E env ROOTIGNOREPREFIX=1 ${PYTHON_EXECUTABLE} ${CMAKE_SOURCE_DIR}/etc/dictpch/makepch.py etc/allDict.cxx.pch ${__allIncludes} -I${CMAKE_BINARY_DIR}/include
Expand Down
2 changes: 1 addition & 1 deletion core/metacling/src/TCling.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1380,7 +1380,7 @@ void TCling::Initialize()
if (fInterpreter->getCI()->getLangOpts().Modules && !IsFromRootCling()) {
// Load modules that we can't automatically load via rootmap files as they
// contain decls in namespaces which aren't supported.
LoadModules({"TMVA", "Gpad", "RooStats", "GenVector", "TreePlayer", "Graf"}, *fInterpreter);
LoadModules({"TMVA", "Gpad", "RooStats", "GenVector", "Hist", "TreePlayer", "Graf"}, *fInterpreter);
}
}

Expand Down