Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 ///
0002 /// \class l1t::Stage1Layer2HFBitCountAlgorithm
0003 ///
0004 /// Description: interface for MP firmware
0005 ///
0006 /// Implementation:
0007 ///
0008 /// \author: R. Alex Barbieri
0009 ///
0010 
0011 //
0012 
0013 #ifndef Stage1Layer2HFBitCountAlgorithm_h
0014 #define Stage1Layer2HFBitCountAlgorithm_h
0015 
0016 #include "DataFormats/L1TCalorimeter/interface/CaloRegion.h"
0017 #include "DataFormats/L1TCalorimeter/interface/CaloEmCand.h"
0018 #include "DataFormats/L1Trigger/interface/CaloSpare.h"
0019 
0020 #include <vector>
0021 
0022 namespace l1t {
0023 
0024   class Stage1Layer2HFBitCountAlgorithm {
0025   public:
0026     virtual void processEvent(const std::vector<l1t::CaloRegion>& regions,
0027                               const std::vector<l1t::CaloEmCand>& EMCands,
0028                               l1t::CaloSpare* spare) = 0;
0029 
0030     virtual ~Stage1Layer2HFBitCountAlgorithm() {}
0031   };
0032 
0033 }  // namespace l1t
0034 
0035 #endif