Skip to content

Commit 167b8c0

Browse files
authored
Re-enabled TPC TrackRef check after fix (AliceO2Group#13756)
* Re-enabled TPC TrackRef check after fix * Set fixed seed for Geant3/4 tests, previously failing the CI
1 parent 4f5e4fb commit 167b8c0

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

run/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,8 @@ o2_add_test_command(NAME o2sim_G4
193193
2
194194
--skipModules
195195
MFT ZDC
196+
--seed
197+
15946057944514955802
196198
--configKeyValues
197199
"align-geom.mDetectors=none"
198200
ENVIRONMENT "${SIMENV}"
@@ -255,6 +257,8 @@ o2_add_test_command(NAME o2sim_G3
255257
pythia8pp
256258
--chunkSize
257259
10
260+
--seed
261+
15946057944514955802
258262
--configKeyValues
259263
"align-geom.mDetectors=none"
260264
LABELS g3 sim long

run/checkStack.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ int main(int argc, char** argv)
144144
for (auto& trackID : trackidsinTPC) {
145145
auto tpc_trackrefs = mcreader.getTrackRefs(eventID, trackID);
146146
LOG(debug) << " Track " << trackID << " has " << tpc_trackrefs.size() << " TrackRefs";
147-
// assert(tpc_trackrefs.size() > 0);
147+
assert(tpc_trackrefs.size() > 0);
148148
for (auto& ref : tpc_trackrefs) {
149149
assert(ref.getTrackID() == trackID);
150150
}

0 commit comments

Comments
 (0)