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
- Add `needEMCTrigger` configurable option. If one uses this one for the EM Event Selection, one also needs to enable this here to ensure the table sizes of `EMCEMEventId` and `SkimEMCClusters` have the same size.
- Header cleanup with clang´-tidy
Configurable<std::vector<int>> clusterDefinitions{"clusterDefinitions", {0, 1, 2, 10, 11, 12, 13, 20, 21, 22, 30, 40, 41, 42, 43, 44, 45}, "Cluster definitions to be accepted (e.g. 13 for kV3MostSplitLowSeed)"};
54
63
Configurable<float> maxdEta{"maxdEta", 0.1, "Set a maximum difference in eta for tracks and cluster to still count as matched"};
55
64
Configurable<float> maxdPhi{"maxdPhi", 0.1, "Set a maximum difference in phi for tracks and cluster to still count as matched"};
65
+
Configurable<bool> needEMCTrigger{"needEMCTrigger", false, "flag to only save events which have kTVXinEMC trigger bit. To reduce PbPb derived data size"};
auto groupedMTs = emcmatchedtracks.sliceBy(MTperCluster, emccluster.globalIndex());
151
+
auto groupedMTs = emcmatchedtracks.sliceBy(psMTperCluster, emccluster.globalIndex());
139
152
vTrackIds.reserve(groupedMTs.size());
140
153
vEta.reserve(groupedMTs.size());
141
154
vPhi.reserve(groupedMTs.size());
@@ -195,18 +208,18 @@ struct skimmerGammaCalo {
195
208
mcLabels.clear();
196
209
}
197
210
}
198
-
PROCESS_SWITCH(skimmerGammaCalo, processRec, "process only reconstructed info", true);
199
-
PROCESS_SWITCH(skimmerGammaCalo, processMC, "process MC info", false); // Run this in addition to processRec for MCs to copy the cluster mc labels from the EMCALMCClusters to the skimmed EMCClusterMCLabels table
211
+
PROCESS_SWITCH(SkimmerGammaCalo, processRec, "process only reconstructed info", true);
212
+
PROCESS_SWITCH(SkimmerGammaCalo, processMC, "process MC info", false); // Run this in addition to processRec for MCs to copy the cluster mc labels from the EMCALMCClusters to the skimmed EMCClusterMCLabels table
0 commit comments