Skip to content
Closed
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
5 changes: 2 additions & 3 deletions PWGJE/Tasks/jetDsSpecSubs.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -580,19 +580,18 @@ struct JetDsSpecSubs {
registry.fill(HIST("McEffCol"), getValFromBin(BinMCColCntr::Matched));

// Apply standard event selection and vertex cut
//if (!jetderiveddatautilities::selectCollision(collision, eventSelectionBits) ||
// if (!jetderiveddatautilities::selectCollision(collision, eventSelectionBits) ||
// !(std::abs(collision.posZ()) < vertexZCut)) {
// continue;
//}
// Matched collision passing analysis selections
//registry.fill(HIST("McEffCol"), getValFromBin(BinMCColCntr::MatchedSel8ZCut));
// registry.fill(HIST("McEffCol"), getValFromBin(BinMCColCntr::MatchedSel8ZCut));

if (jetderiveddatautilities::selectCollision(collision, eventSelectionBits) &&
std::abs(collision.posZ()) < vertexZCut) {
registry.fill(HIST("McEffCol"), getValFromBin(BinMCColCntr::MatchedSel8ZCut));
}


// Detector-level Ds-tagged jets associated with the current reconstructed collision
const auto dsmcdJetsPerCollision = mcdjets.sliceBy(jetmcdpreslice, collision.globalIndex());
for (const auto& mcdjet : dsmcdJetsPerCollision) {
Expand Down
Loading