File indexing completed on 2024-04-06 12:19:51
0001 #ifndef L1GCTJETSORTER_H_
0002 #define L1GCTJETSORTER_H_
0003
0004 #include <vector>
0005
0006 class L1GctJetCand;
0007
0008 class L1GctJetSorter {
0009 public:
0010
0011 typedef std::vector<L1GctJetCand> JetVector;
0012
0013 L1GctJetSorter();
0014 L1GctJetSorter(JetVector& inputJets);
0015
0016 ~L1GctJetSorter();
0017
0018 void setJets(JetVector& inputJets);
0019
0020 JetVector getSortedJets() const;
0021 JetVector getInputJets() const;
0022
0023 private:
0024 JetVector m_inputJets;
0025 };
0026
0027 #endif