CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
SeedGeneratorFromRegionHits.cc
Go to the documentation of this file.
2 
6 
7 
8 
9 
12  : theHitsGenerator(ohg), theComparitor(asc), theSeedCreator(asp)
13 { }
14 
15 
17  const TrackingRegion & region, const edm::Event& ev, const edm::EventSetup& es)
18 {
19  if (theComparitor) theComparitor->init(ev, es);
20  theSeedCreator->init(region, es, theComparitor.get());
21  const OrderedSeedingHits & hitss = theHitsGenerator->run(region, ev, es);
22 
23  unsigned int nHitss = hitss.size();
24  // Modified 10/Jun/2014 Mark Grimes - At 140 pileup this reserve massively overestimates
25  // the amount of memory required. Removing it doesn't appear to slow down the algorithm
26  // noticeably.
27  //if (seedCollection.empty()) seedCollection.reserve(nHitss); // don't do multiple reserves in the case of multiple regions: it would make things even worse
28  // // as it will cause N re-allocations instead of the normal log(N)/log(2)
29  for (unsigned int iHits = 0; iHits < nHitss; ++iHits) {
30  const SeedingHitSet & hits = hitss[iHits];
31  if (!theComparitor || theComparitor->compatible(hits, region) ) {
32  theSeedCreator->makeSeed(seedCollection, hits);
33  }
34  }
35  theHitsGenerator->clear();
36 }
bool ev
virtual unsigned int size() const =0
SeedGeneratorFromRegionHits(OrderedHitsGenerator *aGenerator, SeedComparitor *aComparitor=0, SeedCreator *aSeedCreator=0)
std::unique_ptr< SeedComparitor > theComparitor
std::vector< TrajectorySeed > TrajectorySeedCollection
std::unique_ptr< SeedCreator > theSeedCreator
void run(TrajectorySeedCollection &seedCollection, const TrackingRegion &region, const edm::Event &ev, const edm::EventSetup &es)
std::unique_ptr< OrderedHitsGenerator > theHitsGenerator