Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Remove tf selection (included in sel8)
  • Loading branch information
mapalhares committed Apr 29, 2024
commit ffda42fa7ab02b9ca96aba0f604a1ce99a6c6535
4 changes: 2 additions & 2 deletions PWGLF/TableProducer/Nuspex/lnnRecoTask.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ struct lnnRecoTask {
initCCDB(bc);

hEvents->Fill(0.);
if (!collision.sel8() || std::abs(collision.posZ()) > 10 || !collision.selection_bit(aod::evsel::kNoTimeFrameBorder))
if (!collision.sel8() || std::abs(collision.posZ()) > 10)
continue;
hEvents->Fill(1.);
hZvtx->Fill(collision.posZ());
Expand Down Expand Up @@ -511,7 +511,7 @@ struct lnnRecoTask {
initCCDB(bc);

hEvents->Fill(0.);
if (!collision.sel8() || std::abs(collision.posZ()) > 10 || !collision.selection_bit(aod::evsel::kNoTimeFrameBorder))
if (!collision.sel8() || std::abs(collision.posZ()) > 10)
continue;
hEvents->Fill(1.);
hZvtx->Fill(collision.posZ());
Expand Down