CMS 3D CMS Logo

List of all members | Classes | Public Member Functions | Private Types | Private Attributes
LayerHitMapCache Class Reference

#include <LayerHitMapCache.h>

Classes

class  SimpleCache
 

Public Member Functions

RecHitsSortedInPhiadd (const SeedingLayerSetsHits::SeedingLayer &layer, std::unique_ptr< RecHitsSortedInPhi > hits)
 
void clear ()
 
void extend (const LayerHitMapCache &other)
 
 LayerHitMapCache (unsigned int initSize=50)
 
 LayerHitMapCache (LayerHitMapCache &&)=default
 
const RecHitsSortedInPhioperator() (const SeedingLayerSetsHits::SeedingLayer &layer, const TrackingRegion &region)
 
LayerHitMapCacheoperator= (LayerHitMapCache &&)=default
 

Private Types

typedef SimpleCache Cache
 

Private Attributes

Cache theCache
 

Detailed Description

A cache adressable by DetLayer* and TrackingRegion* . Used to cache all the hits of a DetLayer.

Definition at line 14 of file LayerHitMapCache.h.

Member Typedef Documentation

◆ Cache

Definition at line 62 of file LayerHitMapCache.h.

Constructor & Destructor Documentation

◆ LayerHitMapCache() [1/2]

LayerHitMapCache::LayerHitMapCache ( unsigned int  initSize = 50)
inline

Definition at line 65 of file LayerHitMapCache.h.

65 : theCache(initSize) {}

◆ LayerHitMapCache() [2/2]

LayerHitMapCache::LayerHitMapCache ( LayerHitMapCache &&  )
default

Member Function Documentation

◆ add()

RecHitsSortedInPhi* LayerHitMapCache::add ( const SeedingLayerSetsHits::SeedingLayer layer,
std::unique_ptr< RecHitsSortedInPhi hits 
)
inline

Definition at line 74 of file LayerHitMapCache.h.

References LayerHitMapCache::SimpleCache::add(), hfClusterShapes_cfi::hits, nano_mu_digi_cff::layer, and theCache.

Referenced by operator()(), and counter.Counter::register().

74  {
75  RecHitsSortedInPhi* ptr = hits.get();
76  theCache.add(layer.index(), hits.release());
77  return ptr;
78  }
void add(KeyType key, ValueType *value)
add object to cache. It is caller responsibility to check that object is not yet there.

◆ clear()

void LayerHitMapCache::clear ( void  )
inline

◆ extend()

void LayerHitMapCache::extend ( const LayerHitMapCache other)
inline

◆ operator()()

const RecHitsSortedInPhi& LayerHitMapCache::operator() ( const SeedingLayerSetsHits::SeedingLayer layer,
const TrackingRegion region 
)
inline

Definition at line 80 of file LayerHitMapCache.h.

References add(), RecHitsSortedInPhi::all(), cms::cuda::assert(), LayerHitMapCache::SimpleCache::get(), submitPVResolutionJobs::key, nano_mu_digi_cff::layer, LogDebug, nano_mu_digi_cff::region, theCache, and createJobs::tmp.

80  {
81  int key = layer.index();
82  assert(key >= 0);
83  const RecHitsSortedInPhi* lhm = theCache.get(key);
84  if (lhm == nullptr) {
85  auto tmp =
86  add(layer, std::make_unique<RecHitsSortedInPhi>(region.hits(layer), region.origin(), layer.detLayer()));
87  tmp->theOrigin = region.origin();
88  lhm = tmp;
89  LogDebug("LayerHitMapCache") << " I got" << lhm->all().second - lhm->all().first
90  << " hits in the cache for: " << layer.detLayer();
91  } else {
92  // std::cout << region.origin() << " " << lhm->theOrigin << std::endl;
93  LogDebug("LayerHitMapCache") << " I got" << lhm->all().second - lhm->all().first
94  << " hits FROM THE cache for: " << layer.detLayer();
95  }
96  return *lhm;
97  }
assert(be >=bs)
key
prepare the HTCondor submission files and eventually submit them
RecHitsSortedInPhi * add(const SeedingLayerSetsHits::SeedingLayer &layer, std::unique_ptr< RecHitsSortedInPhi > hits)
tmp
align.sh
Definition: createJobs.py:716
const ValueType * get(KeyType key) const
#define LogDebug(id)

◆ operator=()

LayerHitMapCache& LayerHitMapCache::operator= ( LayerHitMapCache &&  )
default

Member Data Documentation

◆ theCache

Cache LayerHitMapCache::theCache
private

Definition at line 100 of file LayerHitMapCache.h.

Referenced by add(), clear(), extend(), and operator()().