Skip to content
Closed
Changes from all commits
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
6 changes: 3 additions & 3 deletions PWGLF/TableProducer/Strangeness/cascademlselection.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ struct cascademlselection {

std::map<std::string, std::string> metadata;

Produces<aod::CascXiMLScores> xiMLSelections; // optionally aggregate information from ML output for posterior analysis (derived data)
Produces<aod::CascXiMLScores> xiMLSelections; // optionally aggregate information from ML output for posterior analysis (derived data)
Produces<aod::CascOmMLScores> omegaMLSelections; // optionally aggregate information from ML output for posterior analysis (derived data)

HistogramRegistry histos{"Histos", {}, OutputObjHandlingPolicy::AnalysisObject};
Expand Down Expand Up @@ -137,7 +137,7 @@ struct cascademlselection {
}
mRunNumber = collision.runNumber();
timeStampML = collision.timestamp();
}
}
if constexpr (requires { collision.template bc_as<aod::BCsWithTimestamps>(); }) { // we are in original data
auto bc = collision.template bc_as<aod::BCsWithTimestamps>();
if (mRunNumber == bc.runNumber()) {
Expand Down Expand Up @@ -277,7 +277,7 @@ struct cascademlselection {
void processStandardData(aod::Collision const& collision, CascOriginalDatas const& cascades)
{
initCCDB(collision);

histos.fill(HIST("hEventVertexZ"), collision.posZ());
for (auto& casc : cascades) {
nCandidates++;
Expand Down