CMS 3D CMS Logo

CachingSeedCleanerBySharedInput.cc
Go to the documentation of this file.
2 
4 
6 
8 
9 #include <algorithm>
10 
11 void CachingSeedCleanerBySharedInput::init(const std::vector<Trajectory> *vect) {
12  theVault.clear();
13  theCache.clear();
14 }
15 
17  //edm::LogInfo("CachingSeedCleanerBySharedInput") << " Calls: " << calls_ << ", Tracks: " << tracks_ <<", Comps: " << comps_ << " Vault: " << theVault.size() << ".";
18  //calls_ = comps_ = tracks_ = 0;
19  theVault.clear();
20  theCache.clear();
21 }
22 
24  unsigned int idx = theVault.size();
25  theVault.resize(idx + 1);
26  // a vector of shared pointers....
27  auto &hits = theVault.back();
28  (*trj).validRecHits(hits);
29 
30  for (auto const &h : hits) {
31  auto detid = h->geographicalId().rawId();
32 
33  //For seeds that are made only of pixel hits, it is pointless to store the
34  //information about hits on other sub-detector of the trajectory.
35  if (theOnlyPixelHits && h->geographicalId().subdetId() != PixelSubdetector::PixelBarrel &&
36  h->geographicalId().subdetId() != PixelSubdetector::PixelEndcap)
37  continue;
38  if (detid)
39  theCache.insert(std::pair<uint32_t, unsigned int>(detid, idx));
40  }
41 }
42 
44  if (seed->nHits() == 0) {
45  return true;
46  }
47 
48  auto range = seed->recHits();
49 
50  auto first = range.first;
51  auto last = range.second;
52  auto detid = first->geographicalId().rawId();
53 
54  //calls_++;
55  auto itrange = theCache.equal_range(detid);
56  for (auto it = itrange.first; it != itrange.second; ++it) {
57  assert(it->first == detid);
58  //tracks_++;
59 
60  // seeds are limited to the first "theNumHitsForSeedCleaner" hits in trajectory...
61  int ext = std::min(theNumHitsForSeedCleaner, int(theVault[it->second].size()));
62  auto ts = theVault[it->second].begin();
63  auto te = ts + ext;
64  auto t = ts;
65  auto curr = first;
66  for (; curr != last; ++curr) {
67  bool found = false;
68  for (; t != te; ++t) {
69  //comps_++;
70  if (curr->sharesInput((**t).hit(), TrackingRecHit::all)) {
71  found = true;
72  ++t;
73  break;
74  }
75  }
76  if (!found)
77  break;
78  }
79  if (curr == last)
80  return false;
81  }
82  return true;
83 }
CachingSeedCleanerBySharedInput::done
void done() override
Tells the cleaner that the seeds are finished, and so it can clear any cache it has.
Definition: CachingSeedCleanerBySharedInput.cc:16
ext
Definition: memstream.h:15
FastTimerService_cff.range
range
Definition: FastTimerService_cff.py:34
PixelSubdetector.h
MessageLogger.h
PixelSubdetector::PixelEndcap
Definition: PixelSubdetector.h:11
PixelSubdetector::PixelBarrel
Definition: PixelSubdetector.h:11
hfClusterShapes_cfi.hits
hits
Definition: hfClusterShapes_cfi.py:5
CachingSeedCleanerBySharedInput::init
void init(const std::vector< Trajectory > *vect) override
Provides the cleaner a pointer to the vector where trajectories are stored, in case it does not want ...
Definition: CachingSeedCleanerBySharedInput.cc:11
min
T min(T a, T b)
Definition: MathUtil.h:58
cms::cuda::assert
assert(be >=bs)
newFWLiteAna.found
found
Definition: newFWLiteAna.py:118
training_settings.idx
idx
Definition: training_settings.py:16
dqmdumpme.first
first
Definition: dqmdumpme.py:55
dqmdumpme.last
last
Definition: dqmdumpme.py:56
h
OrderedSet.t
t
Definition: OrderedSet.py:90
TrajectorySeed.h
CachingSeedCleanerBySharedInput::theOnlyPixelHits
bool theOnlyPixelHits
Definition: CachingSeedCleanerBySharedInput.h:29
CachingSeedCleanerBySharedInput.h
TrackingRecHit::all
Definition: TrackingRecHit.h:59
CachingSeedCleanerBySharedInput::add
void add(const Trajectory *traj) override
Informs the cleaner that a new trajectory has been made, in case the cleaner keeps a local collection...
Definition: CachingSeedCleanerBySharedInput.cc:23
CachingSeedCleanerBySharedInput::theVault
std::vector< Trajectory::RecHitContainer > theVault
Definition: CachingSeedCleanerBySharedInput.h:25
CachingSeedCleanerBySharedInput::good
bool good(const TrajectorySeed *seed) override
Returns true if the seed is not overlapping with another trajectory.
Definition: CachingSeedCleanerBySharedInput.cc:43
Trajectory
Definition: Trajectory.h:38
TrajectorySeed
Definition: TrajectorySeed.h:17
CachingSeedCleanerBySharedInput::theCache
std::unordered_multimap< unsigned int, unsigned int > theCache
Definition: CachingSeedCleanerBySharedInput.h:26
CachingSeedCleanerBySharedInput::theNumHitsForSeedCleaner
int theNumHitsForSeedCleaner
Definition: CachingSeedCleanerBySharedInput.h:28
SurveyInfoScenario_cff.seed
seed
Definition: SurveyInfoScenario_cff.py:295