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