File indexing completed on 2024-04-06 12:20:17
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef L1TCALOSTAGE1BitCountsALGORITHMIMP_H
0018 #define L1TCALOSTAGE1BitCountsALGORITHMIMP_H
0019
0020 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0021 #include "L1Trigger/L1TCalorimeter/interface/Stage1Layer2HFBitCountAlgorithm.h"
0022 #include "L1Trigger/L1TCalorimeter/interface/CaloParamsHelper.h"
0023
0024 namespace l1t {
0025
0026 class Stage1Layer2HFMinimumBias : public Stage1Layer2HFBitCountAlgorithm {
0027 public:
0028 Stage1Layer2HFMinimumBias(CaloParamsHelper const*);
0029 ~Stage1Layer2HFMinimumBias() override = default;
0030 void processEvent(const std::vector<l1t::CaloRegion>& regions,
0031 const std::vector<l1t::CaloEmCand>& EMCands,
0032 l1t::CaloSpare* spare) override;
0033
0034 private:
0035 };
0036
0037 }
0038
0039 #endif