Skip to content

Commit

Permalink
Re-enabled TPC TrackRef check after fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jackal1-66 authored Nov 29, 2024
1 parent 4f5e4fb commit 0a2a4fd
Showing 1 changed file with 1 addition and 1 deletion.
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 0a2a4fd

Please sign in to comment.