ATLAS Offline Software
FPGATrackSimSpacePointsTool.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #include <array>
6 #include <vector>
7 
12 #include "TH1.h"
13 
14 FPGATrackSimSpacePointsTool::FPGATrackSimSpacePointsTool(const std::string &algname, const std::string &name, const IInterface *ifc)
15  : base_class(algname, name, ifc)
16 {
17  declareInterface<FPGATrackSimSpacePointsToolI>(this);
18 }
19 
20 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
22 {
23  ATH_MSG_INFO("Using spacepoints default tool");
24  if (m_duplicate) ATH_MSG_INFO("Duplicating spacepoint to layer on the other side of the stave");
25  if (m_filter) ATH_MSG_INFO("Filtering out incomplete spacepoints");
26  if (m_filterClose) ATH_MSG_INFO("Filtering out single hits close to spacepoints");
27 
28  m_spacepts_per_hit = new TH1I("spacepts_per_hit","",20,0,20);
29 
30  return StatusCode::SUCCESS;
31 }
32 
34 {
35  ATH_MSG_INFO("Spacepoints report");
36  ATH_MSG_INFO("-----------------------------------------");
37  ATH_MSG_INFO("Strip Hits Input " << m_inputhits);
38  ATH_MSG_INFO("Spacepoints Ouput " << m_spacepts);
39  ATH_MSG_INFO("Filtered Hits " << m_filteredhits);
40  ATH_MSG_INFO("Adjacent Eta Module SPs " << m_adjacent_eta_sp);
41  ATH_MSG_INFO("Adjacent Phi Module SPs " << m_adjacent_phi_sp);
42  ATH_MSG_INFO("Diagonal Module SPs " << m_diagonal_sp);
43  ATH_MSG_INFO("Spacepoints per hit " << m_spacepts_per_hit->GetMean());
44  ATH_MSG_INFO("-----------------------------------------");
45  return StatusCode::SUCCESS;
46 }
47 
49 {
50  for (int i = 0; i < header.nTowers(); ++i)
51  {
52  FPGATrackSimTowerInputHeader &tower = *header.getTower(i);
53  std::vector<FPGATrackSimHit> hits = tower.hits();
54  if (hits.empty()) continue;
55 
56  m_inputhits += hits.size();
58  ATH_CHECK(makeSpacePoints(tower,spacepoints));
59  }
60 
61  return StatusCode::SUCCESS;
62 }
63 
64 
66 {
67  m_map.clear();
68  m_pixel.clear();
69 
70  int strip_hits = 0;
71  for (auto hit : hits) {
72 
73  if (hit.isPixel()) {
74  // just save them so we can put them back
75  m_pixel.push_back(hit);
76  ATH_MSG_DEBUG("Pixel hit z = " << hit.getZ() << ", r = " << hit.getR() << ", phi = " << hit.getGPhi());
77  continue;
78  }
79  strip_hits += 1;
80 
81  std::vector<int> module_desc(4);
82 
83  module_desc[0] = (int)hit.getDetectorZone();
84  module_desc[1] = hit.getPhysLayer()/2; //div 2 gives layer as part of pair
85  unsigned side = hit.getPhysLayer()%2; // even/odd layer
86  module_desc[2] = hit.getPhiModule();
87  module_desc[3] = hit.getEtaModule();
88 
89  if (side==0)
90  m_map[module_desc].first.push_back(hit);
91  else
92  m_map[module_desc].second.push_back(hit);
93  }
94 
95  ATH_MSG_DEBUG("Running spacepoints default tool over " << strip_hits << " strip hits.");
96 
97  return StatusCode::SUCCESS;
98 }
99 
100 StatusCode FPGATrackSimSpacePointsTool::makeSpacePoints(FPGATrackSimTowerInputHeader &tower, std::vector<FPGATrackSimCluster> &spacepoints)
101 {
102 
103  // delete the old clusters, this will be replaced by the spacepoints
104  tower.clearHits();
105 
106  for (auto entry : m_map)
107  {
108  // std::vector<int> const & module_desc = entry.first;
109  std::vector<FPGATrackSimHit>& hits_inner = entry.second.first;
110  std::vector<FPGATrackSimHit>& hits_outer = entry.second.second;
111 
112  for (auto hit_in : hits_inner) {
113  int startsize = spacepoints.size();
114  bool foundPair = searchForMatch(hit_in,hits_outer,tower,spacepoints);
115 
116  if (!foundPair && !m_sameModulesOnly) {
117  // search in +1 eta direction
118  std::vector<int> nextmod = entry.first;
119  nextmod[3]+=1; // increment eta module counter
120  auto entry2 = m_map.find(nextmod);
121  if (entry2!=m_map.end()) {
122  foundPair = searchForMatch(hit_in,entry2->second.second,tower,spacepoints);
123  if (foundPair) m_adjacent_eta_sp++;
124  }
125  }
126 
127  // Also seek in +1 phi direction.
128  if (!foundPair && !m_sameModulesOnly) {
129  // search in +1 eta direction
130  std::vector<int> nextphimod = entry.first;
131  nextphimod[2]+=1; // increment phi module counter
132  auto entry3 = m_map.find(nextphimod);
133  if (entry3!=m_map.end()) {
134  foundPair = searchForMatch(hit_in,entry3->second.second,tower,spacepoints);
135  if (foundPair) m_adjacent_phi_sp++;
136  }
137  }
138 
139  // If all else fails, seek in +1 eta, +1 phi direction.
140  if (!foundPair && !m_sameModulesOnly) {
141  // search in +1 eta direction
142  std::vector<int> next2mod = entry.first;
143  next2mod[3]+=1; // increment eta module counter
144  next2mod[2]+=1; // increment phi module counter
145  auto entry4 = m_map.find(next2mod);
146  if (entry4!=m_map.end()) {
147  foundPair = searchForMatch(hit_in,entry4->second.second,tower,spacepoints);
148  if (foundPair) m_diagonal_sp++;
149  }
150  }
151 
152  if (!foundPair) {
153  if (m_filter) m_filteredhits++;
154  else {
155  tower.addHit(hit_in); // add unpaired hit_in
156  ATH_MSG_DEBUG("Unpaired hit z = " << hit_in.getZ() << ", r = " << hit_in.getR() << ", phi = " << hit_in.getGPhi() << ", phi module = " << hit_in.getPhiModule() << ", eta module = " << hit_in.getEtaModule());
157  }
158  }
159 
160  m_spacepts_per_hit->Fill(spacepoints.size()-startsize);
161  }
162 
163  // add unpaired outer hits TODO use the hit type instead of another loop
164  for (const FPGATrackSimHit& hit_out : hits_outer) {
165  bool foundPair=false;
166  for (const FPGATrackSimHit& hit_in : hits_inner) {
167  if (abs(hit_in.getGPhi()-hit_out.getGPhi()) < m_phiwindow) {
168  foundPair=true;
169  break;
170  }
171  }
172 
173  // search in -1 eta direction
174  std::vector<int> nextmod = entry.first;
175  nextmod[3]-=1; // increment eta module counter
176  auto entry2 = m_map.find(nextmod);
177  if (entry2!=m_map.end()) {
178  for (auto hit_in : entry2->second.first) {
179  if (abs(hit_in.getGPhi()-hit_out.getGPhi()) < m_phiwindow) {
180  foundPair=true;
182  break;
183  }
184  }
185  }
186 
187  // Also seek in -1 phi direction.
188  if (!foundPair) {
189  // search in +1 eta direction
190  std::vector<int> nextphimod = entry.first;
191  nextphimod[2]-=1; // increment phi module counter
192  auto entry3 = m_map.find(nextphimod);
193  if (entry3!=m_map.end()) {
194  for (auto hit_in : entry3->second.first) {
195  if (abs(hit_in.getGPhi()-hit_out.getGPhi()) < m_phiwindow) {
196  foundPair=true;
198  break;
199  }
200  }
201  }
202  }
203 
204  // If all else fails, seek in -1 eta, -1 phi direction.
205  if (!foundPair) {
206  // search in +1 eta direction
207  std::vector<int> next2mod = entry.first;
208  next2mod[3]-=1; // increment eta module counter
209  next2mod[2]-=1; // increment phi module counter
210  auto entry4 = m_map.find(next2mod);
211  if (entry4!=m_map.end()) {
212  for (auto hit_in : entry4->second.first) {
213  if (abs(hit_in.getGPhi()-hit_out.getGPhi()) < m_phiwindow) {
214  foundPair=true;
215  m_diagonal_sp++;
216  break;
217  }
218  }
219  }
220  }
221 
222  if (!foundPair) {
223  if (m_filter) m_filteredhits++;
224  else {
225  tower.addHit(hit_out);
226  ATH_MSG_DEBUG("Unpaired hit z = " << hit_out.getZ() << ", r = " << hit_out.getR() << ", phi = " << hit_out.getGPhi() << ", phi module = " << hit_out.getPhiModule() << ", eta module = " << hit_out.getEtaModule());
227  }
228  }
229  }
230  }
231 
232  // add back the pixles
233  for (const FPGATrackSimHit& hit: m_pixel) tower.addHit(hit);
234 
235  m_inputhits -= m_pixel.size(); // so count is just input strips
236  m_spacepts += spacepoints.size();
237 
238 
239  return StatusCode::SUCCESS;
240 }
241 
242 
243 bool FPGATrackSimSpacePointsTool::searchForMatch(FPGATrackSimHit& hit_in,std::vector<FPGATrackSimHit>& hits_outer,FPGATrackSimTowerInputHeader &tower, std::vector<FPGATrackSimCluster> &spacepoints)
244 {
245  bool foundPair = false;
246  for (const FPGATrackSimHit& hit_out : hits_outer)
247  {
248  // Too far apart to be from same track
249  if (abs(hit_in.getGPhi()-hit_out.getGPhi()) < m_phiwindow) {
250  addSpacePoints(hit_in,hit_out,tower,spacepoints);
251  foundPair=true;
252  }
253  }
254  return foundPair;
255 }
256 
257 void FPGATrackSimSpacePointsTool::addSpacePoints(FPGATrackSimHit hit_in, FPGATrackSimHit hit_out ,FPGATrackSimTowerInputHeader &tower, std::vector<FPGATrackSimCluster> &spacepoints)
258 {
259  // Make a spacepoint
260  //------------------
261  float x,y,z;
262  calcPosition(hit_in, hit_out, x, y, z);
263 
264  float phi_window = abs(hit_in.getGPhi()-hit_out.getGPhi());
265 
266  // Let's print out the coords of the spacepoints we identify.
267  float r = TMath::Sqrt(x*x + y*y);
268  ATH_MSG_DEBUG("Spacepoint x = " << x << ", y = " << y << ", z = " << z << ", r = " << r);
269  ATH_MSG_DEBUG(" Paired hit z = " << hit_in.getZ() << ", r = " << hit_in.getR() << ", phi = " << hit_in.getGPhi() << ", phi module = " << hit_in.getPhiModule() << ", eta module = " << hit_in.getEtaModule());
270  ATH_MSG_DEBUG(" Paired hit z = " << hit_out.getZ() << ", r = " << hit_out.getR() << ", phi = " << hit_out.getGPhi() << ", phi module = " << hit_out.getPhiModule() << ", eta module = " << hit_out.getEtaModule());
271 
272  // We need to merge the truth information for the hits together in order
273  // to use them in matrix generation.
274 
275  const FPGATrackSimMultiTruth truth_in = hit_in.getTruth();
276  const FPGATrackSimMultiTruth truth_out = hit_out.getTruth();
277 
278  FPGATrackSimMultiTruth new_truth;
279  new_truth.add(truth_in);
280  new_truth.add(truth_out);
281  //hit_in.setTruth(new_truth);
282 
283  //hit_in.setX(x);
284  //hit_in.setY(y);
285  //hit_in.setZ(z);
286 
287  // TODO this is probably no longer necessary, we should just overwrite the local coordinates
288  // of both hit, I think?
289  //hit_in.setPairedHit(hit_in);
290 
291  // This function now does everything (I think) including storing the correct
292  // local coordinates for later retrieval.
293  // Maybe it should return a new FPGATrackSimHit rather than modifying in place.
294  hit_in.makeSpacepoint(x, y, z, phi_window, hit_out, new_truth);
295 
296  // abusing hit type 'guessed' to be able to indentify it as spacepoint later on
297  // Guessed is ambiguous with an actual guessed hit-- there is a spacepoint type which
298  // should be used instead.
299 // hit_in.setHitType(HitType::guessed);
300 // hit_in.setHitType(HitType::spacepoint);
301  tower.addHit(hit_in);
302 
303  if (m_duplicate) {
304 // hit_out.setX(x);
305 // hit_out.setY(y);
306 // hit_out.setZ(z);
307 // hit_out.setTruth(new_truth);
308 // hit_out.setPairedHit(hit_in);
309 // hit_out.setHitType(HitType::guessed);
310 // hit_out.setHitType(HitType::spacepoint);
311  hit_out.makeSpacepoint(x, y, z, phi_window, hit_in, new_truth);
312  tower.addHit(hit_out);
313  }
314 
315  // push back a copy for monitoring
317  sp.setClusterEquiv(hit_in);
318  sp.push_backHitList(hit_in);
319  sp.push_backHitList(hit_out);
320  spacepoints.push_back(sp);
321 
322 }
323 
324 
325 
326 void FPGATrackSimSpacePointsTool::calcPosition(FPGATrackSimHit &hit_in, FPGATrackSimHit &hit_out, float &x, float &y, float &z)
327 {
328  float phi_sp = (hit_in.getGPhi() + hit_out.getGPhi()) / 2.0;
329  float r_sp = (hit_in.getR() + hit_out.getR()) / 2.0;;
330  float z_sp = (hit_in.getZ() + hit_out.getZ()) / 2.0;;
331 
332  float delta_phi_local = (hit_in.getGPhi() - hit_out.getGPhi()) * r_sp; // distance in phi dir in mm
333 
334  if (hit_in.isBarrel())
335  {
336  static const float stereo_angle = 0.026; // barrel
337  z_sp += delta_phi_local/tan(stereo_angle)/2.0;
338  }
339  else
340  {
341  static const float stereo_angle = 0.020; // endcap
342  r_sp += delta_phi_local/tan(stereo_angle)/2.0;
343 
344  // don't let r_sp out of range of edge of module TODO fix hardcode
345  // Allow for the bounds check to be disabled, since it may mess up a linear fit.
346  if (m_boundsCheck) {
347  float r_bounds[19] = {394.0, 415.5, 442.0, 472.4, 498.85, 521.45, 547.05, 566.65, 591.0, 621.8, 654.7, 683.9, 710.2, 739.4, 784.2, 838.8, 887.6, 937.7, 967.8};
348 
349  if (hit_in.getEtaModule()==hit_in.getEtaModule()) {
350  float r_limited = std::max(r_sp,r_bounds[hit_in.getEtaModule()]);
351  r_limited = std::min(r_sp,r_bounds[hit_in.getEtaModule()+1]);
352  if (r_sp!=r_limited) {
353  ATH_MSG_WARNING("Spacepoint location not in module boundary: r_sp=" << r_sp
354  << " not in [" << r_bounds[hit_in.getEtaModule()] << "," << r_bounds[hit_in.getEtaModule()+1] << "]");
355  r_sp=r_limited;
356  }
357  } else if (hit_in.getEtaModule()==hit_in.getEtaModule()+1) {
358  float window = 3; //mm, max possible distance between hits from same track with reasonable incline to module
359  float r_limited = std::max(r_sp,r_bounds[hit_in.getEtaModule()+1]-window);
360  r_limited = std::min(r_sp,r_bounds[hit_in.getEtaModule()+1]+window);
361  if (r_sp!=r_limited) {
362  ATH_MSG_WARNING("Crossing spacepoint location too far from module boundary: r_sp=" << r_sp
363  << " not in [" << r_bounds[hit_in.getEtaModule()+1]-window << "," << r_bounds[hit_in.getEtaModule()+1]+window << "]");
364  r_sp=r_limited;
365  }
366  }
367  }
368  }
369 
370  // insert new values
371  x = r_sp*cos(phi_sp);
372  y = r_sp*sin(phi_sp);
373  z = z_sp;
374 }
FPGATrackSimSpacePointsTool::fillMaps
StatusCode fillMaps(std::vector< FPGATrackSimHit > &hits)
Definition: FPGATrackSimSpacePointsTool.cxx:65
beamspotman.r
def r
Definition: beamspotman.py:676
FPGATrackSimTowerInputHeader::clearHits
void clearHits()
Definition: FPGATrackSimTowerInputHeader.h:47
FPGATrackSimHit::getPhiModule
unsigned getPhiModule() const
Definition: FPGATrackSimHit.h:83
FPGATrackSimSpacePointsTool::m_spacepts
unsigned m_spacepts
Definition: FPGATrackSimSpacePointsTool.h:50
FPGATrackSimSpacePointsTool.h
getMenu.algname
algname
Definition: getMenu.py:53
FPGATrackSimLogicalEventInputHeader
Definition: FPGATrackSimLogicalEventInputHeader.h:21
FPGATrackSimSpacePointsTool::makeSpacePoints
StatusCode makeSpacePoints(FPGATrackSimTowerInputHeader &tower, std::vector< FPGATrackSimCluster > &spacepoints)
Definition: FPGATrackSimSpacePointsTool.cxx:100
header
Definition: hcg.cxx:526
max
#define max(a, b)
Definition: cfImp.cxx:41
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition: AthMsgStreamMacros.h:31
FPGATrackSimCluster
Definition: FPGATrackSimCluster.h:25
CaloCellPos2Ntuple.int
int
Definition: CaloCellPos2Ntuple.py:24
TH1I
Definition: rootspy.cxx:332
FPGATrackSimTowerInputHeader::addHit
void addHit(FPGATrackSimHit s)
Definition: FPGATrackSimTowerInputHeader.h:46
FPGATrackSimSpacePointsTool::m_phiwindow
Gaudi::Property< float > m_phiwindow
Definition: FPGATrackSimSpacePointsTool.h:41
FPGATrackSimSpacePointsTool::m_map
std::map< std::vector< int >, std::pair< std::vector< FPGATrackSimHit >, std::vector< FPGATrackSimHit > > > m_map
Definition: FPGATrackSimSpacePointsTool.h:38
FPGATrackSimHit::makeSpacepoint
void makeSpacepoint(float x, float y, float z, float window, FPGATrackSimHit &other, FPGATrackSimMultiTruth &new_truth)
Definition: FPGATrackSimHit.cxx:87
FPGATrackSimSpacePointsTool::m_duplicate
Gaudi::Property< bool > m_duplicate
Definition: FPGATrackSimSpacePointsTool.h:42
drawFromPickle.cos
cos
Definition: drawFromPickle.py:36
FPGATrackSimSpacePointsTool::DoSpacePoints
virtual StatusCode DoSpacePoints(FPGATrackSimLogicalEventInputHeader &, std::vector< FPGATrackSimCluster > &) override
Definition: FPGATrackSimSpacePointsTool.cxx:48
FPGATrackSimCluster::setClusterEquiv
void setClusterEquiv(const FPGATrackSimHit &input)
Definition: FPGATrackSimCluster.h:35
x
#define x
FPGATrackSimHit::getEtaModule
unsigned getEtaModule() const
Definition: FPGATrackSimHit.h:82
FPGATrackSimHit
Definition: FPGATrackSimHit.h:38
FPGATrackSimHit::getGPhi
float getGPhi() const
Definition: FPGATrackSimHit.h:129
TRT::Hit::side
@ side
Definition: HitInfo.h:83
FPGATrackSimHit::getTruth
const FPGATrackSimMultiTruth & getTruth() const
Definition: FPGATrackSimHit.h:143
FPGATrackSimSpacePointsTool::FPGATrackSimSpacePointsTool
FPGATrackSimSpacePointsTool(const std::string &, const std::string &, const IInterface *)
Definition: FPGATrackSimSpacePointsTool.cxx:14
FPGATrackSimSpacePointsTool::searchForMatch
bool searchForMatch(FPGATrackSimHit &hit_in, std::vector< FPGATrackSimHit > &hits_outer, FPGATrackSimTowerInputHeader &tower, std::vector< FPGATrackSimCluster > &spacepoints)
Definition: FPGATrackSimSpacePointsTool.cxx:243
FPGATrackSimSpacePointsTool::m_pixel
std::vector< FPGATrackSimHit > m_pixel
Definition: FPGATrackSimSpacePointsTool.h:39
lumiFormat.i
int i
Definition: lumiFormat.py:92
z
#define z
FPGATrackSimSpacePointsTool::finalize
virtual StatusCode finalize() override
Definition: FPGATrackSimSpacePointsTool.cxx:33
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition: AthMsgStreamMacros.h:29
LArG4ShowerLibProcessing.hits
hits
Definition: LArG4ShowerLibProcessing.py:136
FPGATrackSimMultiTruth::add
void add(const FPGATrackSimMultiTruth::Barcode &code, const FPGATrackSimMultiTruth::Weight &weight)
FPGATrackSimSpacePointsTool::m_boundsCheck
Gaudi::Property< bool > m_boundsCheck
Definition: FPGATrackSimSpacePointsTool.h:46
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
drawFromPickle.tan
tan
Definition: drawFromPickle.py:36
FPGATrackSimSpacePointsTool::m_filteredhits
unsigned m_filteredhits
Definition: FPGATrackSimSpacePointsTool.h:51
FPGATrackSimHit::getZ
float getZ() const
Definition: FPGATrackSimHit.h:127
FPGATrackSimSpacePointsTool::m_spacepts_per_hit
TH1I * m_spacepts_per_hit
Definition: FPGATrackSimSpacePointsTool.h:55
min
#define min(a, b)
Definition: cfImp.cxx:40
GetAllXsec.entry
list entry
Definition: GetAllXsec.py:132
FPGATrackSimMultiTruth
Definition: FPGATrackSimMultiTruth.h:46
FPGATrackSimSpacePointsTool::m_inputhits
unsigned m_inputhits
Definition: FPGATrackSimSpacePointsTool.h:49
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
FPGATrackSimSpacePointsTool::m_filter
Gaudi::Property< bool > m_filter
Definition: FPGATrackSimSpacePointsTool.h:43
FPGATrackSimHit.h
: FPGATrackSim-specific class to represent an hit in the detector.
FPGATrackSimHit::getR
float getR() const
Definition: FPGATrackSimHit.h:128
y
#define y
FPGATrackSimSpacePointsTool::initialize
virtual StatusCode initialize() override
Definition: FPGATrackSimSpacePointsTool.cxx:21
ATH_MSG_WARNING
#define ATH_MSG_WARNING(x)
Definition: AthMsgStreamMacros.h:32
FPGATrackSimSpacePointsTool::calcPosition
void calcPosition(FPGATrackSimHit &hit_in, FPGATrackSimHit &hit_out, float &x, float &y, float &z)
Definition: FPGATrackSimSpacePointsTool.cxx:326
FPGATrackSimTowerInputHeader::hits
const std::vector< FPGATrackSimHit > & hits() const
Definition: FPGATrackSimTowerInputHeader.h:44
FPGATrackSimSpacePointsTool::m_adjacent_phi_sp
unsigned m_adjacent_phi_sp
Definition: FPGATrackSimSpacePointsTool.h:53
drawFromPickle.sin
sin
Definition: drawFromPickle.py:36
FPGATrackSimSpacePointsTool::addSpacePoints
void addSpacePoints(FPGATrackSimHit hit_in, FPGATrackSimHit hit_out, FPGATrackSimTowerInputHeader &tower, std::vector< FPGATrackSimCluster > &spacepoints)
Definition: FPGATrackSimSpacePointsTool.cxx:257
FPGATrackSimTowerInputHeader
Definition: FPGATrackSimTowerInputHeader.h:18
FPGATrackSimLogicalEventInputHeader.h
FPGATrackSimHit::isBarrel
bool isBarrel() const
Definition: FPGATrackSimHit.h:63
FPGATrackSimSpacePointsTool::m_diagonal_sp
unsigned m_diagonal_sp
Definition: FPGATrackSimSpacePointsTool.h:54
FPGATrackSimSpacePointsTool::m_sameModulesOnly
Gaudi::Property< bool > m_sameModulesOnly
Definition: FPGATrackSimSpacePointsTool.h:45
FPGATrackSimSpacePointsTool::m_filterClose
Gaudi::Property< bool > m_filterClose
Definition: FPGATrackSimSpacePointsTool.h:44
FPGATrackSimCluster::push_backHitList
void push_backHitList(const FPGATrackSimHit &input)
Definition: FPGATrackSimCluster.h:38
FPGATrackSimCluster.h
FPGATrackSimSpacePointsTool::m_adjacent_eta_sp
unsigned m_adjacent_eta_sp
Definition: FPGATrackSimSpacePointsTool.h:52