Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 ///
0002 /// \class l1t::Stage2MainProcessor
0003 ///
0004 /// Description: interface for the main processor
0005 ///
0006 /// Implementation:
0007 ///
0008 /// \author: Jim Brooke - University of Bristol
0009 ///
0010 
0011 //
0012 
0013 #ifndef Stage2MainProcessor_h
0014 #define Stage2MainProcessor_h
0015 
0016 #include "DataFormats/L1TCalorimeter/interface/CaloTower.h"
0017 #include "DataFormats/L1TCalorimeter/interface/CaloCluster.h"
0018 
0019 #include "DataFormats/L1Trigger/interface/EGamma.h"
0020 #include "DataFormats/L1Trigger/interface/Tau.h"
0021 #include "DataFormats/L1Trigger/interface/Jet.h"
0022 #include "DataFormats/L1Trigger/interface/EtSum.h"
0023 
0024 namespace l1t {
0025 
0026   class Stage2MainProcessor {
0027   public:
0028     virtual void processEvent(const std::vector<l1t::CaloTower>& inTowers,
0029                               std::vector<l1t::CaloTower>& outTowers,
0030                               std::vector<l1t::CaloCluster>& clusters,
0031                               std::vector<l1t::EGamma>& mpEGammas,
0032                               std::vector<l1t::Tau>& mpTaus,
0033                               std::vector<l1t::Jet>& mpJets,
0034                               std::vector<l1t::EtSum>& mpSums,
0035                               std::vector<l1t::EGamma>& egammas,
0036                               std::vector<l1t::Tau>& taus,
0037                               std::vector<l1t::Jet>& jets,
0038                               std::vector<l1t::EtSum>& etSums) = 0;
0039 
0040     virtual ~Stage2MainProcessor() {}
0041   };
0042 
0043 }  // namespace l1t
0044 
0045 #endif