Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-07 04:36:51

0001 ///
0002 /// \class l1t::Stage2Layer2JetSumAlgorithm
0003 ///
0004 /// Description: interface for MP firmware
0005 ///
0006 /// Implementation:
0007 ///
0008 /// \author: Jim Brooke - University of Bristol
0009 ///
0010 
0011 //
0012 
0013 #ifndef Stage2Layer2JetSumAlgorithm_h
0014 #define Stage2Layer2JetSumAlgorithm_h
0015 
0016 #include "DataFormats/L1Trigger/interface/Jet.h"
0017 #include "DataFormats/L1Trigger/interface/EtSum.h"
0018 
0019 #include <vector>
0020 
0021 namespace l1t {
0022 
0023   class Stage2Layer2JetSumAlgorithm {
0024   public:
0025     virtual void processEvent(const std::vector<l1t::Jet>& alljets, std::vector<l1t::EtSum>& htsums) = 0;
0026 
0027     virtual ~Stage2Layer2JetSumAlgorithm() {}
0028   };
0029 
0030 }  // namespace l1t
0031 
0032 #endif