Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:20:17

0001 ///
0002 /// Description: Firmware headers
0003 ///
0004 /// Implementation:
0005 ///    Concrete firmware implementations
0006 ///
0007 /// \author: Jim Brooke - University of Bristol
0008 ///
0009 
0010 //
0011 //
0012 
0013 #ifndef Stage2Layer2DemuxTauAlgoFirmware_H
0014 #define Stage2Layer2DemuxTauAlgoFirmware_H
0015 
0016 #include "L1Trigger/L1TCalorimeter/interface/Stage2Layer2DemuxTauAlgo.h"
0017 #include "L1Trigger/L1TCalorimeter/interface/CaloParamsHelper.h"
0018 
0019 namespace l1t {
0020 
0021   // Imp1 is for v1 and v2
0022   class Stage2Layer2DemuxTauAlgoFirmwareImp1 : public Stage2Layer2DemuxTauAlgo {
0023   public:
0024     Stage2Layer2DemuxTauAlgoFirmwareImp1(CaloParamsHelper const* params);  //const CaloMainProcessorParams & dbPars);
0025     ~Stage2Layer2DemuxTauAlgoFirmwareImp1() override;
0026     void processEvent(const std::vector<Tau>& inputTaus, std::vector<Tau>& outputTaus) override;
0027 
0028   private:
0029     // parameters
0030     CaloParamsHelper const* params_;
0031   };
0032 
0033 }  // namespace l1t
0034 
0035 #endif