@@ -175,6 +175,7 @@ struct nucleiSpectra {
175175
176176 Produces<o2::aod::NucleiTable> nucleiTable;
177177 Produces<o2::aod::NucleiTableMC> nucleiTableMC;
178+ Produces<o2::aod::NucleiCollId> nucleiCollisionIndex;
178179 Produces<o2::aod::NucleiFlowColls> nucleiFlowTable;
179180 Service<o2::ccdb::BasicCCDBManager> ccdb;
180181
@@ -527,7 +528,7 @@ struct nucleiSpectra {
527528 }
528529 fillDataInfo (collision, tracks);
529530 for (auto & c : nuclei::candidates) {
530- nucleiTable (c.pt , c.eta , c.phi , c.tpcInnerParam , c.beta , c.zVertex , c.DCAxy , c.DCAz , c.TPCsignal , c.ITSchi2 , c.TPCchi2 , c.flags , c.TPCfindableCls , c.TPCcrossedRows , c.ITSclsMap , c.TPCnCls , c.clusterSizesITS , c. selCollIndex );
531+ nucleiTable (c.pt , c.eta , c.phi , c.tpcInnerParam , c.beta , c.zVertex , c.DCAxy , c.DCAz , c.TPCsignal , c.ITSchi2 , c.TPCchi2 , c.flags , c.TPCfindableCls , c.TPCcrossedRows , c.ITSclsMap , c.TPCnCls , c.clusterSizesITS );
531532 }
532533 }
533534 PROCESS_SWITCH (nucleiSpectra, processData, " Data analysis" , true );
@@ -540,7 +541,8 @@ struct nucleiSpectra {
540541 }
541542 fillDataInfo (collision, tracks);
542543 for (auto & c : nuclei::candidates) {
543- nucleiTable (c.pt , c.eta , c.phi , c.tpcInnerParam , c.beta , c.zVertex , c.DCAxy , c.DCAz , c.TPCsignal , c.ITSchi2 , c.TPCchi2 , c.flags , c.TPCfindableCls , c.TPCcrossedRows , c.ITSclsMap , c.TPCnCls , c.clusterSizesITS , c.selCollIndex );
544+ nucleiTable (c.pt , c.eta , c.phi , c.tpcInnerParam , c.beta , c.zVertex , c.DCAxy , c.DCAz , c.TPCsignal , c.ITSchi2 , c.TPCchi2 , c.flags , c.TPCfindableCls , c.TPCcrossedRows , c.ITSclsMap , c.TPCnCls , c.clusterSizesITS );
545+ nucleiCollisionIndex (c.selCollIndex );
544546 }
545547 }
546548 PROCESS_SWITCH (nucleiSpectra, processDataFlow, " Data analysis with flow" , false );
0 commit comments