Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 ///step03
0002 /// \class l1t::Stage2TowerDecompressAlgorithm
0003 ///
0004 /// Description: convert input quantities to ECAL + HCAL towers
0005 ///
0006 /// Implementation:
0007 ///
0008 /// \author: Jim Brooke - University of Bristol
0009 ///
0010 
0011 //
0012 
0013 #ifndef Stage2TowerDecompressAlgorithm_h
0014 #define Stage2TowerDecompressAlgorithm_h
0015 
0016 #include "DataFormats/L1TCalorimeter/interface/CaloTower.h"
0017 
0018 namespace l1t {
0019 
0020   class Stage2TowerDecompressAlgorithm {
0021   public:
0022     virtual void processEvent(const std::vector<l1t::CaloTower>& inTowers, std::vector<l1t::CaloTower>& outTowers) = 0;
0023 
0024     virtual ~Stage2TowerDecompressAlgorithm() {}
0025   };
0026 
0027 }  // namespace l1t
0028 
0029 #endif