Skip to content

Commit 6ab2b40

Browse files
authored
[PWGEM/Dilepton] update treeCreatorElectronMLDDA.cxx (#10126)
1 parent 543c5f5 commit 6ab2b40

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ struct MLTrackQC {
778778
},
779779
};
780780

781-
void process(aod::EMPrimaryTracks const& tracks)
781+
void processQC(aod::EMPrimaryTracks const& tracks)
782782
{
783783
for (auto& track : tracks) {
784784
registry.fill(HIST("hTPCdEdx_P_All"), track.p(), track.tpcSignal());
@@ -811,6 +811,10 @@ struct MLTrackQC {
811811
}
812812
} // end of track loop
813813
}
814+
PROCESS_SWITCH(MLTrackQC, processQC, "process QC for single track level", false);
815+
816+
void processDummy(aod::EMPrimaryTracks const&) {}
817+
PROCESS_SWITCH(MLTrackQC, processDummy, "process dummy", true);
814818
};
815819

816820
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)

0 commit comments

Comments
 (0)