Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions run/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,8 @@ o2_add_test_command(NAME o2sim_G4
2
--skipModules
MFT ZDC
--seed
15946057944514955802
--configKeyValues
"align-geom.mDetectors=none"
ENVIRONMENT "${SIMENV}"
Expand Down Expand Up @@ -255,6 +257,8 @@ 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