Skip to content

Commit

Permalink
Revert "Re-enabled TPC TrackRef check after fix (#13756)"
Browse files Browse the repository at this point in the history
This reverts commit 167b8c0.
  • Loading branch information
jackal1-66 authored Dec 2, 2024
1 parent 73a96c3 commit e4575aa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions run/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,6 @@ o2_add_test_command(NAME o2sim_G4
2
--skipModules
MFT ZDC
--seed
15946057944514955802
--configKeyValues
"align-geom.mDetectors=none"
ENVIRONMENT "${SIMENV}"
Expand Down Expand Up @@ -257,8 +255,6 @@ o2_add_test_command(NAME o2sim_G3
pythia8pp
--chunkSize
10
--seed
15946057944514955802
--configKeyValues
"align-geom.mDetectors=none"
LABELS g3 sim long
Expand Down
2 changes: 1 addition & 1 deletion run/checkStack.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ int main(int argc, char** argv)
for (auto& trackID : trackidsinTPC) {
auto tpc_trackrefs = mcreader.getTrackRefs(eventID, trackID);
LOG(debug) << " Track " << trackID << " has " << tpc_trackrefs.size() << " TrackRefs";
assert(tpc_trackrefs.size() > 0);
// assert(tpc_trackrefs.size() > 0);
for (auto& ref : tpc_trackrefs) {
assert(ref.getTrackID() == trackID);
}
Expand Down

0 comments on commit e4575aa

Please sign in to comment.