CMS 3D CMS Logo

List of all members | Classes | Public Types | Public Member Functions | Private Attributes
mkfit::LayerOfHits Class Reference

#include <HitStructures.h>

Classes

struct  HitInfo
 
struct  Initializator
 

Public Types

using axis_eta_t = axis< float, bin_index_t, 16, 8 >
 
using axis_phi_t = axis_pow2_u1< float, bin_index_t, 16, 8 >
 
using bin_content_t = unsigned int
 
using bin_index_t = unsigned short
 
using binnor_t = binnor< bin_content_t, axis_phi_t, axis_eta_t, 18, 14 >
 

Public Member Functions

void beginRegistrationOfHits (const HitVec &hitv)
 
void endRegistrationOfHits (bool build_original_to_internal_map)
 
unsigned int getHitIndexFromOriginal (unsigned int i) const
 
unsigned int getOriginalHitIndex (unsigned int i) const
 
float hit_phi (unsigned int i) const
 
float hit_q (unsigned int i) const
 
const HithitArray () const
 
bool is_barrel () const
 
bool is_endcap () const
 
bool is_pixel () const
 
bool is_stereo () const
 
bool is_within_r_limits (float r) const
 
WSR_Result is_within_r_sensitive_region (float r, float dr) const
 
bool is_within_z_limits (float z) const
 
WSR_Result is_within_z_sensitive_region (float z, float dz) const
 
bool isBinDead (bin_index_t pi, bin_index_t qi) const
 
int layer_id () const
 
const LayerInfolayer_info () const
 
 LayerOfHits (const LayerOfHits::Initializator &i)
 
unsigned int nHits () const
 
bin_index_t phiBin (float phi) const
 
bin_index_t phiBinChecked (float phi) const
 
bin_index_t phiMaskApply (bin_index_t in) const
 
binnor_t::C_pair phiQBinContent (bin_index_t pi, bin_index_t qi) const
 
void printBins ()
 
bin_index_t qBin (float q) const
 
bin_index_t qBinChecked (float q) const
 
const HitrefHit (int i) const
 
void registerHit (unsigned int idx)
 
void reset ()
 
int subdet () const
 
void suckInDeads (const DeadVec &deadv)
 
void suckInHits (const HitVec &hitv)
 
 ~LayerOfHits ()
 

Private Attributes

axis_eta_t m_ax_eta
 
axis_phi_t m_ax_phi
 
binnor_t m_binnor
 
std::vector< bool > m_dead_bins
 
const HitVecm_ext_hits
 
std::vector< unsigned int > m_ext_idcs
 
std::vector< HitInfom_hit_infos
 
std::vector< float > m_hit_phis
 
std::vector< float > m_hit_qs
 
unsigned int * m_hit_ranks = nullptr
 
bool m_is_barrel
 
const LayerInfom_layer_info = nullptr
 
unsigned int m_max_ext_idx
 
unsigned int m_min_ext_idx
 
unsigned int m_n_hits = 0
 

Detailed Description

Definition at line 24 of file HitStructures.h.

Member Typedef Documentation

◆ axis_eta_t

Definition at line 29 of file HitStructures.h.

◆ axis_phi_t

Definition at line 28 of file HitStructures.h.

◆ bin_content_t

using mkfit::LayerOfHits::bin_content_t = unsigned int

Definition at line 27 of file HitStructures.h.

◆ bin_index_t

using mkfit::LayerOfHits::bin_index_t = unsigned short

Definition at line 26 of file HitStructures.h.

◆ binnor_t

Definition at line 30 of file HitStructures.h.

Constructor & Destructor Documentation

◆ LayerOfHits()

mkfit::LayerOfHits::LayerOfHits ( const LayerOfHits::Initializator i)

Definition at line 33 of file HitStructures.cc.

References mps_fire::i, mkfit::LayerInfo::is_barrel(), m_ax_eta, m_ax_phi, m_dead_bins, m_is_barrel, m_layer_info, mkfit::axis_pow2_base< R, I, M, N >::size_of_N(), and mkfit::axis< R, I, M, N >::size_of_N().

