CMS 3D CMS Logo

PassThruSeedFinder.cc
Go to the documentation of this file.
2 
3 #include <unordered_map>
4 
6 public:
8  PassThruSeedFinder(const PassThruSeedFinder&) = delete;
10 
12  const std::vector<bool>& mask,
13  std::vector<bool>& seedable) override;
14 
15 private:
16 };
17 
19 
21 
22 // the starting state of seedable is all false!
24  const std::vector<bool>& mask,
25  std::vector<bool>& seedable) {
26  seedable = std::vector<bool>(input->size(), true);
27 }
PassThruSeedFinder & operator=(const PassThruSeedFinder &)=delete
constexpr uint32_t mask
Definition: gpuClustering.h:24
static std::string const input
Definition: EdmProvDump.cc:47
PassThruSeedFinder(const edm::ParameterSet &conf)
void findSeeds(const edm::Handle< reco::PFRecHitCollection > &input, const std::vector< bool > &mask, std::vector< bool > &seedable) override
#define DEFINE_EDM_PLUGIN(factory, type, name)