Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 ///
0002 /// \class l1t::Stage2Layer2TauAlgorithm
0003 ///
0004 /// Description: Tau algorithm interface, separate clustering
0005 ///
0006 /// Implementation:
0007 ///
0008 /// \author: Jim Brooke - University of Bristol
0009 ///
0010 
0011 //
0012 
0013 #ifndef Stage2Layer2TauAlgorithm_h
0014 #define Stage2Layer2TauAlgorithm_h
0015 
0016 #include "DataFormats/L1TCalorimeter/interface/CaloCluster.h"
0017 #include "DataFormats/L1TCalorimeter/interface/CaloTower.h"
0018 
0019 #include "DataFormats/L1Trigger/interface/Tau.h"
0020 
0021 #include <vector>
0022 
0023 namespace l1t {
0024 
0025   class Stage2Layer2TauAlgorithm {
0026   public:
0027     virtual void processEvent(const std::vector<l1t::CaloCluster>& clusters,
0028                               const std::vector<l1t::CaloTower>& towers,
0029                               std::vector<l1t::Tau>& taus) = 0;
0030 
0031     virtual ~Stage2Layer2TauAlgorithm() {}
0032   };
0033 
0034 }  // namespace l1t
0035 
0036 #endif