Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cbmroot
Manage
Activity
Members
Labels
Plan
Wiki
Redmine
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
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computing
cbmroot
Merge requests
!1967
Draft: remove legacy event mode
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Closed
Draft: remove legacy event mode
se.gorbunov/cbmroot:legacy_event_mode
into
master
Overview
0
Commits
1
Pipelines
2
Changes
5
Closed
Sergey Gorbunov
requested to merge
se.gorbunov/cbmroot:legacy_event_mode
into
master
11 months ago
Overview
0
Commits
1
Pipelines
2
Changes
5
Remove legacy event mode.
delete macro/run/run_reco_event.C
replace run_reco_event.C by run_reco.C in all CI tests
delete code for the "legacy event mode" everywhere in the compiled code
0
0
Merge request reports
Compare
master
version 1
4e1d6869
11 months ago
master (base)
and
latest version
latest version
65f7c337
1 commit,
11 months ago
version 1
4e1d6869
1 commit,
11 months ago
5 files
+
15
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
macro/much/CMakeLists.txt
+
2
−
2
View file @ 65f7c337
Edit in single-file editor
Open in Web IDE
Show full file
@@ -3,7 +3,7 @@ Set(MACRO_DIR ${CBMROOT_BINARY_DIR}/macro/much)
GENERATE_ROOT_TEST_SCRIPT
(
${
CBMROOT_SOURCE_DIR
}
/macro/much/run_transport.C
)
GENERATE_ROOT_TEST_SCRIPT
(
${
CBMROOT_SOURCE_DIR
}
/macro/much/run_ana.C
)
GENERATE_CBM_TEST_SCRIPT
(
${
CBMROOT_SOURCE_DIR
}
/macro/run/run_digi.C
${
MACRO_DIR
}
)
GENERATE_CBM_TEST_SCRIPT
(
${
CBMROOT_SOURCE_DIR
}
/macro/run/run_reco
_event
.C
${
MACRO_DIR
}
)
GENERATE_CBM_TEST_SCRIPT
(
${
CBMROOT_SOURCE_DIR
}
/macro/run/run_reco.C
${
MACRO_DIR
}
)
# Put the .rootrc file into the directory from which root is executed.
# Otherwise the rootalias file is not loaded
@@ -42,7 +42,7 @@ Set_Tests_Properties(${testname} PROPERTIES
# --- Reconstruction, event-by-event
Set
(
testname much_reco_event
)
add_test
(
${
testname
}
${
MACRO_DIR
}
/run_reco
_event.sh
${
NumEvents
}
\"data/muons
\" \"sis100_muon_lmvm\"
1 1 0
)
add_test
(
${
testname
}
${
MACRO_DIR
}
/run_reco
.sh \"data/muons\"
${
NumEvents
}
0 \"\" \"Ideal
\" \"sis100_muon_lmvm\"
\"\" true
)
SET_TESTS_PROPERTIES
(
${
testname
}
PROPERTIES
TIMEOUT
"1200"
PASS_REGULAR_EXPRESSION
"TestPassed;All ok"
Loading