ATLAS Offline Software
Loading...
Searching...
No Matches
JetGroupSingleClique.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef TRIGHLTJETHYPO_JETGROUPSINGLECLIQUE_H
6#define TRIGHLTJETHYPO_JETGROUPSINGLECLIQUE_H
7
11#include <vector>
12
13using CondInd2JetGroupsInds = std::map<int, std::vector<std::size_t>>;
14
15using JetGroupInd2ElemInds = std::map<int, std::vector<std::size_t>>;
16
17
18typedef std::unique_ptr<ITrigJetHypoInfoCollector> Collector;
19
21 /*
22 * create a jet group for monoclique simple trees
23 */
24 public:
25 JetGroupSingleClique(const std::vector<std::size_t>& satisfyingJets,
26 std::size_t n_required);
27
28 virtual std::vector<std::size_t> next(const Collector&) override;
29
30 virtual bool valid() const override;
31
32 private:
33 std::vector<std::size_t> m_jetGroupIndices;
34 bool m_done{false};
35};
36
37#endif
std::unique_ptr< ITrigJetHypoInfoCollector > Collector
Definition FastReducer.h:22
std::map< int, std::vector< std::size_t > > CondInd2JetGroupsInds
std::unique_ptr< ITrigJetHypoInfoCollector > Collector
JetGroupSingleClique(const std::vector< std::size_t > &satisfyingJets, std::size_t n_required)
virtual bool valid() const override
virtual std::vector< std::size_t > next(const Collector &) override
std::vector< std::size_t > m_jetGroupIndices
std::map< int, std::vector< std::size_t > > JetGroupInd2ElemInds