Skip to content

Commit f15a5e6

Browse files
iarseneIonut Cristian Arsene
andauthored
[PWGDQ] Adding a process function for V0 tagged tracks in pp, without TOF dependency (#10798)
Co-authored-by: Ionut Cristian Arsene <iarsene@cern.ch>
1 parent 82c3b4c commit f15a5e6

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

PWGDQ/TableProducer/tableMaker_withAssoc.cxx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1407,6 +1407,14 @@ struct TableMaker {
14071407
fullSkimming<gkEventFillMapWithMultsZdc, gkTrackFillMapWithCov, 0u, 0u>(collisions, bcs, zdcs, tracksBarrel, nullptr, nullptr, trackAssocs, nullptr, nullptr);
14081408
}
14091409

1410+
// produce the barrel-only DQ skimmed barrel data model, with V0 tagged tracks
1411+
void processPPBarrelOnlyWithV0s(MyEventsWithMults const& collisions, MyBCs const& bcs,
1412+
MyBarrelTracksWithV0BitsNoTOF const& tracksBarrel,
1413+
TrackAssoc const& trackAssocs)
1414+
{
1415+
fullSkimming<gkEventFillMapWithMults, gkTrackFillMapWithV0BitsNoTOF, 0u, 0u>(collisions, bcs, nullptr, tracksBarrel, nullptr, nullptr, trackAssocs, nullptr, nullptr);
1416+
}
1417+
14101418
// produce the muon-only DQ skimmed data model typically for pp/p-Pb or UPC Pb-Pb (no centrality), meant to run on skimmed data
14111419
void processPPMuonOnly(MyEventsWithMults const& collisions, BCsWithTimestamps const& bcs,
14121420
MyMuonsWithCov const& muons, FwdTrackAssoc const& fwdTrackAssocs)
@@ -1505,6 +1513,7 @@ struct TableMaker {
15051513
PROCESS_SWITCH(TableMaker, processPPWithFilterMuonOnly, "Build muon only DQ skimmed data model typically for pp/p-Pb and UPC Pb-Pb, w/ event filtering", false);
15061514
PROCESS_SWITCH(TableMaker, processPPWithFilterMuonMFT, "Build muon + mft DQ skimmed data model typically for pp/p-Pb and UPC Pb-Pb, w/ event filtering", false);
15071515
PROCESS_SWITCH(TableMaker, processPPBarrelOnly, "Build barrel only DQ skimmed data model typically for pp/p-Pb and UPC Pb-Pb", false);
1516+
PROCESS_SWITCH(TableMaker, processPPBarrelOnlyWithV0s, "Build barrel only DQ skimmed data model, pp like, with V0 tagged tracks", false);
15081517
PROCESS_SWITCH(TableMaker, processPPMuonOnly, "Build muon only DQ skimmed data model typically for pp/p-Pb and UPC Pb-Pb", false);
15091518
PROCESS_SWITCH(TableMaker, processPPMuonMFT, "Build muon + mft DQ skimmed data model typically for pp/p-Pb and UPC Pb-Pb", false);
15101519
PROCESS_SWITCH(TableMaker, processPPMuonMFTWithMultsExtra, "Build muon + mft DQ skimmed data model typically for pp/p-Pb and UPC Pb-Pb", false);

0 commit comments

Comments
 (0)