Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NPDet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIC
NPDet
Merge requests
!151
WIP: Added new material budget tool
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
WIP: Added new material budget tool
mat_budget
into
master
Overview
1
Commits
1
Pipelines
0
Changes
2
Closed
Whitney Armstrong
requested to merge
mat_budget
into
master
4 years ago
Overview
1
Commits
1
Pipelines
0
Changes
2
Expand
modified: CMakeLists.txt new file: src/npdet_mat_budget.cxx
0
0
Merge request reports
Compare
master
version 1
5d8bfd2b
4 years ago
master (base)
and
latest version
latest version
c802d478
1 commit,
4 years ago
version 1
5d8bfd2b
2 commits,
4 years ago
2 files
+
385
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/tools/CMakeLists.txt
+
18
−
0
Options
@@ -76,6 +76,24 @@ target_compile_features(${exe_name}
target_link_libraries
(
${
exe_name
}
PUBLIC DD4hep::DDCore DD4hep::DDG4 ROOT::Core ROOT::Hist ROOT::GenVector ROOT::Eve ROOT::Gpad ROOT::Imt
)
set
(
exe_name npdet_mat_budget
)
add_executable
(
${
exe_name
}
src/
${
exe_name
}
.cxx
)
target_link_libraries
(
${
exe_name
}
PUBLIC DD4hep::DDCore DD4hep::DDRec DD4hep::DDG4 ROOT::Core ROOT::Hist ROOT::GenVector ROOT::Eve ROOT::Gpad stdc++fs ROOT::Imt
)
target_include_directories
(
${
exe_name
}
PUBLIC
PRIVATE include
)
target_compile_features
(
${
exe_name
}
PUBLIC cxx_auto_type
PUBLIC cxx_trailing_return_types
PRIVATE cxx_variadic_templates
PRIVATE cxx_std_17
)
install
(
TARGETS
${
exe_name
}
EXPORT NPDetTargets
RUNTIME DESTINATION bin
)
set
(
exe_name dd_web_display
)
add_executable
(
${
exe_name
}
src/
${
exe_name
}
.cxx
)
#target_link_libraries(${exe_name}
Loading