35  m_ax_eta(i.m_qmin, i.m_qmax, i.m_nq),
36  m_binnor(m_ax_phi, m_ax_eta, true, false) // yes-radix, no-keep-cons
37  {
38  m_layer_info = &i.m_linfo;
40 
42  }
unsigned int size_of_N() const
Definition: binnor.h:143
constexpr float PI
Definition: Config.h:7
std::vector< bool > m_dead_bins
unsigned int size_of_N() const
Definition: binnor.h:88
const LayerInfo * m_layer_info
bool is_barrel() const
Definition: TrackerInfo.h:73

◆ ~LayerOfHits()

mkfit::LayerOfHits::~LayerOfHits ( )

Definition at line 44 of file HitStructures.cc.

44  {
45 #ifdef COPY_SORTED_HITS
46  free_hits();
47 #endif
48  }

Member Function Documentation

◆ beginRegistrationOfHits()

void mkfit::LayerOfHits::beginRegistrationOfHits ( const HitVec hitv)

Definition at line 132 of file HitStructures.cc.

References mkfit::binnor< C, A1, A2, NB_first, NB_count >::begin_registration(), m_binnor, m_ext_hits, m_ext_idcs, m_hit_infos, m_max_ext_idx, m_min_ext_idx, m_n_hits, SiStripPI::max, SiStripPI::min, and mkfit::binnor< C, A1, A2, NB_first, NB_count >::reset_contents().

132  {
133  m_ext_hits = &hitv;
134 
135  m_n_hits = 0;
136  m_hit_infos.clear();
137  m_ext_idcs.clear();
140 
142  m_binnor.begin_registration(128); // initial reserve for cons vectors
143  }
unsigned int m_n_hits
const HitVec * m_ext_hits
unsigned int m_min_ext_idx
void begin_registration(C n_items)
Definition: binnor.h:264
unsigned int m_max_ext_idx
std::vector< unsigned int > m_ext_idcs
std::vector< HitInfo > m_hit_infos
void reset_contents(bool shrink_vectors=true)
Definition: binnor.h:252

◆ endRegistrationOfHits()

void mkfit::LayerOfHits::endRegistrationOfHits ( bool  build_original_to_internal_map)

Definition at line 161 of file HitStructures.cc.

References mkfit::binnor< C, A1, A2, NB_first, NB_count >::finalize_registration(), mps_fire::i, dqmiolumiharvest::j, dqmdumpme::k, m_binnor, m_ext_idcs, m_hit_infos, m_hit_phis, m_hit_qs, m_hit_ranks, m_max_ext_idx, m_min_ext_idx, m_n_hits, mkfit::binnor< C, A1, A2, NB_first, NB_count >::m_ranks, and mkfit::Config::usePhiQArrays.

