File indexing completed on 2024-09-07 04:36:51
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #ifndef Stage2Layer2JetAlgorithm_h
0014 #define Stage2Layer2JetAlgorithm_h
0015
0016 #include "DataFormats/L1TCalorimeter/interface/CaloTower.h"
0017 #include "DataFormats/L1Trigger/interface/Jet.h"
0018 #include "DataFormats/L1Trigger/interface/EtSum.h"
0019
0020 #include <vector>
0021
0022 namespace l1t {
0023
0024 class Stage2Layer2JetAlgorithm {
0025 public:
0026 virtual void processEvent(const std::vector<l1t::CaloTower>& towers,
0027 std::vector<l1t::Jet>& jets,
0028 std::vector<l1t::Jet>& alljets) = 0;
0029
0030 virtual ~Stage2Layer2JetAlgorithm() {}
0031 };
0032
0033 }
0034
0035 #endif