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
PWGEM/PhotonMeson: Reduce size of derived skimmed photon AO2Ds (#7044)
* PWGEM/PhotonMeson: Reduce size of derived skimmed photon AO2Ds
- Remove columns from skimmedCluster table that are not needed for analysis to reduce size of derived data
- Remove index to collision table to avoid unbound indices
- Absorb matched tracks in cluster table
- Remove dedicated matched track arguments from GammaGamma task
DECLARE_SOA_DYNAMIC_COLUMN(Pt, pt, [](float e, float eta, float m = 0) -> float { returnsqrt(e * e - m * m) / cosh(eta); }); //! cluster pt, mass to be given as argument when getter is called!
441
441
} // namespace emccluster
442
442
DECLARE_SOA_TABLE(SkimEMCClusters, "AOD", "SKIMEMCCLUSTERS", //! table of skimmed EMCal clusters
Copy file name to clipboardExpand all lines: PWGEM/PhotonMeson/TableProducer/skimmerGammaCalo.cxx
+23-20Lines changed: 23 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -44,28 +44,26 @@ struct skimmerGammaCalo {
44
44
Configurable<float> maxTime{"maxTime", +200., "Maximum cluster time for time cut"};
45
45
Configurable<float> minM02{"minM02", 0.0, "Minimum M02 for M02 cut"};
46
46
Configurable<float> maxM02{"maxM02", 1.0, "Maximum M02 for M02 cut"};
47
+
Configurable<float> minE{"minE", 0.5, "Minimum energy for energy cut"};
47
48
Configurable<bool> hasPropagatedTracks{"hasPropagatedTracks", false, "temporary flag, only set to true when running over data which has the tracks propagated to EMCal/PHOS!"};
0 commit comments