161  {
162  m_n_hits = m_ext_idcs.size();
163  if (m_n_hits == 0)
164  return;
165 
167 
168  // copy q/phi
169 
170 #ifdef COPY_SORTED_HITS
171  if (m_capacity < m_n_hits) {
172  free_hits();
173  alloc_hits(m_n_hits);
174  }
175 #endif
176 
177  if (Config::usePhiQArrays) {
178  m_hit_phis.resize(m_n_hits);
179  m_hit_qs.resize(m_n_hits);
180  }
181 
182  for (unsigned int i = 0; i < m_n_hits; ++i) {
183  unsigned int j = m_binnor.m_ranks[i]; // index in intermediate
184  unsigned int k = m_ext_idcs[j]; // index in external hit_vec
185 
186 #ifdef COPY_SORTED_HITS
187  memcpy(&m_hits[i], &hitv[k], sizeof(Hit));
188 #endif
189 
190  if (Config::usePhiQArrays) {
191  m_hit_phis[i] = m_hit_infos[j].phi;
192  m_hit_qs[i] = m_hit_infos[j].q;
193  }
194 
195  // Redirect m_binnor.m_ranks[i] to point to external/original index.
196  m_binnor.m_ranks[i] = k;
197  }
198 
199  if (build_original_to_internal_map) {
200  if (m_max_ext_idx - m_min_ext_idx + 1 > 8 * m_n_hits) {
201  // If this happens we might:
202  // a) Use external indices for everything. -- *** We are now. ***
203  // b) Build these maps for seeding layers only.
204  // c) Have a flag in hit-on-track that tells us if the hit index has been remapped,
205  // essentially, if it is a seed hit. This might be smart anyway.
206  // One could use index < -256 or something similar.
207 
208  printf(
209  "LayerOfHits::endRegistrationOfHits() original_to_internal index map vector is largish: m_n_hits=%d, "
210  "map_vector_size=%d\n",
211  m_n_hits,
213  }
214 
215  m_ext_idcs.resize(m_max_ext_idx - m_min_ext_idx + 1);
216  for (unsigned int i = 0; i < m_n_hits; ++i) {
218  }
219  }
220 
221  // We can release m_hit_infos and, if not used, also m_ext_idcs -- and realloc them
222  // on next beginRegistration().
223  // If binnor had keep_cons on we could use it for pre-selection in selectHitIndices()
224  // instead of q and phi arrays -- assuming sufficient precision can be achieved..
225  }
unsigned int m_n_hits
std::vector< float > m_hit_phis
unsigned int m_min_ext_idx
void finalize_registration()
Definition: binnor.h:289
constexpr bool usePhiQArrays
Definition: Config.h:69
std::vector< C > m_ranks
Definition: binnor.h:211
unsigned int * m_hit_ranks
std::vector< float > m_hit_qs
unsigned int m_max_ext_idx
std::vector< unsigned int > m_ext_idcs
std::vector< HitInfo > m_hit_infos

◆ getHitIndexFromOriginal()

unsigned int mkfit::LayerOfHits::getHitIndexFromOriginal ( unsigned int  i) const
inline

Definition at line 89 of file HitStructures.h.

References mps_fire::i, m_ext_idcs, and m_min_ext_idx.

89 { return m_ext_idcs[i - m_min_ext_idx]; }
unsigned int m_min_ext_idx
std::vector< unsigned int > m_ext_idcs

◆ getOriginalHitIndex()

unsigned int mkfit::LayerOfHits::getOriginalHitIndex ( unsigned int  i) const
inline

Definition at line 91 of file HitStructures.h.

References mps_fire::i, m_binnor, and mkfit::binnor< C, A1, A2, NB_first, NB_count >::m_ranks.

91 { return m_binnor.m_ranks[i]; }
std::vector< C > m_ranks
Definition: binnor.h:211

◆ hit_phi()

float mkfit::LayerOfHits::hit_phi ( unsigned int  i) const
inline

Definition at line 86 of file HitStructures.h.

References mps_fire::i, and m_hit_phis.

86 { return m_hit_phis[i]; }
std::vector< float > m_hit_phis

◆ hit_q()

float mkfit::LayerOfHits::hit_q ( unsigned int  i) const
inline

Definition at line 85 of file HitStructures.h.

References mps_fire::i, and m_hit_qs.

85 { return m_hit_qs[i]; }
std::vector< float > m_hit_qs

◆ hitArray()

const Hit* mkfit::LayerOfHits::hitArray ( ) const
inline

Definition at line 98 of file HitStructures.h.

References m_ext_hits.

Referenced by mkfit::MkFinder::addBestHit(), mkfit::MkFinder::findCandidates(), and mkfit::MkFinder::findCandidatesCloneEngine().

98 { return m_ext_hits->data(); }
const HitVec * m_ext_hits

◆ is_barrel()

bool mkfit::LayerOfHits::is_barrel ( ) const
inline

◆ is_endcap()

bool mkfit::LayerOfHits::is_endcap ( ) const
inline

Definition at line 110 of file HitStructures.h.

References m_is_barrel.

110 { return !m_is_barrel; }

◆ is_pixel()

bool mkfit::LayerOfHits::is_pixel ( ) const
inline

Definition at line 124 of file HitStructures.h.

References mkfit::LayerInfo::is_pixel(), and m_layer_info.

Referenced by mkfit::MkFinder::findCandidates(), and mkfit::MkFinder::findCandidatesCloneEngine().

124 { return m_layer_info->is_pixel(); }
bool is_pixel() const
Definition: TrackerInfo.h:74
const LayerInfo * m_layer_info

◆ is_stereo()

bool mkfit::LayerOfHits::is_stereo ( ) const
inline

Definition at line 123 of file HitStructures.h.

References mkfit::LayerInfo::is_stereo(), and m_layer_info.

123 { return m_layer_info->is_stereo(); }
bool is_stereo() const
Definition: TrackerInfo.h:75
const LayerInfo * m_layer_info

◆ is_within_r_limits()

bool mkfit::LayerOfHits::is_within_r_limits ( float  r) const
inline

Definition at line 113 of file HitStructures.h.

References mkfit::LayerInfo::is_within_r_limits(), and m_layer_info.

113 { return m_layer_info->is_within_r_limits(r); }
bool is_within_r_limits(float r) const
Definition: TrackerInfo.h:78
const LayerInfo * m_layer_info

◆ is_within_r_sensitive_region()

WSR_Result mkfit::LayerOfHits::is_within_r_sensitive_region ( float  r,
float  dr 
) const
inline

Definition at line 119 of file HitStructures.h.

References mkfit::LayerInfo::is_within_r_sensitive_region(), and m_layer_info.

119  {
121  }
WSR_Result is_within_r_sensitive_region(float r, float dr) const
Definition: TrackerInfo.h:91
const LayerInfo * m_layer_info

◆ is_within_z_limits()

bool mkfit::LayerOfHits::is_within_z_limits ( float  z) const
inline

Definition at line 112 of file HitStructures.h.

References mkfit::LayerInfo::is_within_z_limits(), and m_layer_info.

112 { return m_layer_info->is_within_z_limits(z); }
bool is_within_z_limits(float z) const
Definition: TrackerInfo.h:77
const LayerInfo * m_layer_info

◆ is_within_z_sensitive_region()

WSR_Result mkfit::LayerOfHits::is_within_z_sensitive_region ( float  z,
float  dz 
) const
inline

Definition at line 115 of file HitStructures.h.

References PVValHelper::dz, mkfit::LayerInfo::is_within_z_sensitive_region(), and m_layer_info.

115  {
117  }
WSR_Result is_within_z_sensitive_region(float z, float dz) const
Definition: TrackerInfo.h:83
const LayerInfo * m_layer_info

◆ isBinDead()

bool mkfit::LayerOfHits::isBinDead ( bin_index_t  pi,
bin_index_t  qi 
) const
inline

Definition at line 83 of file HitStructures.h.

References m_ax_phi, m_dead_bins, pi, and mkfit::axis_pow2_base< R, I, M, N >::size_of_N().

83 { return m_dead_bins[qi * m_ax_phi.size_of_N() + pi]; }
const Double_t pi
std::vector< bool > m_dead_bins
unsigned int size_of_N() const
Definition: binnor.h:88

◆ layer_id()

int mkfit::LayerOfHits::layer_id ( ) const
inline

◆ layer_info()

const LayerInfo* mkfit::LayerOfHits::layer_info ( ) const
inline

Definition at line 106 of file HitStructures.h.

References m_layer_info.

106 { return m_layer_info; }
const LayerInfo * m_layer_info

◆ nHits()

unsigned int mkfit::LayerOfHits::nHits ( void  ) const
inline

◆ phiBin()

bin_index_t mkfit::LayerOfHits::phiBin ( float  phi) const
inline

Definition at line 76 of file HitStructures.h.

References mkfit::axis_base< R, I, M, N >::from_R_to_N_bin(), and m_ax_phi.

Referenced by suckInDeads().

76 { return m_ax_phi.from_R_to_N_bin(phi); }
I from_R_to_N_bin(R r) const
Definition: binnor.h:62

◆ phiBinChecked()

bin_index_t mkfit::LayerOfHits::phiBinChecked ( float  phi) const
inline

Definition at line 77 of file HitStructures.h.

References mkfit::axis_pow2_u1< R, I, M, N >::from_R_to_N_bin_safe(), and m_ax_phi.

77 { return m_ax_phi.from_R_to_N_bin_safe(phi); }
I from_R_to_N_bin_safe(R r) const
Definition: binnor.h:103

◆ phiMaskApply()

bin_index_t mkfit::LayerOfHits::phiMaskApply ( bin_index_t  in) const
inline

Definition at line 79 of file HitStructures.h.

References mkfit::axis_pow2_u1< R, I, M, N >::c_N_mask, recoMuon::in, and m_ax_phi.

Referenced by suckInDeads().

79 { return in & m_ax_phi.c_N_mask; }
static constexpr I c_N_mask
Definition: binnor.h:98

◆ phiQBinContent()

binnor_t::C_pair mkfit::LayerOfHits::phiQBinContent ( bin_index_t  pi,
bin_index_t  qi 
) const
inline

Definition at line 81 of file HitStructures.h.

References mkfit::binnor< C, A1, A2, NB_first, NB_count >::get_content(), m_binnor, and pi.

81 { return m_binnor.get_content(pi, qi); }
C_pair get_content(B_pair n_bin) const
Definition: binnor.h:240
const Double_t pi

◆ printBins()

void mkfit::LayerOfHits::printBins ( )

Definition at line 227 of file HitStructures.cc.

References Skims_PA_cff::content, mkfit::binnor< C, A1, A2, NB_first, NB_count >::get_content(), is_barrel(), m_ax_eta, m_ax_phi, m_binnor, and mkfit::axis_base< R, I, M, N >::m_last_N_bin.

227  {
228  for (bin_index_t qb = 0; qb <= m_ax_eta.m_last_N_bin; ++qb) {
229  printf("%c bin %d\n", is_barrel() ? 'Z' : 'R', qb);
230  for (bin_index_t pb = 0; pb <= m_ax_phi.m_last_N_bin; ++pb) {
231  if (pb % 8 == 0)
232  printf(" Phi %4d: ", pb);
233  auto content = m_binnor.get_content(pb, qb);
234  printf("%5d,%4d %s", content.first, content.count, ((pb + 1) % 8 == 0) ? "\n" : "");
235  }
236  }
237  }
C_pair get_content(B_pair n_bin) const
Definition: binnor.h:240
const I m_last_N_bin
Definition: binnor.h:36
bool is_barrel() const
unsigned short bin_index_t
Definition: HitStructures.h:26

◆ qBin()

bin_index_t mkfit::LayerOfHits::qBin ( float  q) const
inline

◆ qBinChecked()

bin_index_t mkfit::LayerOfHits::qBinChecked ( float  q) const
inline

◆ refHit()

const Hit& mkfit::LayerOfHits::refHit ( int  i) const
inline

◆ registerHit()

void mkfit::LayerOfHits::registerHit ( unsigned int  idx)

Definition at line 145 of file HitStructures.cc.

References h, heavyIonCSV_trainingSettings::idx, m_binnor, m_ext_idcs, m_hit_infos, m_is_barrel, m_max_ext_idx, m_min_ext_idx, SiStripPI::max, SiStripPI::min, mkfit::binnor< C, A1, A2, NB_first, NB_count >::register_entry_safe(), and mkfit::Config::usePhiQArrays.

145  {
146  const Hit &h = (*m_ext_hits)[idx];
147 
148  m_ext_idcs.push_back(idx);
151 
152  HitInfo hi = {h.phi(), m_is_barrel ? h.z() : h.r()};
153 
155 
156  if (Config::usePhiQArrays) {
157  m_hit_infos.emplace_back(hi);
158  }
159  }
unsigned int m_min_ext_idx
constexpr bool usePhiQArrays
Definition: Config.h:69
Definition: EPCuts.h:4
void register_entry_safe(typename A1::real_t r1, typename A2::real_t r2)
Definition: binnor.h:282
unsigned int m_max_ext_idx
std::vector< unsigned int > m_ext_idcs
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
std::vector< HitInfo > m_hit_infos

◆ reset()

void mkfit::LayerOfHits::reset ( void  )
inline

Definition at line 55 of file HitStructures.h.

55 {}

◆ subdet()

int mkfit::LayerOfHits::subdet ( ) const
inline

Definition at line 125 of file HitStructures.h.

References m_layer_info, and mkfit::LayerInfo::subdet().

125 { return m_layer_info->subdet(); }
int subdet() const
Definition: TrackerInfo.h:72
const LayerInfo * m_layer_info

◆ suckInDeads()

void mkfit::LayerOfHits::suckInDeads ( const DeadVec deadv)

Definition at line 112 of file HitStructures.cc.

References ztail::d, m_ax_phi, m_dead_bins, phiBin(), phiMaskApply(), qBinChecked(), and mkfit::axis_pow2_base< R, I, M, N >::size_of_N().

112  {
113  m_dead_bins.assign(m_dead_bins.size(), false);
114 
115  for (const auto &d : deadv) {
116  bin_index_t q_bin_1 = qBinChecked(d.q1);
117  bin_index_t q_bin_2 = qBinChecked(d.q2) + 1;
118  bin_index_t phi_bin_1 = phiBin(d.phi1);
119  bin_index_t phi_bin_2 = phiMaskApply(phiBin(d.phi2) + 1);
120 
121  for (bin_index_t q_bin = q_bin_1; q_bin != q_bin_2; q_bin++) {
122  const unsigned int qoff = q_bin * m_ax_phi.size_of_N();
123  for (bin_index_t pb = phi_bin_1; pb != phi_bin_2; pb = phiMaskApply(pb + 1)) {
124  m_dead_bins[qoff + pb] = true;
125  }
126  }
127  }
128  }
bin_index_t qBinChecked(float q) const
Definition: HitStructures.h:73
bin_index_t phiBin(float phi) const
Definition: HitStructures.h:76
d
Definition: ztail.py:151
std::vector< bool > m_dead_bins
unsigned int size_of_N() const
Definition: binnor.h:88
unsigned short bin_index_t
Definition: HitStructures.h:26
bin_index_t phiMaskApply(bin_index_t in) const
Definition: HitStructures.h:79

◆ suckInHits()

void mkfit::LayerOfHits::suckInHits ( const HitVec hitv)

Definition at line 64 of file HitStructures.cc.

References mkfit::binnor< C, A1, A2, NB_first, NB_count >::begin_registration(), mkfit::binnor< C, A1, A2, NB_first, NB_count >::finalize_registration(), h, mps_fire::i, dqmiolumiharvest::j, m_binnor, m_ext_hits, m_hit_infos, m_hit_phis, m_hit_qs, m_is_barrel, m_n_hits, mkfit::binnor< C, A1, A2, NB_first, NB_count >::m_ranks, mkfit::binnor< C, A1, A2, NB_first, NB_count >::register_entry_safe(), mkfit::binnor< C, A1, A2, NB_first, NB_count >::reset_contents(), and mkfit::Config::usePhiQArrays.

64  {
65  m_n_hits = hitv.size();
66  m_ext_hits = &hitv;
67 
68 #ifdef COPY_SORTED_HITS
69  if (m_capacity < m_n_hits) {
70  free_hits();
71  alloc_hits(m_n_hits);
72  }
73 #endif
74 
76  m_hit_phis.resize(m_n_hits);
77  m_hit_qs.resize(m_n_hits);
78  m_hit_infos.resize(m_n_hits);
79  }
80 
83 
84  for (unsigned int i = 0; i < m_n_hits; ++i) {
85  const Hit &h = hitv[i];
86 
87  HitInfo hi = {h.phi(), m_is_barrel ? h.z() : h.r()};
88 
90 
92  m_hit_infos[i] = hi;
93  }
94  }
95 
97 
98  for (unsigned int i = 0; i < m_n_hits; ++i) {
99  unsigned int j = m_binnor.m_ranks[i];
100 #ifdef COPY_SORTED_HITS
101  memcpy(&m_hits[i], &hitv[j], sizeof(Hit));
102 #endif
103  if (Config::usePhiQArrays) {
104  m_hit_phis[i] = m_hit_infos[j].phi;
105  m_hit_qs[i] = m_hit_infos[j].q;
106  }
107  }
108  }
unsigned int m_n_hits
std::vector< float > m_hit_phis
const HitVec * m_ext_hits
void finalize_registration()
Definition: binnor.h:289
constexpr bool usePhiQArrays
Definition: Config.h:69
std::vector< C > m_ranks
Definition: binnor.h:211
Definition: EPCuts.h:4
void register_entry_safe(typename A1::real_t r1, typename A2::real_t r2)
Definition: binnor.h:282
void begin_registration(C n_items)
Definition: binnor.h:264
std::vector< float > m_hit_qs
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
std::vector< HitInfo > m_hit_infos
void reset_contents(bool shrink_vectors=true)
Definition: binnor.h:252

