You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: PWGLF/TableProducer/Strangeness/sigma0builder.cxx
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1259,13 +1259,13 @@ struct sigma0builder {
1259
1259
// Fill tables
1260
1260
// Pi0
1261
1261
if (fillPi0Tables && MCGenInfo.IsPi0) {
1262
-
pi0Gens(MCGenInfo.IsProducedByGenerator, MCGenInfo.MCPt); // optional table to store generated pi0 candidates. Be careful, this is a large table!
1262
+
pi0Gens(MCGenInfo.IsProducedByGenerator, MCGenInfo.MCPt, mcParticle.y()); // optional table to store generated pi0 candidates. Be careful, this is a large table!
1263
1263
pi0GenCollRefs(MCGenInfo.MCCollId); // link to stramccollision table
1264
1264
}
1265
1265
1266
1266
// Sigma0/ASigma0
1267
1267
if (fillSigma0Tables && (MCGenInfo.IsSigma0 || MCGenInfo.IsAntiSigma0)) {
Configurable<bool> mc_keepOnlyFromGenerator{"mc_keepOnlyFromGenerator", true, "if true, consider only particles from generator to calculate efficiency."};
127
+
struct : ConfigurableGroup {
128
+
std::string prefix = "genSelections"; // JSON group name
129
+
Configurable<bool> mc_keepOnlyFromGenerator{"mc_keepOnlyFromGenerator", true, "if true, consider only particles from generator to calculate efficiency."};
0 commit comments