Skip to content

Commit e4575aa

Browse files
authored
Revert "Re-enabled TPC TrackRef check after fix (#13756)"
This reverts commit 167b8c0.
1 parent 73a96c3 commit e4575aa

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

run/CMakeLists.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,6 @@ o2_add_test_command(NAME o2sim_G4
193193
2
194194
--skipModules
195195
MFT ZDC
196-
--seed
197-
15946057944514955802
198196
--configKeyValues
199197
"align-geom.mDetectors=none"
200198
ENVIRONMENT "${SIMENV}"
@@ -257,8 +255,6 @@ o2_add_test_command(NAME o2sim_G3
257255
pythia8pp
258256
--chunkSize
259257
10
260-
--seed
261-
15946057944514955802
262258
--configKeyValues
263259
"align-geom.mDetectors=none"
264260
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)