Member Data Documentation

◆ m_ax_eta

axis_eta_t mkfit::LayerOfHits::m_ax_eta
private

Definition at line 129 of file HitStructures.h.

Referenced by LayerOfHits(), printBins(), qBin(), and qBinChecked().

◆ m_ax_phi

axis_phi_t mkfit::LayerOfHits::m_ax_phi
private

◆ m_binnor

binnor_t mkfit::LayerOfHits::m_binnor
private

◆ m_dead_bins

std::vector<bool> mkfit::LayerOfHits::m_dead_bins
private

Definition at line 147 of file HitStructures.h.

Referenced by isBinDead(), LayerOfHits(), and suckInDeads().

◆ m_ext_hits

const HitVec* mkfit::LayerOfHits::m_ext_hits
private

Definition at line 139 of file HitStructures.h.

Referenced by beginRegistrationOfHits(), hitArray(), refHit(), and suckInHits().

◆ m_ext_idcs

std::vector<unsigned int> mkfit::LayerOfHits::m_ext_idcs
private

◆ m_hit_infos

std::vector<HitInfo> mkfit::LayerOfHits::m_hit_infos
private

◆ m_hit_phis

std::vector<float> mkfit::LayerOfHits::m_hit_phis
private

Definition at line 150 of file HitStructures.h.

