Skip to content

Commit

Permalink
PWGEM/Dilepton: update treeCreatorElectronMLDDA.cxx
Browse files Browse the repository at this point in the history
  • Loading branch information
dsekihat committed Feb 21, 2025
1 parent 9f46144 commit dca3d1c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion PWGEM/Dilepton/TableProducer/treeCreatorElectronMLDDA.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ struct MLTrackQC {
},
};

void process(aod::EMPrimaryTracks const& tracks)
void processQC(aod::EMPrimaryTracks const& tracks)
{
for (auto& track : tracks) {
registry.fill(HIST("hTPCdEdx_P_All"), track.p(), track.tpcSignal());
Expand Down Expand Up @@ -811,6 +811,10 @@ struct MLTrackQC {
}
} // end of track loop
}
PROCESS_SWITCH(MLTrackQC, processQC, "process QC for single track level", false);

void processDummy(aod::EMPrimaryTracks const&) {}
PROCESS_SWITCH(MLTrackQC, processDummy, "process dummy", true);
};

WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
Expand Down

0 comments on commit dca3d1c

Please sign in to comment.