diff --git a/PhysicsAnalysis/Algorithms/AsgAnalysisAlgorithms/AsgAnalysisAlgorithms/AsgViewFromSelectionAlg.h b/PhysicsAnalysis/Algorithms/AsgAnalysisAlgorithms/AsgAnalysisAlgorithms/AsgViewFromSelectionAlg.h index 53cf7d279448f4d6bfbd9b3455184404c39beca2..247910d36f8b4cd806fbe86721292d0f968289f5 100644 --- a/PhysicsAnalysis/Algorithms/AsgAnalysisAlgorithms/AsgAnalysisAlgorithms/AsgViewFromSelectionAlg.h +++ b/PhysicsAnalysis/Algorithms/AsgAnalysisAlgorithms/AsgAnalysisAlgorithms/AsgViewFromSelectionAlg.h @@ -15,6 +15,7 @@ #include <SystematicsHandles/SysReadHandle.h> #include <SystematicsHandles/SysWriteHandle.h> #include <SystematicsHandles/SysListHandle.h> +#include <limits> namespace CP { @@ -61,6 +62,12 @@ namespace CP private: std::vector<SelectionType> m_ignore; + private: + bool m_sortPt {false}; + + private: + std::size_t m_sizeLimit {std::numeric_limits<std::size_t>::max()}; + /// the list of accessors and cut ignore list private: std::vector<std::pair<std::unique_ptr<ISelectionAccessor>,SelectionType> > m_accessors; diff --git a/PhysicsAnalysis/Algorithms/AsgAnalysisAlgorithms/Root/AsgViewFromSelectionAlg.cxx b/PhysicsAnalysis/Algorithms/AsgAnalysisAlgorithms/Root/AsgViewFromSelectionAlg.cxx index 1983197faf9a4bc8b02a7485ec1913a564a08ddb..0013e93393e4167682e0ae0f4833f5e7529c18d7 100644 --- a/PhysicsAnalysis/Algorithms/AsgAnalysisAlgorithms/Root/AsgViewFromSelectionAlg.cxx +++ b/PhysicsAnalysis/Algorithms/AsgAnalysisAlgorithms/Root/AsgViewFromSelectionAlg.cxx @@ -44,6 +44,19 @@ namespace CP if (keep) output->push_back (particle); } + if (m_sortPt) + { + std::sort (output->begin(), output->end(), [] (const xAOD::IParticle *a, const xAOD::IParticle *b) {return a->pt() > b->pt();}); + } + + // This is not necessarily the most efficient mechanism, as we add + // elements that then get removed again. However, if we do sort + // objects, this is the safest mechanism to really get the first N + // objects. Plus it should still be reasonably performant and few + // people are expected to use this option anyways. + if (output->size() > m_sizeLimit) + output->resize (m_sizeLimit); + ANA_CHECK (evtStore()->record (output.release(), m_outputHandle.getName (sys))); return StatusCode::SUCCESS; @@ -87,6 +100,8 @@ namespace CP /// isn't supported as a property type for AnaAlgorithm right now declareProperty ("selection", m_selection, "the list of selection decorations"); declareProperty ("ignore", m_ignore, "the list of cuts to *ignore* for each selection"); + declareProperty ("sortPt", m_sortPt, "whether to sort objects in pt"); + declareProperty ("sizeLimit", m_sizeLimit, "the limit on the size of the output container"); }