Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 ///step03
0002 /// \class l1t::Stage1Layer2TauAlgorithm
0003 ///
0004 /// Description: interface for MP firmware
0005 ///
0006 /// Implementation:
0007 ///
0008 /// \author: Jim Brooke - University of Bristol
0009 ///
0010 
0011 //
0012 
0013 #ifndef Stage1Layer2TauAlgorithm_h
0014 #define Stage1Layer2TauAlgorithm_h
0015 
0016 #include "DataFormats/L1TCalorimeter/interface/CaloEmCand.h"
0017 #include "DataFormats/L1TCalorimeter/interface/CaloStage1Cluster.h"
0018 #include "DataFormats/L1TCalorimeter/interface/CaloRegion.h"
0019 
0020 #include "DataFormats/L1Trigger/interface/Tau.h"
0021 
0022 #include <vector>
0023 
0024 namespace l1t {
0025 
0026   class Stage1Layer2TauAlgorithm {
0027   public:
0028     virtual void processEvent(  //const std::vector<l1t::CaloStage1> & clusters,
0029         const std::vector<l1t::CaloEmCand>& clusters,
0030         const std::vector<l1t::CaloRegion>& regions,
0031         std::vector<l1t::Tau>* isoTaus,
0032         std::vector<l1t::Tau>* taus) = 0;
0033 
0034     virtual ~Stage1Layer2TauAlgorithm() {}
0035     std::string regionPUSType;
0036     std::vector<double> regionPUSParams;
0037   };
0038 
0039 }  // namespace l1t
0040 
0041 #endif