Referenced by endRegistrationOfHits(), hit_phi(), and suckInHits().

◆ m_hit_qs

std::vector<float> mkfit::LayerOfHits::m_hit_qs
private

Definition at line 151 of file HitStructures.h.

Referenced by endRegistrationOfHits(), hit_q(), and suckInHits().

◆ m_hit_ranks

unsigned int* mkfit::LayerOfHits::m_hit_ranks = nullptr
private

Definition at line 141 of file HitStructures.h.

Referenced by endRegistrationOfHits().

◆ m_is_barrel

bool mkfit::LayerOfHits::m_is_barrel
private

Definition at line 155 of file HitStructures.h.

Referenced by is_barrel(), is_endcap(), LayerOfHits(), registerHit(), and suckInHits().

◆ m_layer_info

const LayerInfo* mkfit::LayerOfHits::m_layer_info = nullptr
private

◆ m_max_ext_idx

unsigned int mkfit::LayerOfHits::m_max_ext_idx
private

Definition at line 143 of file HitStructures.h.

Referenced by beginRegistrationOfHits(), endRegistrationOfHits(), and registerHit().

◆ m_min_ext_idx

unsigned int mkfit::LayerOfHits::m_min_ext_idx
private

◆ m_n_hits

unsigned int mkfit::LayerOfHits::m_n_hits = 0
private

Definition at line 144 of file HitStructures.h.

Referenced by beginRegistrationOfHits(), endRegistrationOfHits(), nHits(), and suckInHits().