Loading [MathJax]/jax/input/TeX/config.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
ITkSiSpacePointsSeedMaker.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3  */
4 
6 // Implementation file for class ITk::SiSpacePointsSeedMaker
8 // (c) ATLAS Detector software
10 // AlgTool used for TRT_DriftCircleOnTrack object production
12 // Version 1.0 21/04/2004 I.Gavrilenko
14 
16 
18 
19 
20 //for validation
21 #include "TrkTrack/Track.h"
24 
25 #include <cmath>
26 
27 #include <iomanip>
28 #include <ostream>
29 
30 namespace ITk
31 {
32 
34 // Constructor
36 
37 SiSpacePointsSeedMaker::SiSpacePointsSeedMaker(const std::string &t, const std::string &n, const IInterface *p)
38  : base_class(t, n, p),
39  m_thistSvc("THistSvc", n),
40  m_outputTree(nullptr),
41  m_treeName(""),
42  m_treeFolder("/valNtuples/")
43 {
44  if (m_maxOneSize > 0)
45  {
48  }
49 }
50 
52 // Initialisation
54 
56 {
58 
62 
63  // Get beam geometry
64  //
66 
68 
69  // PRD-to-track association (optional)
71 
72  // Build framework
73  //
75 
76  // Get output print level
77  //
78  m_outputlevel = msg().level() - MSG::DEBUG;
79 
80  m_umax = 100. - std::abs(m_umax) * 300.;
81 
82  if (m_writeNtuple) {
83 
84  ATH_CHECK( m_thistSvc.retrieve() );
85 
86  m_treeName = (std::string("SeedTree_")+name());
87  std::replace( m_treeName.begin(), m_treeName.end(), '.', '_' );
88 
89  m_outputTree = new TTree( m_treeName.c_str() , "SeedMakerValTool");
90 
91  m_outputTree->Branch("eventNumber", &m_eventNumber,"eventNumber/L");
92  m_outputTree->Branch("d0", &m_d0);
93  m_outputTree->Branch("z0", &m_z0);
94  m_outputTree->Branch("pt", &m_pt);
95  m_outputTree->Branch("eta", &m_eta);
96  m_outputTree->Branch("x1", &m_x1);
97  m_outputTree->Branch("x2", &m_x2);
98  m_outputTree->Branch("x3", &m_x3);
99  m_outputTree->Branch("y1", &m_y1);
100  m_outputTree->Branch("y2", &m_y2);
101  m_outputTree->Branch("y3", &m_y3);
102  m_outputTree->Branch("z1", &m_z1);
103  m_outputTree->Branch("z2", &m_z2);
104  m_outputTree->Branch("z3", &m_z3);
105  m_outputTree->Branch("r1", &m_r1);
106  m_outputTree->Branch("r2", &m_r2);
107  m_outputTree->Branch("r3", &m_r3);
108  m_outputTree->Branch("quality", &m_quality);
109  m_outputTree->Branch("seedType", &m_type);
110  m_outputTree->Branch("givesTrack", &m_givesTrack);
111  m_outputTree->Branch("dzdr_b", &m_dzdr_b);
112  m_outputTree->Branch("dzdr_t", &m_dzdr_t);
113  m_outputTree->Branch("track_pt", &m_trackPt);
114  m_outputTree->Branch("track_eta", &m_trackEta);
115 
116  TString fullTreeName = m_treeFolder + m_treeName;
117 
118  ATH_CHECK( m_thistSvc->regTree( fullTreeName.Data(), m_outputTree ) );
119 
120  }
121 
122 
123  return sc;
124 }
125 
127 // Finalize
129 
131 {
132  return AlgTool::finalize();
133 }
134 
136 // Initialize tool for new event
138 
139 void SiSpacePointsSeedMaker::newEvent(const EventContext &ctx, EventData &data, int iteration) const
140 {
141  if (!m_pixel && !m_strip)
142  return;
143 
145  if (not data.initialized)
147 
149  erase(data);
150  data.trigger = false;
152  data.iteration = iteration;
153  if (iteration <= 0)
154  data.iteration = 0;
155  data.dzdrmin = m_dzdrmin0;
156  data.checketa = data.dzdrmin > 1.;
157  data.dzdrmax = m_dzdrmax0;
158  data.maxScore = m_maxScore;
159  data.r_first = 0;
160 
162  float oneOverBinSizeR = 1. / m_binSizeR;
163  int maxBinR = m_nBinsR - 1;
164 
166  data.i_ITkSpacePointForSeed = data.l_ITkSpacePointForSeed.begin();
167 
168  bool isPixel = (m_fastTracking && m_pixel) || data.iteration == 1;
169 
170  if (not isPixel)
171  {
172  // Now, we will populate the space point list in the event data object.
173 
174  // Set the seed multiplicity strategy of the event data to the one configured
175  // by the user for strip seeds
176  data.maxSeedsPerSP = m_maxOneSizeSSS;
177  data.keepAllConfirmedSeeds = m_alwaysKeepConfirmedStripSeeds;
178 
179  SG::ReadHandle<Trk::PRDtoTrackMap> prd_to_track_map;
180  const Trk::PRDtoTrackMap *prd_to_track_map_cptr = nullptr;
181  if (!m_prdToTrackMap.key().empty()) {
182  prd_to_track_map = SG::ReadHandle<Trk::PRDtoTrackMap>(m_prdToTrackMap, ctx);
183  if (!prd_to_track_map.isValid()) {
184  ATH_MSG_ERROR("Failed to read PRD to track association map: " << m_prdToTrackMap.key());
185  }
186  prd_to_track_map_cptr = prd_to_track_map.cptr();
187  }
188 
190  if (spacepointsStrip.isValid()) {
191  for (const SpacePointCollection *spc : *spacepointsStrip) {
192  for (const Trk::SpacePoint *sp : *spc) {
195  if ((prd_to_track_map_cptr && isUsed(sp, *prd_to_track_map_cptr)) || sp->r() > m_r_rmax || sp->r() < m_r_rmin)
196  continue;
199  if (!sps)
200  continue;
201 
203  int radiusBin = static_cast<int>(sps->radius() * oneOverBinSizeR);
204  if (radiusBin > maxBinR)
205  radiusBin = maxBinR;
207  data.r_ITkSorted[radiusBin].push_back(sps);
209  ++data.r_map[radiusBin];
211  if (data.r_map[radiusBin] == 1)
212  data.r_index[data.nr++] = radiusBin;
214  ++data.ns;
215  }
216  }
217  }
219  if (m_useOverlap && !data.checketa) {
221  if (spacepointsOverlap.isValid()) {
222  for (const Trk::SpacePoint *sp : *spacepointsOverlap) {
224  if ((prd_to_track_map_cptr && isUsed(sp, *prd_to_track_map_cptr)) || sp->r() > m_r_rmax || sp->r() < m_r_rmin)
225  continue;
226 
229  if (!sps)
230  continue;
231 
233  int radiusBin = static_cast<int>(sps->radius() * oneOverBinSizeR);
234  if (radiusBin > maxBinR)
235  radiusBin = maxBinR;
237  data.r_ITkSorted[radiusBin].push_back(sps);
239  ++data.r_map[radiusBin];
241  if (data.r_map[radiusBin] == 1)
242  data.r_index[data.nr++] = radiusBin;
244  ++data.ns;
245  }
246  }
247  }
248  } else {
249 
250  // Now, we will populate the space point list in the event data object.
251 
252  // Set the seed multiplicity strategy of the event data to the one configured
253  // by the user for pixel seeds
254  data.maxSeedsPerSP = m_maxOneSizePPP;
255  data.keepAllConfirmedSeeds = m_alwaysKeepConfirmedPixelSeeds;
256 
257  SG::ReadHandle<Trk::PRDtoTrackMap> prd_to_track_map;
258  const Trk::PRDtoTrackMap *prd_to_track_map_cptr = nullptr;
259  if (!m_prdToTrackMap.key().empty()) {
260  prd_to_track_map = SG::ReadHandle<Trk::PRDtoTrackMap>(m_prdToTrackMap, ctx);
261  if (!prd_to_track_map.isValid()) {
262  ATH_MSG_ERROR("Failed to read PRD to track association map: " << m_prdToTrackMap.key());
263  }
264  prd_to_track_map_cptr = prd_to_track_map.cptr();
265  }
266 
268  if (spacepointsPixel.isValid()) {
270  for (const SpacePointCollection *spc : *spacepointsPixel) {
271  for (const Trk::SpacePoint *sp : *spc) {
274  if ((prd_to_track_map_cptr && isUsed(sp, *prd_to_track_map_cptr)) || sp->r() > m_r_rmax || sp->r() < m_r_rmin)
275  continue;
276 
283  if (!sps)
284  continue;
285 
288  int radiusBin = static_cast<int>(sps->radius() * oneOverBinSizeR);
290  if (radiusBin > maxBinR)
291  radiusBin = maxBinR;
292 
294  data.r_ITkSorted[radiusBin].push_back(sps);
296  ++data.r_map[radiusBin];
299  if (data.r_map[radiusBin] == 1)
300  data.r_index[data.nr++] = radiusBin;
302  ++data.ns;
303  }
304  }
305  }
306  }
307 }
308 
310 // Initialize tool for new region
312 
313 void SiSpacePointsSeedMaker::newRegion(const EventContext &ctx, EventData &data,
314  const std::vector<IdentifierHash> &vPixel, const std::vector<IdentifierHash> &vStrip) const
315 {
316  if (!m_pixel && !m_strip)
317  return;
318 
319  if (not data.initialized)
321  erase(data);
322  data.iteration = 0;
323  data.trigger = false;
324  data.dzdrmin = m_dzdrmin0;
325  data.dzdrmax = m_dzdrmax0;
326  data.maxScore = m_maxScore;
327  data.r_first = 0;
328  data.checketa = false;
329 
331  float oneOverBinSizeR = 1. / m_binSizeR; //was float irstep = 1.f/m_binSizeR;
332  int maxBinR = m_nBinsR - 1; //was int irmax = m_nBinsR-1;
333 
335  data.i_ITkSpacePointForSeed = data.l_ITkSpacePointForSeed.begin();
336 
337  SG::ReadHandle<Trk::PRDtoTrackMap> prd_to_track_map;
338  const Trk::PRDtoTrackMap *prd_to_track_map_cptr = nullptr;
339  if (!m_prdToTrackMap.key().empty())
340  {
341  prd_to_track_map = SG::ReadHandle<Trk::PRDtoTrackMap>(m_prdToTrackMap, ctx);
342  if (!prd_to_track_map.isValid())
343  {
344  ATH_MSG_ERROR("Failed to read PRD to track association map: " << m_prdToTrackMap.key());
345  }
346  prd_to_track_map_cptr = prd_to_track_map.cptr();
347  }
348 
349  // Get pixels space points containers from store gate
350  //
351  if (m_pixel && !vPixel.empty())
352  {
353 
355  if (spacepointsPixel.isValid())
356  {
357  data.maxSeedsPerSP = m_maxOneSizePPP;
358 
359  // Loop through all trigger collections
360  //
361  for (const IdentifierHash &l : vPixel)
362  {
363  const auto *w = spacepointsPixel->indexFindPtr(l);
364  if (w == nullptr)
365  continue;
366  for (const Trk::SpacePoint *sp : *w)
367  {
368  float r = sp->r();
369  if ((prd_to_track_map_cptr && isUsed(sp, *prd_to_track_map_cptr)) || r > m_r_rmax || r < m_r_rmin)
370  continue;
372  int ir = static_cast<int>(sps->radius() * oneOverBinSizeR);
373  if (ir > maxBinR)
374  ir = maxBinR;
375  data.r_ITkSorted[ir].push_back(sps);
376  ++data.r_map[ir];
377  if (data.r_map[ir] == 1)
378  data.r_index[data.nr++] = ir;
379  ++data.ns;
380  }
381  }
382  }
383  }
384 
385  // Get strip space points containers from store gate
386  //
387  if (m_strip && !vStrip.empty())
388  {
389  data.maxSeedsPerSP = m_maxOneSizeSSS;
390 
392  if (spacepointsStrip.isValid())
393  {
394 
395  // Loop through all trigger collections
396  //
397  for (const IdentifierHash &l : vStrip)
398  {
399  const auto *w = spacepointsStrip->indexFindPtr(l);
400  if (w == nullptr)
401  continue;
402  for (const Trk::SpacePoint *sp : *w)
403  {
404  float r = sp->r();
405  if ((prd_to_track_map_cptr && isUsed(sp, *prd_to_track_map_cptr)) || r > m_r_rmax || r < m_r_rmin)
406  continue;
408  int ir = static_cast<int>(sps->radius() * oneOverBinSizeR);
409  if (ir > maxBinR)
410  ir = maxBinR;
411  data.r_ITkSorted[ir].push_back(sps);
412  ++data.r_map[ir];
413  if (data.r_map[ir] == 1)
414  data.r_index[data.nr++] = ir;
415  ++data.ns;
416  }
417  }
418  }
419  }
420 }
422 // Initialize tool for new region
424 
425 void SiSpacePointsSeedMaker::newRegion(const EventContext &ctx, EventData &data,
426  const std::vector<IdentifierHash> &vPixel, const std::vector<IdentifierHash> &vStrip, const IRoiDescriptor &IRD) const
427 {
428  constexpr float twoPi = 2. * M_PI;
429 
430  newRegion(ctx, data, vPixel, vStrip);
431  data.trigger = true;
432 
433  double dzdrmin = 1. / std::tan(2. * std::atan(std::exp(-IRD.etaMinus())));
434  double dzdrmax = 1. / std::tan(2. * std::atan(std::exp(-IRD.etaPlus())));
435 
436  data.zminB = IRD.zedMinus() - data.zbeam[0]; // min bottom Z
437  data.zmaxB = IRD.zedPlus() - data.zbeam[0]; // max bottom Z
438  data.zminU = data.zminB + 550. * dzdrmin;
439  data.zmaxU = data.zmaxB + 550. * dzdrmax;
440  double fmax = IRD.phiPlus();
441  double fmin = IRD.phiMinus();
442  if (fmin > fmax)
443  fmin -= twoPi;
444  data.ftrig = (fmin + fmax) * .5;
445  data.ftrigW = (fmax - fmin) * .5;
446 }
447 
448 
450 // Methods to initilize different strategies of seeds production
451 // with two space points with or without vertex constraint
453 
454 void SiSpacePointsSeedMaker::find2Sp(EventData &/*data*/, const std::list<Trk::Vertex> &/*lv*/) const
455 {
456  ATH_MSG_WARNING("ITk::SiSpacePointsSeedMaker::find2Sp not implemented!");
457 }
458 
460 // Methods to initilize different strategies of seeds production
461 // with three space points with or without vertex constraint
463 
464 void SiSpacePointsSeedMaker::find3Sp(const EventContext & ctx, EventData &data, const std::list<Trk::Vertex> &lv) const
465 {
466  if (not data.initialized)
468 
470  fillLists(data);
471 
473  data.zminU = m_zmin;
474  data.zmaxU = m_zmax;
476  int mode = 2;
477  if (lv.begin() != lv.end())
478  mode = 3;
483  bool newv = newVertices(data, lv);
485  if (newv || !data.state || data.nspoint != 3 || data.mode != mode || data.nlist)
486  {
487  data.i_ITkSeedEnd = data.i_ITkSeeds.begin();
488  data.state = 1;
489  data.nspoint = 3;
490  data.nlist = 0;
491  data.mode = mode;
492  data.endlist = true;
493  data.fvNmin = 0;
494  data.fNmin = 0;
495  data.zMin = 0;
497  }
498 
501  data.i_ITkSeed = data.i_ITkSeeds.begin();
502 
503  if (msgLvl(MSG::DEBUG))
504  {
505  data.nprint = 1;
506  dump(data, msg(MSG::DEBUG));
507  }
508 }
509 
511 // Methods to initilize different strategies of seeds production
512 // with three space points with or without vertex constraint
514 
515 void SiSpacePointsSeedMaker::find3Sp(const EventContext &ctx, EventData &data, const std::list<Trk::Vertex> &lv, const double *ZVertex) const
516 {
517  if (not data.initialized)
519 
521  fillLists(data);
522 
525  data.zminU = ZVertex[0];
526  if (data.zminU < m_zmin)
527  data.zminU = m_zmin;
528  data.zmaxU = ZVertex[1];
529  if (data.zmaxU > m_zmax)
530  data.zmaxU = m_zmax;
531 
533  int mode = 2;
534  if (lv.begin() != lv.end())
535  mode = 3;
540  bool newv = newVertices(data, lv);
542  if (newv || !data.state || data.nspoint != 3 || data.mode != mode || data.nlist)
543  {
544  data.i_ITkSeedEnd = data.i_ITkSeeds.begin();
545  data.state = 1;
546  data.nspoint = 3;
547  data.nlist = 0;
548  data.mode = mode;
549  data.endlist = true;
550  data.fvNmin = 0;
551  data.fNmin = 0;
552  data.zMin = 0;
554  }
557  data.i_ITkSeed = data.i_ITkSeeds.begin();
558 
559  if (msgLvl(MSG::DEBUG))
560  {
561  data.nprint = 1;
562  dump(data, msg(MSG::DEBUG));
563  }
564 }
565 
567 // Methods to initilize different strategies of seeds production
568 // with variable number space points with or without vertex constraint
569 // Variable means (2,3,4,....) any number space points
571 
572 void SiSpacePointsSeedMaker::findVSp(const EventContext &ctx, EventData &data, const std::list<Trk::Vertex> &lv) const
573 {
574 
575  if (not data.initialized)
577 
579  fillLists(data);
580 
581  data.zminU = m_zmin;
582  data.zmaxU = m_zmax;
583 
584  int mode = 5;
585  if (lv.begin() != lv.end())
586  mode = 6;
587  bool newv = newVertices(data, lv);
588 
589  if (newv || !data.state || data.nspoint != 4 || data.mode != mode || data.nlist)
590  {
591  data.i_ITkSeedEnd = data.i_ITkSeeds.begin();
592  data.state = 1;
593  data.nspoint = 4;
594  data.nlist = 0;
595  data.mode = mode;
596  data.endlist = true;
597  data.fvNmin = 0;
598  data.fNmin = 0;
599  data.zMin = 0;
601  }
602  data.i_ITkSeed = data.i_ITkSeeds.begin();
603 
604  if (msgLvl(MSG::DEBUG))
605  {
606  data.nprint = 1;
607  dump(data, msg(MSG::DEBUG));
608  }
609 }
610 
612 // Dumps relevant information into the MsgStream
614 
615 MsgStream &SiSpacePointsSeedMaker::dump(EventData &data, MsgStream &out) const
616 {
617  if (data.nprint)
618  return dumpEvent(data, out);
619  return dumpConditions(data, out);
620 }
621 
623 // Dumps conditions information into the MsgStream
625 
627 {
628  int n = 42-m_spacepointsPixel.key().size();
629  std::string s2;
630  for (int i=0; i<n; ++i) s2.append(" ");
631  s2.append("|");
632  n = 42-m_spacepointsStrip.key().size();
633  std::string s3;
634  for (int i=0; i<n; ++i) s3.append(" ");
635  s3.append("|");
636  n = 42-m_spacepointsOverlap.key().size();
637  std::string s4;
638  for (int i=0; i<n; ++i) s4.append(" ");
639  s4.append("|");
640  n = 42-m_beamSpotKey.key().size();
641  std::string s5;
642  for (int i=0; i<n; ++i) s5.append(" ");
643  s5.append("|");
644 
645  out<<"|---------------------------------------------------------------------|"
646  <<endmsg;
647  out<<"| Pixel space points | "<<m_spacepointsPixel.key() <<s2
648  <<endmsg;
649  out<<"| Strip space points | "<<m_spacepointsStrip.key()<<s3
650  <<endmsg;
651  out<<"| Overlap space points | "<<m_spacepointsOverlap.key()<<s4
652  <<endmsg;
653  out<<"| BeamConditionsService | "<<m_beamSpotKey.key()<<s5
654  <<endmsg;
655  out<<"| usePixel | "
656  <<std::setw(12)<<m_pixel
657  <<" |"<<endmsg;
658  out<<"| useStrip | "
659  <<std::setw(12)<<m_strip
660  <<" |"<<endmsg;
661  out<<"| maxSize | "
662  <<std::setw(12)<<m_maxsize
663  <<" |"<<endmsg;
664  out<<"| maxSizeSP | "
665  <<std::setw(12)<<m_maxsizeSP
666  <<" |"<<endmsg;
667  out<<"| pTmin (mev) | "
668  <<std::setw(12)<<std::setprecision(5)<<m_ptmin
669  <<" |"<<endmsg;
670  out<<"| max radius SP | "
671  <<std::setw(12)<<std::setprecision(5)<<m_r_rmax
672  <<" |"<<endmsg;
673  out<<"| radius step | "
674  <<std::setw(12)<<std::setprecision(5)<<m_binSizeR
675  <<" |"<<endmsg;
676  out<<"| min Z-vertex position | "
677  <<std::setw(12)<<std::setprecision(5)<<m_zmin
678  <<" |"<<endmsg;
679  out<<"| max Z-vertex position | "
680  <<std::setw(12)<<std::setprecision(5)<<m_zmax
681  <<" |"<<endmsg;
682  out<<"| min space points dR SSS | "
683  <<std::setw(12)<<std::setprecision(5)<<m_drminSSS
684  <<" |"<<std::endl;
685  out<<"| max space points dR SSS | "
686  <<std::setw(12)<<std::setprecision(5)<<m_drmaxSSS
687  <<" |"<<std::endl;
688  out<<"| min space points dR PPP | "
689  <<std::setw(12)<<std::setprecision(5)<<m_drminPPP
690  <<" |"<<std::endl;
691  out<<"| max space points dR PPP | "
692  <<std::setw(12)<<std::setprecision(5)<<m_drmaxPPP
693  <<" |"<<std::endl;
694  out<<"| max dZ impact | "
695  <<std::setw(12)<<std::setprecision(5)<<m_dzver
696  <<" |"<<endmsg;
697  out<<"| max dZ/dR impact | "
698  <<std::setw(12)<<std::setprecision(5)<<m_dzdrver
699  <<" |"<<endmsg;
700  out<<"| max impact | "
701  <<std::setw(12)<<std::setprecision(5)<<m_maxdImpact
702  <<" |"<<endmsg;
703  out<<"| max impact sss | "
704  <<std::setw(12)<<std::setprecision(5)<<m_maxdImpactSSS
705  <<" |"<<endmsg;
706  out<<"|---------------------------------------------------------------------|"
707  <<endmsg;
708  out<<"| Beam X center | "
709  <<std::setw(12)<<std::setprecision(5)<<data.xbeam[0]
710  <<" |"<<endmsg;
711  out<<"| Beam Y center | "
712  <<std::setw(12)<<std::setprecision(5)<<data.ybeam[0]
713  <<" |"<<endmsg;
714  out<<"| Beam Z center | "
715  <<std::setw(12)<<std::setprecision(5)<<data.zbeam[0]
716  <<" |"<<endmsg;
717  out<<"| Beam X-axis direction | "
718  <<std::setw(12)<<std::setprecision(5)<<data.xbeam[1]
719  <<std::setw(12)<<std::setprecision(5)<<data.xbeam[2]
720  <<std::setw(12)<<std::setprecision(5)<<data.xbeam[3]
721  <<" |"<<endmsg;
722  out<<"| Beam Y-axis direction | "
723  <<std::setw(12)<<std::setprecision(5)<<data.ybeam[1]
724  <<std::setw(12)<<std::setprecision(5)<<data.ybeam[2]
725  <<std::setw(12)<<std::setprecision(5)<<data.ybeam[3]
726  <<" |"<<endmsg;
727  out<<"| Beam Z-axis direction | "
728  <<std::setw(12)<<std::setprecision(5)<<data.zbeam[1]
729  <<std::setw(12)<<std::setprecision(5)<<data.zbeam[2]
730  <<std::setw(12)<<std::setprecision(5)<<data.zbeam[3]
731  <<" |"<<endmsg;
732  out<<"|---------------------------------------------------------------------|"
733  <<endmsg;
734  return out;
735 
736 
737 }
738 
740 // Dumps event information into the MsgStream
742 
744 {
745  out<<"|---------------------------------------------------------------------|"
746  <<endmsg;
747  out<<"| ns | "
748  <<std::setw(12)<<data.ns
749  <<" |"<<endmsg;
750  out<<"| nsaz | "
751  <<std::setw(12)<<data.nsaz
752  <<" |"<<endmsg;
753  out<<"| nsazv | "
754  <<std::setw(12)<<data.nsazv
755  <<" |"<<endmsg;
756  out<<"| seeds | "
757  <<std::setw(12)<<data.i_ITkSeeds.size()
758  <<" |"<<endmsg;
759  out<<"|---------------------------------------------------------------------|"
760  <<endmsg;
761  return out;
762 
763 }
764 
766 // Find next set space points
768 
770 {
771  if (data.endlist)
772  return;
773 
774  data.i_ITkSeedEnd = data.i_ITkSeeds.begin();
775 
776  if (data.mode == 2 || data.mode == 3 || data.mode == 5 || data.mode == 6)
778 
779  data.i_ITkSeed = data.i_ITkSeeds.begin();
780  ++data.nlist;
781 }
782 
784 // New and old list vertices comparison
786 
787 bool SiSpacePointsSeedMaker::newVertices(EventData &data, const std::list<Trk::Vertex> &lV) const
788 {
789 
790  unsigned int s1 = data.l_vertex.size();
791  unsigned int s2 = lV.size();
792 
794  data.isvertex = false;
797  if (s1 == 0 && s2 == 0)
798  return false;
799 
801  data.l_vertex.clear();
803  if (s2 == 0)
804  return false;
805 
807  data.isvertex = true;
808  for (const Trk::Vertex &v : lV)
809  {
810  data.l_vertex.insert(static_cast<float>(v.position().z()));
811  }
812 
815  data.zminU = (*data.l_vertex.begin()) - 20.;
816  if (data.zminU < m_zmin)
817  data.zminU = m_zmin;
818  data.zmaxU = (*data.l_vertex.rbegin()) + 20.;
819  if (data.zmaxU > m_zmax)
820  data.zmaxU = m_zmax;
821 
822  return false;
823 }
824 
826 // Initiate frame work for seed generator
828 
830 {
831  m_ptmin = std::abs(m_ptmin);
832 
833  if (m_ptmin < 100.)
834  m_ptmin = 100.;
835 
839 
841  if (std::abs(m_etamin) < .1)
842  m_etamin = -m_etamax;
846 
848  m_ipt = 1. / std::abs(m_ptmin);
849  m_ipt2 = m_ipt * m_ipt;
850 
859 
861  m_nBinsR = static_cast<int>((m_r_rmax + .1) / m_binSizeR);
862 
868  constexpr float twoPi = 2. * M_PI;
870 
872  const int nPhiBinsMax = arraySizePhi;
873  const float inverseSizePhiMax = static_cast<float>(nPhiBinsMax) / twoPi;
874  constexpr float inverseSizePhiMin = 10. / twoPi;
875 
881 
883  {
885  const float radiusPixelStart = m_fastTracking ? 50. : 40.;
886  const float radiusPixelEnd = m_fastTracking ? 250. : 320.;
887  const float binSizePhi_PPP = m_pixel ? azimuthalStep(m_ptmin, m_maxdImpact, radiusPixelStart, radiusPixelEnd) / 3.f : 1.f;
889  const float binSizePhi_SSS = m_strip ? azimuthalStep(m_ptmin, m_maxdImpactSSS, m_rminSSS, m_rmaxSSS) / 3.f : 1.f;
890  m_inverseBinSizePhiPPP = 1. / binSizePhi_PPP;
891  m_inverseBinSizePhiSSS = 1. / binSizePhi_SSS;
892  }
893  else
894  {
897  float ptm = 400.;
899  if (m_ptmin < ptm)
900  ptm = m_ptmin;
902  }
903 
905  if (m_inverseBinSizePhiPPP > inverseSizePhiMax)
906  m_inverseBinSizePhiPPP = inverseSizePhiMax;
907  else if (m_inverseBinSizePhiPPP < inverseSizePhiMin)
908  m_inverseBinSizePhiPPP = inverseSizePhiMin;
909  if (m_inverseBinSizePhiSSS > inverseSizePhiMax)
910  m_inverseBinSizePhiSSS = inverseSizePhiMax;
911  else if (m_inverseBinSizePhiSSS < inverseSizePhiMin)
912  m_inverseBinSizePhiSSS = inverseSizePhiMin;
913 
915  m_maxPhiBinPPP = static_cast<int>(twoPi * m_inverseBinSizePhiPPP);
917  if (m_maxPhiBinPPP >= nPhiBinsMax) m_maxPhiBinPPP = nPhiBinsMax - 1;
918  m_maxPhiBinSSS = static_cast<int>(twoPi * m_inverseBinSizePhiSSS);
919  if (m_maxPhiBinSSS >= nPhiBinsMax) m_maxPhiBinSSS = nPhiBinsMax - 1;
921  m_inverseBinSizePhiPPP = ( m_maxPhiBinPPP + 1 ) / twoPi;
922  m_inverseBinSizePhiSSS = ( m_maxPhiBinSSS + 1 ) / twoPi;
923 
924  // Build radius-azimuthal-Z sorted containers for Z-vertices
926  const int nPhiBinsVertexMax = arraySizePhiV;
927  const float inverseBinSizePhiVertexMax = static_cast<float>(nPhiBinsVertexMax)/twoPi;
929  if (m_inverseBinSizePhiVertex > inverseBinSizePhiVertexMax) m_inverseBinSizePhiVertex = inverseBinSizePhiVertexMax;
930  m_maxBinPhiVertex = static_cast<int>(twoPi*m_inverseBinSizePhiVertex);
931  if (m_maxBinPhiVertex>=nPhiBinsVertexMax) m_maxBinPhiVertex = nPhiBinsVertexMax-1;
932 
935  m_maxPhiBinPPP, false);
936 
939  m_maxPhiBinSSS, true);
940 
944 
945 }
946 
947 void SiSpacePointsSeedMaker::buildConnectionMaps(std::array<int, arraySizePhiZ> &nNeighbourCellsBottom,
948  std::array<int, arraySizePhiZ> &nNeighbourCellsTop,
949  std::array<std::array<int, arraySizeNeighbourBins>, arraySizePhiZ> &neighbourCellsBottom,
950  std::array<std::array<int, arraySizeNeighbourBins>, arraySizePhiZ> &neighbourCellsTop,
951  int maxPhiBin, bool isSSS)
952 {
953 
957 
958  for (int phiBin = 0; phiBin <= maxPhiBin; ++phiBin)
959  {
960 
961  int phiBelow = phiBin - 1;
962  if (phiBelow < 0) phiBelow = maxPhiBin;
963 
964  int phiAbove = phiBin + 1;
965  if (phiAbove > maxPhiBin) phiAbove = 0;
966 
968  for (int z = 0; z < arraySizeZ; ++z) {
969 
972 
973  int twoDbinSamePhi = phiBin * arraySizeZ + z;
974  int twoDbinLowerPhi = phiBelow * arraySizeZ + z;
975  int twoDbinHigherPhi = phiAbove * arraySizeZ + z;
976 
977  nNeighbourCellsBottom[twoDbinSamePhi] = 3;
978  nNeighbourCellsTop[twoDbinSamePhi] = 3;
979 
980  neighbourCellsBottom[twoDbinSamePhi][0] = twoDbinSamePhi;
981  neighbourCellsTop[twoDbinSamePhi][0] = twoDbinSamePhi;
982 
983  neighbourCellsBottom[twoDbinSamePhi][1] = twoDbinLowerPhi;
984  neighbourCellsTop[twoDbinSamePhi][1] = twoDbinLowerPhi;
985 
986  neighbourCellsBottom[twoDbinSamePhi][2] = twoDbinHigherPhi;
987  neighbourCellsTop[twoDbinSamePhi][2] = twoDbinHigherPhi;
988 
997  if (z == 5)
998  {
999  nNeighbourCellsTop[twoDbinSamePhi] = 9;
1000  // in the central z region, we include the two neighbouring
1001  // z slices for the top neighbour search
1002 
1003  neighbourCellsTop[twoDbinSamePhi][3] = twoDbinSamePhi + 1;
1004  neighbourCellsTop[twoDbinSamePhi][4] = twoDbinLowerPhi + 1;
1005  neighbourCellsTop[twoDbinSamePhi][5] = twoDbinHigherPhi + 1;
1006  neighbourCellsTop[twoDbinSamePhi][6] = twoDbinSamePhi - 1;
1007  neighbourCellsTop[twoDbinSamePhi][7] = twoDbinLowerPhi - 1;
1008  neighbourCellsTop[twoDbinSamePhi][8] = twoDbinHigherPhi - 1;
1009  }
1010  // z > 5: positive z values, |z| > 250mm
1011  else if (z > 5)
1012  {
1013  // for the bottom SP search in positive non-central z, we include the
1014  // neighbouring Z region on the left (towards the IP) in the bottom
1015  // neighbour search
1016  nNeighbourCellsBottom[twoDbinSamePhi] = 6;
1017  neighbourCellsBottom[twoDbinSamePhi][3] = twoDbinSamePhi - 1;
1018  neighbourCellsBottom[twoDbinSamePhi][4] = twoDbinLowerPhi - 1;
1019  neighbourCellsBottom[twoDbinSamePhi][5] = twoDbinHigherPhi - 1;
1020 
1021  if (z < 10)
1022  {
1028  nNeighbourCellsTop[twoDbinSamePhi] = 6;
1029  neighbourCellsTop[twoDbinSamePhi][3] = twoDbinSamePhi + 1;
1030  neighbourCellsTop[twoDbinSamePhi][4] = twoDbinLowerPhi + 1;
1031  neighbourCellsTop[twoDbinSamePhi][5] = twoDbinHigherPhi + 1;
1032  }
1033  }
1034  // z < 5: negative z values, |z| > 250mm
1035  else
1036  {
1041  nNeighbourCellsBottom[twoDbinSamePhi] = 6;
1042  neighbourCellsBottom[twoDbinSamePhi][3] = twoDbinSamePhi + 1;
1043  neighbourCellsBottom[twoDbinSamePhi][4] = twoDbinLowerPhi + 1;
1044  neighbourCellsBottom[twoDbinSamePhi][5] = twoDbinHigherPhi + 1;
1045 
1046  if (z > 0)
1047  {
1048  // if there is a z region on the left (away from the IP), we include it in the top
1049  // neighbour search
1050  nNeighbourCellsTop[twoDbinSamePhi] = 6;
1051  neighbourCellsTop[twoDbinSamePhi][3] = twoDbinSamePhi - 1;
1052  neighbourCellsTop[twoDbinSamePhi][4] = twoDbinLowerPhi - 1;
1053  neighbourCellsTop[twoDbinSamePhi][5] = twoDbinHigherPhi - 1;
1054  }
1055  }
1056 
1062  if (isSSS)
1064  {
1065  if (z == 3)
1066  {
1067  nNeighbourCellsBottom[twoDbinSamePhi] = 9;
1068  neighbourCellsBottom[twoDbinSamePhi][6] = twoDbinSamePhi + 2;
1069  neighbourCellsBottom[twoDbinSamePhi][7] = twoDbinLowerPhi + 2;
1070  neighbourCellsBottom[twoDbinSamePhi][8] = twoDbinHigherPhi + 2;
1071  }
1072  else if (z == 7)
1073  {
1074  nNeighbourCellsBottom[twoDbinSamePhi] = 9;
1075  neighbourCellsBottom[twoDbinSamePhi][6] = twoDbinSamePhi - 2;
1076  neighbourCellsBottom[twoDbinSamePhi][7] = twoDbinLowerPhi - 2;
1077  neighbourCellsBottom[twoDbinSamePhi][8] = twoDbinHigherPhi - 2;
1078  }
1079  }
1080  }
1081  }
1082 }
1083 
1087 
1088 void SiSpacePointsSeedMaker::buildConnectionMapsVertex(std::array<int, arraySizePhiZV> &nNeighbourCells,
1089  std::array<std::array<int, arraySizeNeighbourBinsVertex>, arraySizePhiZV> &neighbourCells,
1090  int maxPhiBin)
1091 {
1092  for (int phiBin=0; phiBin<=maxPhiBin; ++phiBin) {
1093 
1094  int phiBinBelow = phiBin-1;
1095  if (phiBinBelow<0) phiBinBelow=maxPhiBin;
1096 
1097  int phiBinTop = phiBin+1;
1098  if (phiBinTop>maxPhiBin) phiBinTop=0;
1099 
1101  for (int zbin=0; zbin<arraySizeZV; ++zbin) {
1102 
1103  int twoDbinSamePhi = phiBin*arraySizeZV+zbin;
1104  int twoDbinLowerPhi = phiBinBelow*arraySizeZV+zbin;
1105  int twoDbinHigherPhi = phiBinTop*arraySizeZV+zbin;
1106 
1108  nNeighbourCells[twoDbinSamePhi] = 3;
1109  neighbourCells[twoDbinSamePhi][0] = twoDbinSamePhi;
1110  neighbourCells[twoDbinSamePhi][1] = twoDbinLowerPhi;
1111  neighbourCells[twoDbinSamePhi][2] = twoDbinHigherPhi;
1112 
1114  if (zbin>1) {
1115  nNeighbourCells[twoDbinSamePhi] = 6;
1116  neighbourCells[twoDbinSamePhi][3] = twoDbinSamePhi-1;
1117  neighbourCells[twoDbinSamePhi][4] = twoDbinLowerPhi-1;
1118  neighbourCells[twoDbinSamePhi][5] = twoDbinHigherPhi-1;
1119  }
1121  else if (zbin<1) {
1122  nNeighbourCells[twoDbinSamePhi] = 6;
1123  neighbourCells[twoDbinSamePhi][3] = twoDbinSamePhi+1;
1124  neighbourCells[twoDbinSamePhi][4] = twoDbinLowerPhi+1;
1125  neighbourCells[twoDbinSamePhi][5] = twoDbinHigherPhi+1;
1126  }
1127  }
1128  }
1129 }
1130 
1131 float SiSpacePointsSeedMaker::azimuthalStep(const float pTmin, const float maxd0, const float Rmin, const float Rmax)
1132 {
1136  float Rm = pTmin / .6;
1137 
1144  float worstCaseD0 = maxd0;
1145  if (maxd0 > Rmin)
1146  worstCaseD0 = Rmin;
1147 
1148  float sI = std::abs(std::asin(worstCaseD0 / Rmin) - std::asin(worstCaseD0 / Rmax));
1149  float sF = std::abs(std::asin(std::min(1., Rmax / (2. * Rm))) -
1150  std::asin(std::min(1., Rmin / (2. * Rm))));
1151  return sI + sF;
1152 }
1153 
1155 // Initiate beam frame work for seed generator
1157 
1159 {
1161 
1162  const Amg::Vector3D &cb = beamSpotHandle->beamPos();
1163  double tx = std::tan(beamSpotHandle->beamTilt(0));
1164  double ty = std::tan(beamSpotHandle->beamTilt(1));
1165 
1166  double phi = std::atan2(ty, tx);
1167  double theta = std::acos(1. / std::sqrt(1. + tx * tx + ty * ty));
1168  double sinTheta = std::sin(theta);
1169  double cosTheta = std::cos(theta);
1170  double sinPhi = std::sin(phi);
1171  double cosPhi = std::cos(phi);
1172 
1173  data.xbeam[0] = static_cast<float>(cb.x());
1174  data.xbeam[1] = static_cast<float>(cosTheta * cosPhi * cosPhi + sinPhi * sinPhi);
1175  data.xbeam[2] = static_cast<float>(cosTheta * sinPhi * cosPhi - sinPhi * cosPhi);
1176  data.xbeam[3] = -static_cast<float>(sinTheta * cosPhi);
1177 
1178  data.ybeam[0] = static_cast<float>(cb.y());
1179  data.ybeam[1] = static_cast<float>(cosTheta * cosPhi * sinPhi - sinPhi * cosPhi);
1180  data.ybeam[2] = static_cast<float>(cosTheta * sinPhi * sinPhi + cosPhi * cosPhi);
1181  data.ybeam[3] = -static_cast<float>(sinTheta * sinPhi);
1182 
1183  data.zbeam[0] = static_cast<float>(cb.z());
1184  data.zbeam[1] = static_cast<float>(sinTheta * cosPhi);
1185  data.zbeam[2] = static_cast<float>(sinTheta * sinPhi);
1186  data.zbeam[3] = static_cast<float>(cosTheta);
1187 }
1188 
1190 // Initiate beam frame work for seed generator
1193 {
1194  r[0] = static_cast<float>(sp->globalPosition().x()) - data.xbeam[0];
1195  r[1] = static_cast<float>(sp->globalPosition().y()) - data.ybeam[0];
1196  r[2] = static_cast<float>(sp->globalPosition().z()) - data.zbeam[0];
1197 }
1198 
1200 // Initiate space points seed maker
1202 
1204 {
1205  constexpr float twoPi = 2. * M_PI;
1206 
1207  int firstRadialBin = 0;
1208  int lastRadialBin = 0;
1209  bool endcap = false;
1210 
1224  const std::map<float, int> ztoBin{
1225  {-2500., 0},
1226  {-1400., 1},
1227  {-925., 2},
1228  {-500., 3},
1229  {-250., 4},
1230  {250., 5},
1231  {500., 6},
1232  {925., 7},
1233  {1400, 8},
1234  {2500, 9},
1235  {100000, 10},
1236  };
1237 
1238  bool isPixel = (m_fastTracking && m_pixel) || data.iteration == 1;
1239 
1240  int nPhiBins = isPixel ? m_maxPhiBinPPP : m_maxPhiBinSSS;
1241  float inverseBinSizePhi = isPixel ? m_inverseBinSizePhiPPP : m_inverseBinSizePhiSSS;
1242 
1243  for (int radialBin = data.r_first; radialBin < m_nBinsR; ++radialBin)
1244  {
1246  if (!data.r_map[radialBin])
1247  continue;
1248 
1249  // Stop when we reach strip SP in PPP iteration #1
1250  std::vector<SiSpacePointForSeed *>::iterator SP_first = data.r_ITkSorted[radialBin].begin();
1251  if (isPixel && (*SP_first)->spacepoint->clusterList().second)
1252  break;
1253 
1255  if (firstRadialBin == 0)
1256  firstRadialBin = radialBin;
1257  lastRadialBin = radialBin;
1258 
1259  // loop over the space points in the r-bin and sort them into the 2d phi-z binning
1260  for (SiSpacePointForSeed *SP : data.r_ITkSorted[radialBin])
1261  {
1262 
1265  float Phi = SP->phi();
1266  if (Phi < 0.)
1267  Phi += twoPi; // phi is defined in [0..2pi] for the binning
1268  int phiBin = static_cast<int>(Phi * inverseBinSizePhi);
1270  if (phiBin < 0)
1271  {
1272  phiBin = nPhiBins;
1273  }
1274  else if (phiBin > nPhiBins)
1275  {
1276  phiBin = 0;
1277  }
1278 
1279  float Z = SP->z();
1280  endcap = (std::abs(Z) > 1490);
1287  int zBin{0};
1288  auto bound = ztoBin.lower_bound(Z);
1290  if (bound == ztoBin.end())
1291  {
1292  --bound;
1293  }
1294  zBin = bound->second;
1295 
1297  int twoDbin = phiBin * arraySizeZ + zBin;
1300  ++data.nsaz;
1301  // push our space point into the 2D binned array
1302  data.rfz_ITkSorted[twoDbin].push_back(SP);
1303 
1307  if (!data.rfz_map[twoDbin]++)
1308  data.rfz_index[data.nrfz++] = twoDbin;
1309  }
1310  }
1311 
1312  data.state = 0;
1313 
1314  if (m_fastTracking) {
1315  // Loop through all RZ collections and sort them in radius order
1316  //
1317  for (int twoDbin(0); twoDbin != arraySizePhiZ; ++twoDbin) {
1318  if (data.rfz_ITkSorted[twoDbin].size() > 1) {
1319  std::sort(data.rfz_ITkSorted[twoDbin].begin(), data.rfz_ITkSorted[twoDbin].end(), SiSpacePointsComparison_R());
1320  }
1321  }
1322 
1323  if (m_strip) {
1324  data.RTmin = m_rminSSS ;
1325  data.RTmax = m_rmaxSSS ;
1326  }
1327 
1328  } else {
1329  if (isPixel) { // PPP
1330  data.RTmin = m_binSizeR*firstRadialBin+10. ;
1331  data.RTmax = m_binSizeR*lastRadialBin-10.;
1332  } else { //SSS
1333  if (endcap and m_isLRT) {
1334  data.RTmin = m_binSizeR*firstRadialBin+10. ;
1335  data.RTmax = m_binSizeR*lastRadialBin-10.;
1336  } else {
1337  data.RTmin = m_binSizeR*firstRadialBin+30. ;
1338  data.RTmax = m_binSizeR*lastRadialBin-150.;
1339  }
1340  }
1341  }
1342 
1343 }
1344 
1346 // Pixels information
1348 
1350 {
1351  const InDet::SiCluster *cl = static_cast<const InDet::SiCluster *>(sp->clusterList().first);
1352  const InDetDD::SiDetectorElement *de = cl->detectorElement();
1353  const Amg::Transform3D &Tp = de->surface().transform();
1354  r[3] = float(Tp(0, 2));
1355  r[4] = float(Tp(1, 2));
1356  r[5] = float(Tp(2, 2));
1357 }
1358 
1360 // Strip information
1362 
1364 {
1365  const InDet::SiCluster *c0 = static_cast<const InDet::SiCluster *>(sp->clusterList().first);
1366  const InDet::SiCluster *c1 = static_cast<const InDet::SiCluster *>(sp->clusterList().second);
1367  const InDetDD::SiDetectorElement *d0 = c0->detectorElement();
1368  const InDetDD::SiDetectorElement *d1 = c1->detectorElement();
1369 
1370  Amg::Vector2D lc0 = c0->localPosition();
1371  Amg::Vector2D lc1 = c1->localPosition();
1372 
1373  std::pair<Amg::Vector3D, Amg::Vector3D> e0 =
1374  (d0->endsOfStrip(InDetDD::SiLocalPosition(lc0.y(), lc0.x(), 0.)));
1375  std::pair<Amg::Vector3D, Amg::Vector3D> e1 =
1376  (d1->endsOfStrip(InDetDD::SiLocalPosition(lc1.y(), lc1.x(), 0.)));
1377 
1378  Amg::Vector3D s0(.5 * (e0.first + e0.second));
1379  Amg::Vector3D s1(.5 * (e1.first + e1.second));
1380 
1381  Amg::Vector3D b0(.5 * (e0.second - e0.first));
1382  Amg::Vector3D b1(.5 * (e1.second - e1.first));
1383  Amg::Vector3D d02(s0 - s1);
1384 
1385  // b0
1386  r[3] = float(b0[0]);
1387  r[4] = float(b0[1]);
1388  r[5] = float(b0[2]);
1389 
1390  // b1
1391  r[6] = float(b1[0]);
1392  r[7] = float(b1[1]);
1393  r[8] = float(b1[2]);
1394 
1395  // r0-r2
1396  r[9] = float(d02[0]);
1397  r[10] = float(d02[1]);
1398  r[11] = float(d02[2]);
1399 
1400  // r0
1401  r[12] = float(s0[0]) - data.xbeam[0];
1402  r[13] = float(s0[1]) - data.ybeam[0];
1403  r[14] = float(s0[2]) - data.zbeam[0];
1404 }
1405 
1407 // Erase space point information
1409 
1411 {
1412  for (int i = 0; i < data.nrfz; ++i)
1413  {
1414  int n = data.rfz_index[i];
1415  data.rfz_map[n] = 0;
1416  data.rfz_ITkSorted[n].clear();
1417  }
1418 
1419  for (int i = 0; i < data.nrfzv; ++i)
1420  {
1421  int n = data.rfzv_index[i];
1422  data.rfzv_map[n] = 0;
1423  data.rfzv_ITkSorted[n].clear();
1424  }
1425 
1426  for (int i = 0; i < data.nr; ++i) {
1427  int n = data.r_index[i];
1428  data.r_map[n] = 0;
1429  data.r_ITkSorted[n].clear();
1430  }
1431 
1432  data.state = 0;
1433  data.nsaz = 0;
1434  data.nsazv = 0;
1435  data.nrfz = 0;
1436  data.nrfzv = 0;
1437  data.ns = 0;
1438  data.nr = 0;
1439 }
1440 
1442 // 2 space points seeds production
1444 
1446 {
1447  ATH_MSG_WARNING("ITk::SiSpacePointsSeedMaker::production2Sp not implemented!");
1448 }
1449 
1451 // Production 3 space points seeds
1453 
1455 {
1457  if (data.nsaz < 3)
1458  return;
1459 
1478  const std::array<int, arraySizeZ> zBinIndex_SSS{5, 6, 4, 7, 3, 8, 2, 9, 1, 10, 0};
1479  const std::array<int, arraySizeZ> zBinIndex_PPP_fast{0, 10, 1, 9, 2, 8, 5, 3, 7, 4, 6};
1480  const std::array<int, arraySizeZ> zBinIndex_PPP_long{0, 1, 2, 3, 10, 9, 8, 7, 5, 4, 6};
1481  const auto zBinIndex_PPP = m_fastTracking ? zBinIndex_PPP_fast : zBinIndex_PPP_long;
1482  // Fast tracking runs a single iteration, either pixel or strip
1483  // Default tracking runs a 0-th iteration for strip then a 1-st for pixel
1484  bool isPixel = (m_fastTracking && m_pixel) || data.iteration == 1;
1485  const auto zBinIndex = isPixel ? zBinIndex_PPP : zBinIndex_SSS;
1486 
1487  const float RTmax[11] = { 80., 200., 200., 200., 250., 250., 250., 200., 200., 200., 80.};
1488  const float RTmin[11] = { 40., 40., 70., 70., 70., 70., 70., 70., 70., 40., 40.};
1489 
1492  std::array<std::vector<SiSpacePointForSeed *>::iterator, arraySizeNeighbourBins> iter_topCands;
1493  std::array<std::vector<SiSpacePointForSeed *>::iterator, arraySizeNeighbourBins> iter_endTopCands;
1494  std::array<std::vector<SiSpacePointForSeed *>::iterator, arraySizeNeighbourBins> iter_bottomCands;
1495  std::array<std::vector<SiSpacePointForSeed *>::iterator, arraySizeNeighbourBins> iter_endBottomCands;
1496 
1497  int nPhiBins;
1498  std::array<int, arraySizePhiZ> nNeighbourCellsBottom{};
1499  std::array<int, arraySizePhiZ> nNeighbourCellsTop{};
1500  std::array<std::array<int, arraySizeNeighbourBins>, arraySizePhiZ> neighbourCellsBottom{};
1501  std::array<std::array<int, arraySizeNeighbourBins>, arraySizePhiZ> neighbourCellsTop{};
1502 
1503  if (isPixel)
1504  {
1505  nPhiBins = m_maxPhiBinPPP;
1506  nNeighbourCellsBottom = m_nNeighbourCellsBottomPPP;
1507  nNeighbourCellsTop = m_nNeighbourCellsTopPPP;
1508  neighbourCellsBottom = m_neighbourCellsBottomPPP;
1509  neighbourCellsTop = m_neighbourCellsTopPPP;
1510  }
1511  else
1512  {
1513  nPhiBins = m_maxPhiBinSSS;
1514  nNeighbourCellsBottom = m_nNeighbourCellsBottomSSS;
1515  nNeighbourCellsTop = m_nNeighbourCellsTopSSS;
1516  neighbourCellsBottom = m_neighbourCellsBottomSSS;
1517  neighbourCellsTop = m_neighbourCellsTopSSS;
1518  }
1519 
1521  int nseed = 0;
1523  data.endlist = true;
1524 
1526  for (int phiBin = data.fNmin; phiBin <= nPhiBins; ++phiBin)
1527  {
1528 
1530  int z = (m_fastTracking && m_pixel) ? 2 : 0;
1532  if (!data.endlist)
1533  z = data.zMin;
1534 
1538  for (; z < arraySizeZ; ++z)
1539  {
1540 
1541  if (m_fastTracking && m_pixel)
1542  {
1543  data.RTmax = RTmax[ zBinIndex[z] ];
1544  data.RTmin = RTmin[ zBinIndex[z] ];
1545  }
1546 
1547  int phiZbin = phiBin * arraySizeZ + zBinIndex[z];
1548 
1550  if (!data.rfz_map[phiZbin])
1551  continue;
1552 
1555  int numberBottomCells = 0;
1556  int numberTopCells = 0;
1557 
1562  for (int neighbourCellNumber = 0; neighbourCellNumber < nNeighbourCellsBottom[phiZbin]; ++neighbourCellNumber)
1563  {
1564 
1565  int theNeighbourCell = neighbourCellsBottom[phiZbin][neighbourCellNumber];
1567  if (!data.rfz_map[theNeighbourCell])
1568  continue;
1570  iter_bottomCands[numberBottomCells] = data.rfz_ITkSorted[theNeighbourCell].begin();
1571  iter_endBottomCands[numberBottomCells++] = data.rfz_ITkSorted[theNeighbourCell].end();
1572  }
1573 
1578  for (int neighbourCellNumber = 0; neighbourCellNumber < nNeighbourCellsTop[phiZbin]; ++neighbourCellNumber)
1579  {
1580 
1581  int theNeighbourCell = neighbourCellsTop[phiZbin][neighbourCellNumber];
1583  if (!data.rfz_map[theNeighbourCell])
1584  continue;
1586  iter_topCands[numberTopCells] = data.rfz_ITkSorted[theNeighbourCell].begin();
1587  iter_endTopCands[numberTopCells++] = data.rfz_ITkSorted[theNeighbourCell].end();
1588  }
1589 
1591  if (!data.trigger)
1592  {
1593  if (isPixel)
1594  production3SpPPP(data, iter_bottomCands, iter_endBottomCands, iter_topCands, iter_endTopCands, numberBottomCells, numberTopCells, nseed);
1595  else
1596  production3SpSSS(data, iter_bottomCands, iter_endBottomCands, iter_topCands, iter_endTopCands, numberBottomCells, numberTopCells, nseed);
1597  }
1598  else
1599  production3SpTrigger(data, iter_bottomCands, iter_endBottomCands, iter_topCands, iter_endTopCands, numberBottomCells, numberTopCells, nseed);
1600  }
1601 
1608  if (nseed >= m_maxsize)
1609  {
1610  data.endlist = false;
1611  data.fNmin = phiBin + 1;
1612  return;
1613  }
1614  }
1615 
1617  data.endlist = true;
1618 }
1619 
1621 // Production 3 pixel space points seeds for full scan
1623 
1624 void SiSpacePointsSeedMaker::production3SpPPP(EventData &data,
1625  std::array<std::vector<SiSpacePointForSeed *>::iterator, arraySizeNeighbourBins> &iter_bottomCands,
1626  std::array<std::vector<SiSpacePointForSeed *>::iterator, arraySizeNeighbourBins> &iter_endBottomCands,
1627  std::array<std::vector<SiSpacePointForSeed *>::iterator, arraySizeNeighbourBins> &iter_topCands,
1628  std::array<std::vector<SiSpacePointForSeed *>::iterator, arraySizeNeighbourBins> &iter_endTopCands,
1629  const int numberBottomCells, const int numberTopCells, int &nseed) const
1630 {
1631 
1638  std::vector<SiSpacePointForSeed *>::iterator iter_centralSP = iter_bottomCands[0];
1640 
1647  for (; iter_centralSP != iter_endBottomCands[0]; ++iter_centralSP)
1649  {
1650  if((*iter_centralSP)->radius() > data.RTmin) break;
1651  }
1652 
1655  iter_topCands[0] = iter_centralSP;
1656  ++iter_topCands[0];
1657 
1659  const float &ipt2K = data.ipt2K;
1660  const float &ipt2C = data.ipt2C;
1661  const float &COFK = data.COFK;
1662  const float &maxd0cut = m_maxdImpact;
1663  const float &zmax = data.zmaxU;
1664  const float &dzdrmax = data.dzdrmax;
1665  data.ITkCmSp.clear();
1666 
1669  size_t SPcapacity = data.ITkSP.size();
1670 
1672  for (; iter_centralSP != iter_endBottomCands[0]; ++iter_centralSP)
1673  {
1674  const float &R = (*iter_centralSP)->radius();
1675 
1676  if(R > data.RTmax)
1677  break;
1678 
1680  const float &X = (*iter_centralSP)->x();
1681  const float &Y = (*iter_centralSP)->y();
1682  const float &Z = (*iter_centralSP)->z();
1683 
1686  double absZ = std::abs(Z);
1687  if (!m_fastTracking && absZ > m_zmaxPPP)
1688  continue;
1689 
1690  float covr0 = (*iter_centralSP)->covr();
1691  float covz0 = (*iter_centralSP)->covz();
1692  float Ri = 1. / R;
1693  float ax = X * Ri;
1694  float ay = Y * Ri;
1695  float VR = maxd0cut / (R * R);
1696  size_t Ntm = 2;
1697  if (R > m_rmaxPPP)
1698  Ntm = 1;
1699 
1702  size_t Nt = 0;
1703 
1706  for (int cell = 0; cell < numberTopCells; ++cell)
1707  {
1708  std::vector<SiSpacePointForSeed *>::iterator iter_otherSP = iter_topCands[cell], iter_otherSPend = iter_endTopCands[cell];
1709  if (iter_otherSP == iter_otherSPend) continue;
1710 
1711  for(; iter_otherSP!=iter_otherSPend; ++iter_otherSP) {
1712  if(( (*iter_otherSP)->radius()- R ) >= m_drminPPP) break;
1713  }
1714  iter_topCands[cell]=iter_otherSP;
1715 
1717  for (; iter_otherSP != iter_endTopCands[cell]; ++iter_otherSP)
1718  {
1720  float Rt = (*iter_otherSP)->radius();
1721  float dR = Rt - R;
1722 
1723  const float dz = (*iter_otherSP)->z() - Z;
1724  const float dZdR = dz / dR;
1727  const float z0 = Z - R * dZdR;
1728  if (std::abs(z0) > zmax)
1729  continue;
1730 
1731  float dx = (*iter_otherSP)->x() - X;
1732  float dy = (*iter_otherSP)->y() - Y;
1733  float x = dx * ax + dy * ay;
1734  float y = dy * ax - dx * ay;
1735  float dxy = x * x + y * y;
1736  float r2 = 1. / dxy;
1737  float u = x * r2;
1738  float v = y * r2;
1739 
1740  if (std::abs(R * y) > maxd0cut * x)
1741  {
1742  float V0;
1743  y < 0. ? V0 = VR : V0 = -VR;
1744  float A = (v - V0) / (u + 1. / R);
1745  float B = V0 + A / R;
1746  if ((B * B) > (ipt2K * (1. + A * A)))
1747  continue;
1748  }
1749 
1750  const float dr = std::sqrt(r2);
1751  const float tz = dz * dr;
1753  if (std::abs(tz) > dzdrmax)
1754  continue;
1755 
1757  data.ITkSP[Nt] = (*iter_otherSP);
1758  data.R[Nt] = dr;
1759  data.U[Nt] = u;
1760  data.V[Nt] = v;
1761  data.Er[Nt] = ((covz0 + (*iter_otherSP)->covz()) + (tz * tz) * (covr0 + (*iter_otherSP)->covr())) * r2;
1762  data.ITkSP[Nt]->setDR(std::sqrt(dxy + dz * dz));
1763  data.ITkSP[Nt]->setDZDR(dZdR);
1764  data.Tn[Nt].Fl = tz;
1765  data.Tn[Nt].In = Nt;
1766 
1770  if (++Nt == SPcapacity)
1771  {
1772  size_t increment = 50;
1774  SPcapacity = data.ITkSP.size();
1775  }
1776  }
1777  }
1778 
1779  if (Nt < Ntm)
1780  continue;
1781 
1785  size_t Nb = Nt;
1786 
1789  for (int cell = 0; cell < numberBottomCells; ++cell)
1790  {
1791 
1792  std::vector<SiSpacePointForSeed*>::iterator iter_otherSP = iter_bottomCands[cell];
1793 
1794  for(; iter_otherSP!=iter_endBottomCands[cell]; ++iter_otherSP) {
1795  if( (R - (*iter_otherSP)->radius()) <= m_drmaxPPP) break;
1796  }
1797  iter_bottomCands[cell]=iter_otherSP;
1798 
1800  for (; iter_otherSP != iter_endBottomCands[cell]; ++iter_otherSP)
1801  {
1803  const float &Rb = (*iter_otherSP)->radius();
1804  float dR = R - Rb;
1805 
1807  if (dR < m_drminPPP)
1808  break;
1809 
1810  const float dz = Z - (*iter_otherSP)->z();
1811  const float dZdR = dz / dR;
1814  const float z0 = Z - R * dZdR;
1815  if (std::abs(z0) > zmax)
1816  continue;
1817 
1818  float dx = (*iter_otherSP)->x() - X;
1819  float dy = (*iter_otherSP)->y() - Y;
1820  float x = dx * ax + dy * ay;
1821  float y = dy * ax - dx * ay;
1822  float dxy = ( x * x + y * y );
1823  float r2 = 1. / dxy;
1824  float u = x * r2;
1825  float v = y * r2;
1826 
1827  if (std::abs(R * y) > -maxd0cut * x)
1828  {
1829  float V0;
1830  y > 0. ? V0 = VR : V0 = -VR;
1831  float A = (v - V0) / (u + 1. / R);
1832  float B = V0 + A / R;
1833  if ((B * B) > (ipt2K * (1. + A * A)))
1834  continue;
1835  }
1836 
1837  const float dr = std::sqrt(r2);
1838  const float tz = dz * dr;
1840  if (std::abs(tz) > dzdrmax)
1841  continue;
1842 
1843  //Updated to 45mm for ITk layout 03-00-00
1844  if (m_fastTracking && (*iter_otherSP)->radius() < 45. && std::abs(tz) > 1.5)
1845  continue;
1846 
1848  data.ITkSP[Nb] = (*iter_otherSP);
1849  data.R[Nb] = dr;
1850  data.U[Nb] = u;
1851  data.V[Nb] = v;
1852  data.Er[Nb] = ((covz0 + (*iter_otherSP)->covz()) + (tz * tz) * (covr0 + (*iter_otherSP)->covr())) * r2;
1853  data.ITkSP[Nb]->setDR(std::sqrt(dxy + dz * dz));
1854  data.ITkSP[Nb]->setDZDR(dZdR);
1855  data.Tn[Nb].Fl = tz;
1856  data.Tn[Nb].In = Nb;
1857 
1861  if (++Nb == SPcapacity)
1862  {
1863  size_t increment = 50;
1865  SPcapacity = data.ITkSP.size();
1866  }
1867 
1868  }
1869  }
1870 
1872  if (!(Nb - Nt))
1873  continue;
1874 
1875  sort(data.Tn,0,Nt);
1876  sort(data.Tn,Nt,Nb-Nt);
1877 
1878  data.nOneSeeds = 0;
1879  data.nOneSeedsQ = 0;
1880  data.ITkMapOneSeeds.clear();
1881  data.ITkMapOneSeedsQ.clear();
1882 
1885  size_t it0 = 0;
1886  for (size_t ib = Nt; ib < Nb; ++ib)
1887  {
1888 
1889  if (it0 == Nt)
1890  break;
1891 
1893  float Tzb = data.Tn[ib].Fl;
1894  int b = data.Tn[ib].In;
1895 
1896  float Rb2r = data.R[b] * covr0;
1897  float Rb2z = data.R[b] * covz0;
1898  float Erb = data.Er[b];
1899  float Vb = data.V[b];
1900  float Ub = data.U[b];
1901  float Tzb2 = (1. + Tzb * Tzb);
1902  float sTzb2 = std::sqrt(Tzb2);
1903 
1904  float sigmaSquaredScatteringPtDependent = Tzb2 * COFK;
1905  float sigmaSquaredScatteringMinPt = Tzb2 * ipt2C;
1906  float d0max = maxd0cut;
1909 
1910  size_t Nc = 1;
1911  if (data.ITkSP[b]->radius() > m_rmaxPPP){
1912  Nc = 0;
1913  }
1914  if (data.nOneSeedsQ)
1915  ++Nc;
1916 
1918  for (size_t it = it0; it < Nt; ++it)
1919  {
1920 
1921  int t = data.Tn[it].In; // index of top seed after sorting
1922  float Tzt = data.Tn[it].Fl;
1923 
1928 
1930  float meanOneOverTanThetaSquare = Tzb * Tzt; // SSS uses arithmetic average, PPP geometric average
1931 
1933  float sigmaSquaredSpacePointErrors = Erb + data.Er[t]
1934  + 2 * Rb2z * data.R[t]
1935  + 2 * Rb2r * data.R[t] * meanOneOverTanThetaSquare; // mixed term with r-uncertainy on central SP
1936 
1938  float remainingSquaredDelta = (Tzb - Tzt) * (Tzb - Tzt) - sigmaSquaredSpacePointErrors;
1939 
1942  if (remainingSquaredDelta - sigmaSquaredScatteringMinPt > 0)
1943  {
1944  if (Tzb - Tzt < 0.)
1945  break;
1946  it0 = it + 1 ;
1947  continue;
1948  }
1949 
1972  float dU = data.U[t] - Ub;
1973  if (dU == 0.)
1974  continue;
1975  float A = (data.V[t] - Vb) / dU;
1976  float onePlusAsquare = 1. + A * A;
1977  float B = Vb - A * Ub;
1978  float BSquare = B * B;
1979 
1992  if (BSquare > ipt2K * onePlusAsquare)
1993  continue;
1994  if (remainingSquaredDelta * onePlusAsquare > BSquare * sigmaSquaredScatteringPtDependent)
1995  {
1996  if (Tzb - Tzt < 0.)
1997  break;
1998  it0 = it;
1999  continue;
2000  }
2001 
2018  float d0 = std::abs((A - B * R) * R);
2019 
2021  if (d0 <= d0max)
2022  {
2024  float dr = data.R[b];
2025  if (data.R[t] < data.R[b])
2026  dr = data.R[t];
2030  data.ITkSP[t]->setScorePenalty(std::abs((Tzb - Tzt) / (dr * sTzb2)));
2031  data.ITkSP[t]->setParam(d0);
2032 
2034  data.ITkCmSp.emplace_back(B / std::sqrt(onePlusAsquare), data.ITkSP[t]);
2036  if (data.ITkCmSp.size() == 500)
2037  break;
2038  }
2039 
2040  }
2041 
2043  if (data.ITkCmSp.size() > Nc)
2044  {
2045  newOneSeedWithCurvaturesComparisonPPP(data, data.ITkSP[b], (*iter_centralSP), Z - R * Tzb);
2046  }
2047  data.ITkCmSp.clear();
2048  }
2049  fillSeeds(data);
2051  nseed += data.fillOneSeeds;
2052 
2053  }
2054 }
2055 
2059 
2060 void SiSpacePointsSeedMaker::production3SpSSS(EventData &data,
2061  std::array<std::vector<SiSpacePointForSeed *>::iterator, arraySizeNeighbourBins> &iter_bottomCands,
2062  std::array<std::vector<SiSpacePointForSeed *>::iterator, arraySizeNeighbourBins> &iter_endBottomCands,
2063  std::array<std::vector<SiSpacePointForSeed *>::iterator, arraySizeNeighbourBins> &iter_topCands,
2064  std::array<std::vector<SiSpacePointForSeed *>::iterator, arraySizeNeighbourBins> &iter_endTopCands,
2065  const int numberBottomCells, const int numberTopCells, int &nseed) const
2066 {
2067 
2074  std::vector<SiSpacePointForSeed *>::iterator iter_centralSP = iter_bottomCands[0];
2077 
2084  for (; iter_centralSP != iter_endBottomCands[0]; ++iter_centralSP)
2086  {
2087  if((*iter_centralSP)->radius() > data.RTmin) break;
2088  }
2089 
2092  iter_topCands[0] = iter_centralSP;
2093  ++iter_topCands[0];
2094 
2096  const float ipt2K = data.ipt2K;
2097  const float ipt2C = data.ipt2C;
2098  const float COFK = data.COFK;
2099  const float maxd0cut = m_maxdImpactSSS;
2100  const float zmax = data.zmaxU;
2101  data.ITkCmSp.clear();
2102 
2105  size_t SPcapacity = data.ITkSP.size();
2106 
2108  for (; iter_centralSP != iter_endBottomCands[0]; ++iter_centralSP)
2109  {
2110 
2111  const float &R = (*iter_centralSP)->radius();
2112 
2113  if(R > data.RTmax) break;
2114 
2116  const float &X = (*iter_centralSP)->x();
2117  const float &Y = (*iter_centralSP)->y();
2118  const float &Z = (*iter_centralSP)->z();
2119 
2122  double absZ = std::abs(Z);
2124  if (absZ > m_zmaxSSS)
2125  continue;
2126 
2129  size_t Nt = 0;
2130 
2133  for (int cell = 0; cell < numberTopCells; ++cell)
2134  {
2135 
2136  for (iter_otherSP = iter_topCands[cell]; iter_otherSP != iter_endTopCands[cell]; ++iter_otherSP)
2137  {
2139  float Rt = (*iter_otherSP)->radius();
2140  float dR = Rt - R;
2141  if (dR >= m_drminSSS)
2142  break;
2143  }
2144  iter_topCands[cell] = iter_otherSP;
2145 
2147  for (iter_otherSP = iter_topCands[cell]; iter_otherSP != iter_endTopCands[cell]; ++iter_otherSP)
2148  {
2149 
2151  float Rt = (*iter_otherSP)->radius();
2152  float dR = Rt - R;
2154  if (dR > m_drmaxSSS)
2155  break;
2156 
2157  const float dz = (*iter_otherSP)->z() - Z;
2158  const float dZdR = dz / dR;
2159 
2162  const float z0 = Z - R * dZdR;
2163  if (std::abs(dz) > m_dzmaxSSS || std::abs(z0) > zmax)
2164  continue;
2165 
2167  if(m_isLRT){
2168  float Ri = 1./R;
2169  const float ax = X*Ri;
2170  const float ay = Y*Ri;
2171  float VR = m_maxdImpact*Ri*Ri ;
2172  float dx = (*iter_otherSP)->x() - X;
2173  float dy = (*iter_otherSP)->y() - Y;
2174  float x = dx * ax + dy * ay;
2175  float y = dy * ax - dx * ay;
2176 
2177  if(std::abs(R*y) > maxd0cut * x) {
2178  float r2 = 1. / (x * x + y * y);
2179  float u = x*r2 ;
2180  float v = y*r2 ;
2181  const float V0 = (y < 0.) ? VR: -VR;
2182  float A = (v-V0)/(u+Ri) ;
2183  float B = V0+A*Ri ;
2184  if((B*B) > (ipt2K*(1.+A*A))) continue;
2185  }
2186  }
2187 
2189  data.ITkSP[Nt] = (*iter_otherSP);
2190  data.ITkSP[Nt]->setDZDR(dZdR);
2194  if (++Nt == SPcapacity)
2195  {
2196  data.resizeSPCont();
2197  SPcapacity = data.ITkSP.size();
2198  }
2199  }
2200  }
2201 
2203  if (!Nt)
2204  continue;
2205 
2209  size_t Nb = Nt;
2210 
2213  for (int cell = 0; cell < numberBottomCells; ++cell)
2214  {
2215 
2216  for(iter_otherSP=iter_bottomCands[cell]; iter_otherSP!=iter_endBottomCands[cell]; ++iter_otherSP) {
2217  if((R-(*iter_otherSP)->radius()) <= m_drmaxSSS) break;
2218  }
2219  iter_bottomCands[cell]=iter_otherSP;
2220 
2222  for (; iter_otherSP != iter_endBottomCands[cell]; ++iter_otherSP)
2223  {
2224 
2226  const float &Rb = (*iter_otherSP)->radius();
2227  float dR = R - Rb;
2228 
2230  if (dR < m_drminSSS)
2231  break;
2232 
2233  const float dz = Z - (*iter_otherSP)->z();
2234  const float dZdR = dz / dR;
2235 
2238  const float z0 = Z - R * dZdR;
2239  if (std::abs(dz) > m_dzmaxSSS || std::abs(z0) > zmax)
2240  continue;
2241 
2243  if(m_isLRT){
2244  float Ri = 1./R;
2245  const float ax = X*Ri;
2246  const float ay = Y*Ri;
2247  float VR = m_maxdImpact*Ri*Ri ;
2248  float dx = (*iter_otherSP)->x() - X;
2249  float dy = (*iter_otherSP)->y() - Y;
2250  float x = dx * ax + dy * ay;
2251  float y = dy * ax - dx * ay;
2252 
2253  if(std::abs(R*y) > -maxd0cut * x) {
2254  float r2 = 1. / (x * x + y * y);
2255  float u = x*r2 ;
2256  float v = y*r2 ;
2257  const float V0 = (y < 0.) ? VR: -VR;
2258  float A = (v-V0)/(u+Ri) ;
2259  float B = V0+A*Ri ;
2260  if((B*B) > (ipt2K*(1.+A*A))) continue;
2261  }
2262  }
2263 
2265  data.ITkSP[Nb] = (*iter_otherSP);
2266  data.ITkSP[Nb]->setDZDR(dZdR);
2270  if (++Nb == SPcapacity)
2271  {
2272  data.resizeSPCont();
2273  SPcapacity = data.ITkSP.size();
2274  }
2275  }
2276  }
2277 
2279  if (!(Nb - Nt))
2280  continue;
2281 
2283  float covr0 = (*iter_centralSP)->covr();
2284  float covz0 = (*iter_centralSP)->covz();
2285 
2287  float ax = X / R;
2288  float ay = Y / R;
2289 
2292  for (size_t i = 0; i < Nb; ++i)
2293  {
2294 
2295  SiSpacePointForSeed *sp = data.ITkSP[i];
2296 
2299  float dx = sp->x() - X;
2300  float dy = sp->y() - Y;
2301  float dz = sp->z() - Z;
2302  float x = dx * ax + dy * ay;
2303  float y = dy * ax - dx * ay;
2304 
2306  float r2 = 1. / (x * x + y * y);
2308  float dr = std::sqrt(r2);
2311  float tz = dz * dr;
2312 
2315  if (i >= Nt)
2316  tz = -tz;
2317 
2319  data.X[i] = x;
2320  data.Y[i] = y;
2321  data.Tz[i] = tz;
2322  data.Zo[i] = Z - R * tz;
2323  data.R[i] = dr;
2324  data.U[i] = x * r2;
2325  data.V[i] = y * r2;
2326  data.Er[i] = ((covz0 + sp->covz()) + (tz * tz) * (covr0 + sp->covr())) * r2;
2327  }
2328 
2329  data.nOneSeeds = 0;
2330  data.nOneSeedsQ = 0;
2331  data.ITkMapOneSeeds.clear();
2332  data.ITkMapOneSeedsQ.clear();
2333 
2336  for (size_t b = Nt; b < Nb; ++b)
2337  {
2338 
2340  float Zob = data.Zo[b];
2341  float Tzb = data.Tz[b];
2342  float Rb2r = data.R[b] * covr0;
2343  float Rb2z = data.R[b] * covz0;
2344  float Erb = data.Er[b];
2345  float Vb = data.V[b];
2346  float Ub = data.U[b];
2347  float Tzb2 = (1. + Tzb * Tzb);
2348  float sTzb2 = std::sqrt(Tzb2);
2349  float Se = 1. / std::sqrt(Tzb2);
2350  float Ce = Se * Tzb;
2351  float Sx = Se * ax;
2352  float Sy = Se * ay;
2353 
2354  float sigmaSquaredScatteringPtDependent = Tzb2 * COFK;
2355  float sigmaSquaredScatteringMinPt = Tzb2 * ipt2C;
2356  float d0max = maxd0cut;
2359 
2361  for (size_t t = 0; t < Nt; ++t)
2362  {
2363 
2386  // Trigger point
2387  //
2388  float dU0 = data.U[t] - Ub;
2389  if (dU0 == 0.)
2390  continue;
2391  float A0 = (data.V[t] - Vb) / dU0;
2392 
2393  float Cn = Ce * std::sqrt(1. + A0 * A0);
2394 
2395  float dn[3] = {Sx - Sy * A0, Sx * A0 + Sy, Cn};
2396  float rn[3];
2397  if (!(*iter_centralSP)->coordinates(dn, rn))
2398  continue;
2399 
2400  // Bottom point
2401  //
2402  float B0 = 2. * (Vb - A0 * Ub);
2403  float Cb = 1. - B0 * data.Y[b];
2404  float Sb = A0 + B0 * data.X[b];
2405  float db[3] = {Sx * Cb - Sy * Sb, Sx * Sb + Sy * Cb, Cn};
2406  float rb[3];
2407  if (!data.ITkSP[b]->coordinates(db, rb))
2408  continue;
2409 
2410  // Top point
2411  //
2412  float Ct = 1. - B0 * data.Y[t];
2413  float St = A0 + B0 * data.X[t];
2414  float dt[3] = {Sx * Ct - Sy * St, Sx * St + Sy * Ct, Cn};
2415  float rt[3];
2416  if (!data.ITkSP[t]->coordinates(dt, rt))
2417  continue;
2418 
2419  float xb = rb[0] - rn[0];
2420  float yb = rb[1] - rn[1];
2421  float zb = rb[2] - rn[2];
2422  float xt = rt[0] - rn[0];
2423  float yt = rt[1] - rn[1];
2424  float zt = rt[2] - rn[2];
2425 
2426  float rb2 = 1. / (xb * xb + yb * yb);
2427  float rt2 = 1. / (xt * xt + yt * yt);
2428 
2429  float tb = -zb * std::sqrt(rb2);
2430  float tz = zt * std::sqrt(rt2);
2431 
2436 
2438  float meanOneOverTanTheta = (tb + tz) / 2.;
2439 
2441  float sigmaSquaredSpacePointErrors = Erb + data.Er[t]
2442  + 2 * Rb2z * data.R[t]
2443  + 2 * Rb2r * data.R[t] * meanOneOverTanTheta * meanOneOverTanTheta; // mixed term with r-uncertainy on central SP
2444 
2446  float remainingSquaredDelta = (tb - tz) * (tb - tz) - sigmaSquaredSpacePointErrors;
2447 
2450  if (remainingSquaredDelta - sigmaSquaredScatteringMinPt > 0)
2451  continue;
2452 
2453  float Rn = std::sqrt(rn[0] * rn[0] + rn[1] * rn[1]);
2454  float Ax = rn[0] / Rn;
2455  float Ay = rn[1] / Rn;
2456 
2457  float ub = (xb * Ax + yb * Ay) * rb2;
2458  float vb = (yb * Ax - xb * Ay) * rb2;
2459  float ut = (xt * Ax + yt * Ay) * rt2;
2460  float vt = (yt * Ax - xt * Ay) * rt2;
2461 
2462  float dU = ut - ub;
2463  if (dU == 0.)
2464  continue;
2465  float A = (vt - vb) / dU;
2466  float onePlusAsquare = 1. + A * A;
2467  float B = vb - A * ub;
2468  float BSquare = B * B;
2469 
2482  if (BSquare > ipt2K * onePlusAsquare || remainingSquaredDelta * onePlusAsquare > BSquare * sigmaSquaredScatteringPtDependent)
2483  continue;
2484 
2501  float d0 = std::abs((A - B * Rn) * Rn);
2502 
2504  if (d0 <= d0max)
2505  {
2507  float dr = std::sqrt(1 / rb2);
2508  if (data.R[t] < data.R[b])
2509  dr = std::sqrt(1 / rt2);
2513  data.ITkSP[t]->setScorePenalty(std::abs((tb - tz) / (dr * sTzb2)));
2514  data.ITkSP[t]->setParam(d0);
2515  float DR = std::sqrt( xt * xt + yt * yt + zt * zt ); // distance between top and central SP
2516  data.ITkSP[t]->setDR(DR);
2517 
2519  data.ITkCmSp.emplace_back(B / std::sqrt(onePlusAsquare), data.ITkSP[t]);
2521  if (data.ITkCmSp.size() == 500)
2522  break;
2523  }
2524 
2525  }
2526  if (!data.ITkCmSp.empty())
2528  {
2529  newOneSeedWithCurvaturesComparisonSSS(data, data.ITkSP[b], (*iter_centralSP), Zob);
2530  }
2531  }
2532  fillSeeds(data);
2534  nseed += data.fillOneSeeds;
2535 
2536  }
2537 }
2538 
2540 // Production 3 space points seeds in ROI
2542 
2543 void SiSpacePointsSeedMaker::production3SpTrigger(EventData &/*data*/,
2544  std::array<std::vector<SiSpacePointForSeed *>::iterator, arraySizeNeighbourBins> &/*rb*/,
2545  std::array<std::vector<SiSpacePointForSeed *>::iterator, arraySizeNeighbourBins> &/*rbe*/,
2546  std::array<std::vector<SiSpacePointForSeed *>::iterator, arraySizeNeighbourBins> &/*rt*/,
2547  std::array<std::vector<SiSpacePointForSeed *>::iterator, arraySizeNeighbourBins> &/*rte*/,
2548  const int /*numberBottomCells*/, const int /*numberTopCells*/, int &/*nseed*/) const
2549 {
2550  ATH_MSG_WARNING("ITk::SiSpacePointsSeedMaker::production3SpTrigger not implemented!");
2551 }
2552 
2554 // New 3 space points pro seeds
2556 
2557 void SiSpacePointsSeedMaker::newOneSeed(EventData &data,
2559  SiSpacePointForSeed *&p3, float z, float seedCandidateQuality) const
2560 {
2562  float worstQualityInMap = std::numeric_limits<float>::min();
2563  SiSpacePointsProSeed *worstSeedSoFar = nullptr;
2564  if (!data.ITkMapOneSeeds.empty())
2565  {
2566  std::multimap<float, SiSpacePointsProSeed *>::reverse_iterator l = data.ITkMapOneSeeds.rbegin();
2567  worstQualityInMap = (*l).first;
2568  worstSeedSoFar = (*l).second;
2569  }
2572  if (data.nOneSeeds < data.maxSeedsPerSP
2575  || (m_useSeedConfirmation && data.keepAllConfirmedSeeds && worstQualityInMap <= seedCandidateQuality && isConfirmedSeed(p1, p3, seedCandidateQuality) && data.nOneSeeds < data.seedPerSpCapacity)
2578  || (m_useSeedConfirmation && data.keepAllConfirmedSeeds && worstQualityInMap > seedCandidateQuality && isConfirmedSeed(worstSeedSoFar->spacepoint0(), worstSeedSoFar->spacepoint2(), worstQualityInMap) && data.nOneSeeds < data.seedPerSpCapacity))
2579  {
2580  data.ITkOneSeeds[data.nOneSeeds].set(p1, p2, p3, z);
2581  data.ITkMapOneSeeds.insert(std::make_pair(seedCandidateQuality, &data.ITkOneSeeds[data.nOneSeeds]));
2582  ++data.nOneSeeds;
2583  }
2584 
2586  else if (worstQualityInMap > seedCandidateQuality)
2587  {
2589  worstSeedSoFar->set(p1, p2, p3, z);
2592  i = data.ITkMapOneSeeds.insert(std::make_pair(seedCandidateQuality, worstSeedSoFar));
2594  for (++i; i != data.ITkMapOneSeeds.end(); ++i)
2595  {
2596  if ((*i).second == worstSeedSoFar)
2597  {
2598  data.ITkMapOneSeeds.erase(i);
2599  return;
2600  }
2601  }
2602  }
2603 }
2604 
2605 
2606 void SiSpacePointsSeedMaker::newOneSeedQ(EventData &data,
2608  SiSpacePointForSeed *&p3, float z, float seedCandidateQuality) const
2609 {
2611  float worstQualityInMap = std::numeric_limits<float>::min();
2612  SiSpacePointsProSeed *worstSeedSoFar = nullptr;
2613  if (!data.ITkMapOneSeedsQ.empty())
2614  {
2615  std::multimap<float, SiSpacePointsProSeed *>::reverse_iterator l = data.ITkMapOneSeedsQ.rbegin();
2616  worstQualityInMap = (*l).first;
2617  worstSeedSoFar = (*l).second;
2618  }
2621  if (data.nOneSeedsQ < data.maxSeedsPerSP
2624  || (m_useSeedConfirmation && data.keepAllConfirmedSeeds && worstQualityInMap <= seedCandidateQuality && isConfirmedSeed(p1, p3, seedCandidateQuality) && data.nOneSeedsQ < data.seedPerSpCapacity)
2627  || (m_useSeedConfirmation && data.keepAllConfirmedSeeds && worstQualityInMap > seedCandidateQuality && isConfirmedSeed(worstSeedSoFar->spacepoint0(), worstSeedSoFar->spacepoint2(), worstQualityInMap) && data.nOneSeedsQ < data.seedPerSpCapacity))
2628  {
2629  data.ITkOneSeedsQ[data.nOneSeedsQ].set(p1, p2, p3, z);
2630  data.ITkMapOneSeedsQ.insert(std::make_pair(seedCandidateQuality, &data.ITkOneSeedsQ[data.nOneSeedsQ]));
2631  ++data.nOneSeedsQ;
2632  }
2633 
2635  else if (worstQualityInMap > seedCandidateQuality)
2636  {
2638  worstSeedSoFar->set(p1, p2, p3, z);
2641  i = data.ITkMapOneSeedsQ.insert(std::make_pair(seedCandidateQuality, worstSeedSoFar));
2643  for (++i; i != data.ITkMapOneSeedsQ.end(); ++i)
2644  {
2645  if ((*i).second == worstSeedSoFar)
2646  {
2647  data.ITkMapOneSeedsQ.erase(i);
2648  return;
2649  }
2650  }
2651  }
2652 }
2653 
2654 
2655 
2657 // New 3 space points pro seeds production
2659 
2660 void SiSpacePointsSeedMaker::newOneSeedWithCurvaturesComparison(EventData &data, SiSpacePointForSeed *&SPb, SiSpacePointForSeed *&SP0, float Zob) const
2661 {
2662  const float dC = .00003;
2663 
2664  bool pixb = !SPb->spacepoint->clusterList().second;
2665 
2666  std::sort(data.ITkCmSp.begin(), data.ITkCmSp.end(), comCurvature());
2667  std::vector<std::pair<float, SiSpacePointForSeed *>>::iterator j, jn, i = data.ITkCmSp.begin(), ie = data.ITkCmSp.end();
2668  jn = i;
2669 
2670  for (; i != ie; ++i)
2671  {
2672  float u = (*i).second->param();
2673  bool pixt = !(*i).second->spacepoint->clusterList().second;
2674  if (pixt && std::abs(SPb->z() - (*i).second->z()) > m_dzmaxPPP)
2675  continue;
2676 
2677  const Trk::Surface *Sui = (*i).second->sur();
2678  float Ri = (*i).second->radius();
2679  float Ci1 = (*i).first - dC;
2680  float Ci2 = (*i).first + dC;
2681  float Rmi = 0.;
2682  float Rma = 0.;
2683  bool in = false;
2684 
2685  if (!pixb)
2686  u -= 400.;
2687  else if (pixt)
2688  u -= 200.;
2689 
2690  for (j = jn; j != ie; ++j)
2691  {
2692  if (j == i)
2693  continue;
2694  if ((*j).first < Ci1)
2695  {
2696  jn = j;
2697  ++jn;
2698  continue;
2699  }
2700  if ((*j).first > Ci2)
2701  break;
2702  if ((*j).second->sur() == Sui)
2703  continue;
2704 
2705  float Rj = (*j).second->radius();
2706  if (std::abs(Rj - Ri) < m_drmin)
2707  continue;
2708 
2709  if (in)
2710  {
2711  if (Rj > Rma)
2712  Rma = Rj;
2713  else if (Rj < Rmi)
2714  Rmi = Rj;
2715  else
2716  continue;
2717  if ((Rma - Rmi) > 20.)
2718  {
2719  u -= 200.;
2720  break;
2721  }
2722  }
2723  else
2724  {
2725  in = true;
2726  Rma = Rmi = Rj;
2727  u -= 200.;
2728  }
2729  }
2730  if (u > m_umax)
2731  continue;
2732 
2733  newOneSeed(data, SPb, SP0, (*i).second, Zob, u);
2734  }
2735  data.ITkCmSp.clear();
2736 }
2737 
2738 
2739 
2740 
2741 
2743 // Fill seeds
2745 
2746 void SiSpacePointsSeedMaker::fillSeeds(EventData &data)
2747 {
2748  data.fillOneSeeds = 0;
2749 
2750  std::multimap<float, SiSpacePointsProSeed *>::iterator it_seedCandidate = data.ITkMapOneSeeds.begin();
2751  std::multimap<float, SiSpacePointsProSeed *>::iterator it_endSeedCandidates = data.ITkMapOneSeeds.end();
2752 
2753  if (data.nOneSeedsQ){
2754  it_seedCandidate = data.ITkMapOneSeedsQ.begin();
2755  it_endSeedCandidates = data.ITkMapOneSeedsQ.end();
2756  }
2757 
2759  if (it_seedCandidate == it_endSeedCandidates)
2760  return;
2761 
2762  SiSpacePointsProSeed *theSeed{nullptr};
2763 
2765  for (; it_seedCandidate != it_endSeedCandidates; ++it_seedCandidate)
2766  {
2767 
2769  float quality = (*it_seedCandidate).first;
2770  theSeed = (*it_seedCandidate).second;
2771 
2773  if (!theSeed->setQuality(quality))
2774  continue;
2775 
2777  if (data.i_ITkSeedEnd != data.i_ITkSeeds.end())
2778  {
2779  theSeed = &(*data.i_ITkSeedEnd++);
2780  *theSeed = *(*it_seedCandidate).second;
2781  }
2782  else
2783  {
2785  data.i_ITkSeeds.emplace_back(*(*it_seedCandidate).second);
2786  theSeed = &(data.i_ITkSeeds.back());
2787  data.i_ITkSeedEnd = data.i_ITkSeeds.end();
2788  }
2789 
2790  ++data.fillOneSeeds;
2791  }
2792 }
2793 
2795 {
2797  if (not data.initialized)
2798  initializeEventData(data, ctx);
2799 
2800  if (data.nspoint == 3)
2801  {
2802  do
2803  {
2805  if (data.i_ITkSeed == data.i_ITkSeedEnd)
2806  {
2811  findNext(data);
2813  //cppcheck-suppress identicalInnerCondition
2814  if (data.i_ITkSeed == data.i_ITkSeedEnd)
2815  return nullptr;
2816  }
2817 
2819  } while (!(*data.i_ITkSeed++).set3(data.seedOutput, 1./(1000. * data.K)));
2821  return &data.seedOutput;
2822  }
2823  else
2824  {
2826  if (data.i_ITkSeed == data.i_ITkSeedEnd)
2827  {
2828  findNext(data);
2829  //cppcheck-suppress identicalInnerCondition
2830  if (data.i_ITkSeed == data.i_ITkSeedEnd)
2831  return nullptr;
2832  }
2833  (*data.i_ITkSeed++).set2(data.seedOutput);
2834  return &data.seedOutput;
2835  }
2836  return nullptr;
2837 }
2838 
2839 bool SiSpacePointsSeedMaker::isZCompatible(EventData &data,
2840  float Zv, float R, float T) const
2841 {
2842  if (Zv < data.zminU || Zv > data.zmaxU)
2843  return false;
2844  if (!data.isvertex)
2845  return true;
2846 
2847  float dZmin = std::numeric_limits<float>::max();
2848  for (const float &v : data.l_vertex)
2849  {
2850  float dZ = std::abs(v - Zv);
2851  if (dZ >= dZmin)
2852  break;
2853  dZmin = dZ;
2854  }
2855  return dZmin < (m_dzver + m_dzdrver * R) * sqrt(1. + T * T);
2856 }
2857 
2859 // New space point for seeds
2861 
2862 SiSpacePointForSeed *SiSpacePointsSeedMaker::newSpacePoint(EventData &data, const Trk::SpacePoint *const &sp) const
2863 {
2864  float r[15];
2865  return newSpacePoint(data, sp, r, true);
2866 }
2867 
2868 SiSpacePointForSeed *SiSpacePointsSeedMaker::newSpacePoint(EventData &data, const Trk::SpacePoint *const &sp, float *r, bool usePixStripInform) const
2869 {
2870 
2871  SiSpacePointForSeed *sps = nullptr;
2872 
2875  convertToBeamFrameWork(data, sp, r);
2876 
2878  if (data.checketa)
2879  {
2880  float z = (std::abs(r[2]) + m_zmax);
2881  float x = r[0] * data.dzdrmin;
2882  float y = r[1] * data.dzdrmin;
2883  if ((z * z) < (x * x + y * y))
2884  return sps;
2885  }
2886 
2887  if (m_fastTracking)
2888  {
2889  float R2 = r[0] * r[0] + r[1] * r[1];
2890  if (std::abs(r[2]) > m_dzMaxFast && R2 < m_R2MaxFast)
2891  return nullptr;
2892  if (std::abs(r[2]) - m_zmax > data.dzdrmax * std::sqrt(R2))
2893  return nullptr;
2894  }
2895 
2896  if (usePixStripInform)
2897  {
2898  if (!sp->clusterList().second)
2899  pixInform(sp, r);
2900  else
2901  stripInform(data, sp, r);
2902  }
2903 
2907  if (data.i_ITkSpacePointForSeed != data.l_ITkSpacePointForSeed.end())
2908  {
2910  sps = &(*data.i_ITkSpacePointForSeed++);
2913  sps->set(sp, r);
2914  }
2915  else
2916  {
2918  data.l_ITkSpacePointForSeed.emplace_back(sp, &(r[0]));
2920  sps = &(data.l_ITkSpacePointForSeed.back());
2922  data.i_ITkSpacePointForSeed = data.l_ITkSpacePointForSeed.end();
2923  }
2924 
2925  return sps;
2926 }
2927 
2929 // New 2 space points seeds
2931 
2932 void SiSpacePointsSeedMaker::newSeed(EventData &data,
2934 {
2935  SiSpacePointForSeed *p3 = nullptr;
2936 
2937  if (data.i_ITkSeedEnd != data.i_ITkSeeds.end())
2938  {
2939  SiSpacePointsProSeed *s = &(*data.i_ITkSeedEnd++);
2940  s->set(p1, p2, p3, z);
2941  }
2942  else
2943  {
2944  data.i_ITkSeeds.emplace_back(p1, p2, p3, z);
2945  data.i_ITkSeedEnd = data.i_ITkSeeds.end();
2946  }
2947 }
2948 
2949 void SiSpacePointsSeedMaker::initializeEventData(EventData &data, const EventContext& ctx) const
2950 {
2951  int seedArrayPerSPSize = (m_maxOneSizePPP > m_maxOneSizeSSS ? m_maxOneSizePPP : m_maxOneSizeSSS);
2952  if (m_alwaysKeepConfirmedStripSeeds || m_alwaysKeepConfirmedPixelSeeds)
2953  seedArrayPerSPSize = 50;
2954  data.initialize(EventData::ToolType::ITk,
2955  m_maxsizeSP,
2956  seedArrayPerSPSize,
2957  0,
2958  m_nBinsR,
2959  0,
2960  arraySizePhiZ,
2961  arraySizePhiZV,
2962  m_checketa);
2963 
2964  buildBeamFrameWork(data);
2965 
2967  double magField[3]{0, 0, 0};
2968  double globalPos[3] = {10., 10., 0.};
2969 
2970  MagField::AtlasFieldCache fieldCache;
2971  SG::ReadCondHandle<AtlasFieldCacheCondObj> readHandle{m_fieldCondObjInputKey, ctx};
2972  const AtlasFieldCacheCondObj *fieldCondObj{*readHandle};
2973  if (fieldCondObj == nullptr) {
2974  ATH_MSG_ERROR("ITk::SiSpacePointsSeedMaker: Failed to retrieve AtlasFieldCacheCondObj with key " << m_fieldCondObjInputKey.key());
2975  return;
2976  }
2977 
2978  fieldCondObj->getInitializedCache(fieldCache);
2979 
2980  if (fieldCache.solenoidOn()) {
2982  fieldCache.getFieldZR(globalPos, magField);
2993  data.K = 2. / (300. * magField[2]);
2994  } else {
2995  data.K = 2. / (300. * 5.);
2996  }
2997 
3002  data.ipt2K = m_ipt2 / (data.K * data.K);
3004  data.ipt2C = m_ipt2 * m_COF;
3005  data.COFK = m_COF * (data.K * data.K);
3007  data.bField[0] = magField[0];
3008  data.bField[1] = magField[1];
3009  data.bField[2] = magField[2];
3010 
3011 }
3012 
3014 // New 3 space points pro seeds production
3016 
3017 void SiSpacePointsSeedMaker::newOneSeedWithCurvaturesComparisonSSS(EventData &data,
3018  SiSpacePointForSeed *&SPb, SiSpacePointForSeed *&SP0, float Zob) const
3019 {
3020 
3021  if (m_useSeedConfirmation)
3022  {
3023  newOneSeedWithCurvaturesComparisonSeedConfirmation(data, SPb, SP0, Zob);
3024  }
3025 
3026  else
3027  {
3028 
3029  static const float curvatureInterval = .00003;
3030 
3032  if (data.ITkCmSp.size() > 2)
3033  std::sort(data.ITkCmSp.begin(), data.ITkCmSp.end(), comCurvature());
3034 
3035  std::vector<std::pair<float, SiSpacePointForSeed *>>::iterator it_otherSP;
3036  std::vector<std::pair<float, SiSpacePointForSeed *>>::iterator it_commonTopSP = data.ITkCmSp.begin(), ie = data.ITkCmSp.end();
3037  std::vector<std::pair<float, SiSpacePointForSeed *>>::iterator it_startInnerLoop = it_commonTopSP;
3038 
3039  float Lt[4];
3040 
3042  for (; it_commonTopSP != ie; ++it_commonTopSP)
3043  {
3044 
3045  SiSpacePointForSeed *SPt = (*it_commonTopSP).second;
3046  int NT = 1;
3047  Lt[0] = SPt->dR();
3048  float seedIP = SPt->param();
3049 
3051  float minCurvature = (*it_commonTopSP).first - curvatureInterval;
3052  float maxCurvature = (*it_commonTopSP).first + curvatureInterval;
3053 
3060  for (it_otherSP = it_startInnerLoop; it_otherSP != ie; ++it_otherSP)
3061  {
3063  if (it_otherSP == it_commonTopSP)
3064  continue;
3067  if ((*it_otherSP).first < minCurvature)
3068  {
3069  it_startInnerLoop = it_otherSP;
3070  ++it_startInnerLoop;
3071  continue;
3072  }
3074  if ((*it_otherSP).first > maxCurvature)
3075  break;
3076 
3077  float L = (*it_otherSP).second->dR();
3078 
3079  int k = 0;
3080  for (; k != NT; ++k)
3081  {
3082  if (std::abs(L - Lt[k]) < 20.)
3083  break;
3084  }
3085  if (k == NT)
3086  {
3087  Lt[NT] = L;
3088  if (++NT == 4)
3089  break;
3090  }
3091  }
3092 
3093  // ITk seed quality used so far
3094  float Q = seedIP - float(NT) * 100.;
3095  if (NT > 2)
3096  Q -= 100000.;
3098  newOneSeed(data, SPb, SP0, SPt, Zob, Q);
3099  }
3100  data.ITkCmSp.clear();
3101  }
3102 }
3103 
3104 void SiSpacePointsSeedMaker::newOneSeedWithCurvaturesComparisonPPP(EventData &data,
3105  SiSpacePointForSeed *&SPb, SiSpacePointForSeed *&SP0, float Zob) const
3106 {
3107 
3108  if (m_useSeedConfirmation)
3109  {
3110  newOneSeedWithCurvaturesComparisonSeedConfirmation(data, SPb, SP0, Zob);
3111  }
3112 
3113  else
3114  {
3115 
3116  static const float curvatureInterval = .00003;
3117 
3119  if (data.ITkCmSp.size() > 2)
3120  std::sort(data.ITkCmSp.begin(), data.ITkCmSp.end(), comCurvature());
3121 
3122  std::vector<std::pair<float, SiSpacePointForSeed *>>::iterator it_otherSP;
3123  std::vector<std::pair<float, SiSpacePointForSeed *>>::iterator it_commonTopSP = data.ITkCmSp.begin(), ie = data.ITkCmSp.end();
3124  std::vector<std::pair<float, SiSpacePointForSeed *>>::iterator it_startInnerLoop = it_commonTopSP;
3125 
3126  float Lt[4];
3127 
3128  float Qmin = 1.e20;
3129  float Rb = 2. * SPb->radius();
3130  int NTc(2);
3131  if (Rb > 280.) {
3132  NTc = 1;
3133  }
3134 
3135  SiSpacePointForSeed *SPmin = nullptr;
3136  bool Qm = Rb < 120. || std::abs(Zob) > 150.;
3137 
3139  for (; it_commonTopSP != ie; ++it_commonTopSP)
3140  {
3141 
3142  SiSpacePointForSeed *SPt = (*it_commonTopSP).second;
3143  int NT = 1;
3144  Lt[0] = SPt->dR();
3145  float seedIP = SPt->param();
3146 
3148  float minCurvature = (*it_commonTopSP).first - curvatureInterval;
3149  float maxCurvature = (*it_commonTopSP).first + curvatureInterval;
3150 
3157  for (it_otherSP = it_startInnerLoop; it_otherSP != ie; ++it_otherSP)
3158  {
3160  if (it_otherSP == it_commonTopSP)
3161  continue;
3164  if ((*it_otherSP).first < minCurvature)
3165  {
3166  it_startInnerLoop = it_otherSP;
3167  ++it_startInnerLoop;
3168  continue;
3169  }
3171  if ((*it_otherSP).first > maxCurvature)
3172  break;
3173 
3174  float L = (*it_otherSP).second->dR();
3175 
3176  int k = 0;
3177  for (; k != NT; ++k)
3178  {
3179  if (std::abs(L - Lt[k]) < 20.)
3180  break;
3181  }
3182  if (k == NT)
3183  {
3184  Lt[NT] = L;
3185  if (++NT == 4)
3186  break;
3187  }
3188  }
3189 
3190  int dN = NT - NTc;
3191  if (dN < 0 || (data.nOneSeedsQ && !dN))
3192  continue;
3193  if (Qm && !dN && seedIP > 1.)
3194  continue;
3195 
3196  // ITk seed quality used so far
3197  float Q = 100. * seedIP + (std::abs(Zob) - float(NT) * 100.);
3198  if (Q > SPb->quality() && Q > SP0->quality() && Q > SPt->quality())
3199  continue;
3200 
3201  if (dN)
3202  newOneSeedQ(data, SPb, SP0, SPt, Zob, Q);
3203  else if (Q < Qmin)
3204  {
3205  Qmin = Q;
3206  SPmin = SPt;
3207  }
3208  }
3209  if (SPmin && !data.nOneSeedsQ)
3210  newOneSeed(data, SPb, SP0, SPmin, Zob, Qmin);
3211  data.ITkCmSp.clear();
3212  }
3213 }
3214 
3215 void SiSpacePointsSeedMaker::newOneSeedWithCurvaturesComparisonSeedConfirmation(EventData &data,
3216  SiSpacePointForSeed *&SPb, SiSpacePointForSeed *&SP0, float Zob) const
3217 {
3218  static const float curvatureInterval = .00003;
3219  bool bottomSPisPixel = !SPb->spacepoint->clusterList().second;
3220  float bottomSPQuality = SPb->quality();
3221  float centralSPQuality = SP0->quality();
3222 
3224  if (data.ITkCmSp.size() > 2)
3225  std::sort(data.ITkCmSp.begin(), data.ITkCmSp.end(), comCurvature());
3226 
3227  float bottomR = SPb->radius();
3228  float bottomZ = SPb->z();
3229 
3230  std::vector<std::pair<float, SiSpacePointForSeed *>>::iterator it_otherSP;
3231  std::vector<std::pair<float, SiSpacePointForSeed *>>::iterator it_commonTopSP = data.ITkCmSp.begin(), ie = data.ITkCmSp.end();
3232  std::vector<std::pair<float, SiSpacePointForSeed *>>::iterator it_startInnerLoop = it_commonTopSP;
3233 
3235  for (; it_commonTopSP != ie; ++it_commonTopSP)
3236  {
3237 
3238  SiSpacePointForSeed *SPt = (*it_commonTopSP).second;
3240  float seedIP = SPt->param();
3241  float seedQuality = seedIP + SPt->scorePenalty();
3242  float originalSeedQuality = seedQuality;
3243 
3244  if (m_maxdImpact > 50)
3245  { //This only applies to LRT
3246 
3247  float topR = SPt->radius();
3248  float topZ = SPt->z();
3249 
3250  float Zot = std::abs(topR - bottomR) > 10e-9 ? bottomZ - (bottomR - originalSeedQuality) * ((topZ - bottomZ) / (topR - bottomR)) : bottomZ;
3251 
3252  float theta1 = std::abs(topR - bottomR) > 10e-9 ? std::atan2(topR - bottomR, topZ - bottomZ) : 0.;
3253  float eta1 = theta1 > 0 ? -std::log(std::tan(.5 * theta1)) : 0.;
3254 
3255  float theta0 = seedIP > 0 ? std::atan2(seedIP, Zot) : 0;
3256  float eta0 = theta0 > 0 ? -std::log(std::tan(.5 * theta0)) : 0.;
3257 
3258  float deltaEta = std::abs(eta1 - eta0); //For LLP daughters, the direction of the track is correlated with the direction of the LLP (which is correlated with the direction of the point of closest approach
3259  //calculate weighted average of d0 and deltaEta, normalized by their maximum values
3260  float f = std::min(0.5, originalSeedQuality / 200.); //0.5 and 200 are parameters chosen from a grid scan to optimize efficiency
3261  seedQuality *= (1 - f) / 300.;
3262  seedQuality += f * deltaEta / 2.5;
3263  }
3264 
3265  bool topSPisPixel = !SPt->spacepoint->clusterList().second;
3266 
3268  const Trk::Surface *surfaceTopSP = SPt->sur();
3269  float radiusTopSP = SPt->radius();
3271  float minCurvature = (*it_commonTopSP).first - curvatureInterval;
3272  float maxCurvature = (*it_commonTopSP).first + curvatureInterval;
3273 
3281  if (!bottomSPisPixel)
3283  seedQuality += m_seedScoreBonusSSS;
3285  else if (topSPisPixel)
3286  seedQuality += m_seedScoreBonusPPP;
3287 
3294  for (it_otherSP = it_startInnerLoop; it_otherSP != ie; ++it_otherSP)
3295  {
3297  if (it_otherSP == it_commonTopSP)
3298  continue;
3301  if ((*it_otherSP).first < minCurvature)
3302  {
3303  it_startInnerLoop = it_otherSP;
3304  ++it_startInnerLoop;
3305  continue;
3306  }
3308  if ((*it_otherSP).first > maxCurvature)
3309  break;
3311  if ((*it_otherSP).second->sur() == surfaceTopSP)
3312  continue;
3314  float radiusOtherSP = (*it_otherSP).second->radius();
3315  if (std::abs(radiusOtherSP - radiusTopSP) < m_drminSeedConf)
3316  continue;
3317  // if we have a confirmation seed, we improve the score of the seed.
3318  seedQuality += m_seedScoreBonusConfirmationSeed;
3319  // apply confirmation bonus only once
3320  break;
3321  }
3322 
3324  if (seedQuality > data.maxScore)
3325  continue;
3326 
3329  if (bottomSPisPixel != topSPisPixel)
3330  {
3331  if (seedQuality > 0. ||
3332  (seedQuality > bottomSPQuality && seedQuality > centralSPQuality && seedQuality > SPt->quality()))
3333  continue;
3334  }
3337  if (!isConfirmedSeed(SPb, SPt, seedQuality))
3338  {
3340  double maxdImpact = m_maxdImpact - (m_dImpactCutSlopeUnconfirmedPPP * SPt->scorePenalty());
3342  if (!bottomSPisPixel)
3343  maxdImpact = m_maxdImpactSSS - (m_dImpactCutSlopeUnconfirmedSSS * SPt->scorePenalty());
3344  if (seedIP > maxdImpact)
3345  continue;
3346  }
3348  newOneSeed(data, SPb, SP0, SPt, Zob, seedQuality);
3349  }
3350  data.ITkCmSp.clear();
3351 }
3352 
3353 bool SiSpacePointsSeedMaker::isConfirmedSeed(const SiSpacePointForSeed *bottomSP,
3354  const SiSpacePointForSeed *topSP, float quality) const
3355 {
3356 
3358  if (bottomSP->spacepoint->clusterList().second)
3359  {
3360  return (quality < m_seedScoreThresholdSSSConfirmationSeed);
3361  }
3363  else if (!topSP->spacepoint->clusterList().second)
3364  {
3365  return (quality < m_seedScoreThresholdPPPConfirmationSeed);
3366  }
3368  else
3369  return (quality < 0.);
3370 }
3371 
3372 void SiSpacePointsSeedMaker::writeNtuple(const InDet::SiSpacePointsSeed* seed, const Trk::Track* track, int seedType, long eventNumber) const
3373 {
3374  if(m_writeNtuple) {
3375  std::lock_guard<std::mutex> lock(m_mutex);
3376 
3377  if(track != nullptr) {
3378  m_trackPt = (track->trackParameters()->front()->pT())/1000.f;
3379  m_trackEta = std::abs(track->trackParameters()->front()->eta());
3380  }
3381  else {
3382  m_trackPt = -1.;
3383  m_trackEta = -1.;
3384  }
3385  m_d0 = seed->d0();
3386  m_z0 = seed->zVertex();
3387  m_eta = seed->eta();
3388  m_x1 = seed->x1();
3389  m_x2 = seed->x2();
3390  m_x3 = seed->x3();
3391  m_y1 = seed->y1();
3392  m_y2 = seed->y2();
3393  m_y3 = seed->y3();
3394  m_z1 = seed->z1();
3395  m_z2 = seed->z2();
3396  m_z3 = seed->z3();
3397  m_r1 = seed->r1();
3398  m_r2 = seed->r2();
3399  m_r3 = seed->r3();
3400  m_type = seedType;
3401  m_dzdr_b = seed->dzdr_b();
3402  m_dzdr_t = seed->dzdr_t();
3403  m_pt = seed->pt();
3404  m_givesTrack = !(track == nullptr);
3405  m_eventNumber = eventNumber;
3406 
3407  // Ok: protected by mutex.
3408  TTree* outputTree ATLAS_THREAD_SAFE = m_outputTree;
3409  outputTree->Fill();
3410 
3411  }
3412 
3413 }
3414 
3415 bool SiSpacePointsSeedMaker::getWriteNtupleBoolProperty() const
3416 {
3417  return m_writeNtuple;
3418 }
3419 
3420 } // namespace ITk
Trk::SpacePoint::clusterList
const std::pair< const PrepRawData *, const PrepRawData * > & clusterList() const
return the pair of cluster pointers by reference
Definition: Tracking/TrkEvent/TrkSpacePoint/TrkSpacePoint/SpacePoint.h:127
xAOD::iterator
JetConstituentVector::iterator iterator
Definition: JetConstituentVector.cxx:68
ITk::SiSpacePointsSeedMaker::dumpEvent
static MsgStream & dumpEvent(EventData &data, MsgStream &out)
Definition: ITkSiSpacePointsSeedMaker.cxx:743
ITk::SiSpacePointsSeedMaker::m_nBinsR
int m_nBinsR
number of bins in the radial coordinate
Definition: ITkSiSpacePointsSeedMaker.h:291
AllowedVariables::e
e
Definition: AsgElectronSelectorTool.cxx:37
replace
std::string replace(std::string s, const std::string &s2, const std::string &s3)
Definition: hcg.cxx:307
Trk::SpacePoint
Definition: Tracking/TrkEvent/TrkSpacePoint/TrkSpacePoint/SpacePoint.h:35
beamspotman.r
def r
Definition: beamspotman.py:676
Trk::Vertex
Definition: Tracking/TrkEvent/VxVertex/VxVertex/Vertex.h:26
ITk::SiSpacePointsSeedMaker::m_drminPPP
FloatProperty m_drminPPP
Definition: ITkSiSpacePointsSeedMaker.h:213
data
char data[hepevt_bytes_allocation_ATLAS]
Definition: HepEvt.cxx:11
ITk::SiSpacePointsSeedMaker::buildConnectionMaps
static void buildConnectionMaps(std::array< int, arraySizePhiZ > &nNeighbourCellsBottom, std::array< int, arraySizePhiZ > &nNeighbourCellsTop, std::array< std::array< int, arraySizeNeighbourBins >, arraySizePhiZ > &neighbourCellsBottom, std::array< std::array< int, arraySizeNeighbourBins >, arraySizePhiZ > &neighbourCellsTop, int maxPhiBin, bool isSSS)
Definition: ITkSiSpacePointsSeedMaker.cxx:947
ITk::SiSpacePointsSeedMaker::m_r_rmin
FloatProperty m_r_rmin
Definition: ITkSiSpacePointsSeedMaker.h:193
ITk::SiSpacePointForSeed::param
const float & param() const
Definition: ITkSiSpacePointForSeed.h:69
python.tests.PyTestsLib.finalize
def finalize(self)
_info( "content of StoreGate..." ) self.sg.dump()
Definition: PyTestsLib.py:50
InDet::SiSpacePointsSeedMakerEventData::ToolType::ITk
@ ITk
ITk::SiSpacePointsSeedMaker.
python.SystemOfUnits.s
int s
Definition: SystemOfUnits.py:131
ITk::SiSpacePointsSeedMaker::m_nNeighbourCellsBottomSSS
std::array< int, arraySizePhiZ > m_nNeighbourCellsBottomSSS
Definition: ITkSiSpacePointsSeedMaker.h:318
ReadCellNoiseFromCool.cell
cell
Definition: ReadCellNoiseFromCool.py:53
yt
#define yt
ITk::SiSpacePointsSeedMaker::m_neighbourCellsBottomSSS
std::array< std::array< int, arraySizeNeighbourBins >, arraySizePhiZ > m_neighbourCellsBottomSSS
Definition: ITkSiSpacePointsSeedMaker.h:320
ITk::SiSpacePointsSeedMaker::arraySizeZV
@ arraySizeZV
array size in z for vertexing
Definition: ITkSiSpacePointsSeedMaker.h:156
TrackParameters.h
ITk::SiSpacePointsSeedMaker::find2Sp
virtual void find2Sp(EventData &data, const std::list< Trk::Vertex > &lv) const override
with two space points with or without vertex constraint
Definition: ITkSiSpacePointsSeedMaker.cxx:454
ITk::SiSpacePointsSeedMaker::m_etamax
FloatProperty m_etamax
Definition: ITkSiSpacePointsSeedMaker.h:184
fitman.ax
ax
Definition: fitman.py:522
SG::ReadCondHandle
Definition: ReadCondHandle.h:44
InDet::SiSpacePointsSeedMakerEventData
Definition: SiSpacePointsSeedMakerEventData.h:49
SG::ReadHandle::cptr
const_pointer_type cptr()
Dereference the pointer.
Trk::Track
The ATLAS Track class.
Definition: Tracking/TrkEvent/TrkTrack/TrkTrack/Track.h:73
ITk::comCurvature
Definition: ITkSiSpacePointsSeedMaker.h:503
AtlasFieldCacheCondObj
Definition: AtlasFieldCacheCondObj.h:19
ITk::SiSpacePointsSeedMaker::m_maxScore
FloatProperty m_maxScore
Definition: ITkSiSpacePointsSeedMaker.h:201
Trk::SpacePoint::globalPosition
virtual const Amg::Vector3D & globalPosition() const override final
Interface method to get the global Position.
Definition: Tracking/TrkEvent/TrkSpacePoint/TrkSpacePoint/SpacePoint.h:146
ITk::SiSpacePointsSeedMaker::arraySizeZ
@ arraySizeZ
capacity of the 1D z arrays
Definition: ITkSiSpacePointsSeedMaker.h:152
WriteCellNoiseToCool.rb
rb
Definition: WriteCellNoiseToCool.py:229
egammaEnergyPositionAllSamples::e1
double e1(const xAOD::CaloCluster &cluster)
return the uncorrected cluster energy in 1st sampling
ITk::SiSpacePointsProSeed::set
void set(SiSpacePointForSeed *&, SiSpacePointForSeed *&, SiSpacePointForSeed *&, float)
Definition: ITkSiSpacePointsProSeed.cxx:59
MagField::AtlasFieldCache::getFieldZR
void getFieldZR(const double *ATH_RESTRICT xyz, double *ATH_RESTRICT bxyz, double *ATH_RESTRICT deriv=nullptr)
get B field valaue on the z-r plane at given position works only inside the solenoid.
Definition: AtlasFieldCache.cxx:86
ITk::SiSpacePointsComparison_R
Definition: ITkSiSpacePointsSeedMaker.h:54
Trk::PRDtoTrackMap
Definition: PRDtoTrackMap.h:17
Amg::Vector2D
Eigen::Matrix< double, 2, 1 > Vector2D
Definition: GeoPrimitives.h:48
SG::ReadHandle< Trk::PRDtoTrackMap >
Monitored::Z
@ Z
Definition: HistogramFillerUtils.h:24
max
constexpr double max()
Definition: ap_fixedTest.cxx:33
IRoiDescriptor::etaMinus
virtual double etaMinus() const =0
min
constexpr double min()
Definition: ap_fixedTest.cxx:26
ITk::SiSpacePointsSeedMaker::m_seedScoreBonusSSS
FloatProperty m_seedScoreBonusSSS
Definition: ITkSiSpacePointsSeedMaker.h:208
initialize
void initialize()
Definition: run_EoverP.cxx:894
ITk::SiSpacePointsSeedMaker::m_r_rmax
FloatProperty m_r_rmax
Definition: ITkSiSpacePointsSeedMaker.h:228
ITk::SiSpacePointsSeedMaker::m_maxsizeSP
IntegerProperty m_maxsizeSP
Definition: ITkSiSpacePointsSeedMaker.h:182
CaloCondBlobAlgs_fillNoiseFromASCII.db
db
Definition: CaloCondBlobAlgs_fillNoiseFromASCII.py:43
extractSporadic.c1
c1
Definition: extractSporadic.py:134
ITk::SiSpacePointForSeed::y
const float & y() const
Definition: ITkSiSpacePointForSeed.h:63
ITk::SiSpacePointsSeedMaker::m_alwaysKeepConfirmedStripSeeds
BooleanProperty m_alwaysKeepConfirmedStripSeeds
Definition: ITkSiSpacePointsSeedMaker.h:205
TRTCalib_cfilter.p1
p1
Definition: TRTCalib_cfilter.py:130
ITk::SiSpacePointsSeedMaker::SiSpacePointsSeedMaker
SiSpacePointsSeedMaker()=delete
ITk::SiSpacePointsSeedMaker::m_spacepointsPixel
SG::ReadHandleKey< SpacePointContainer > m_spacepointsPixel
Definition: ITkSiSpacePointsSeedMaker.h:168
skel.it
it
Definition: skel.GENtoEVGEN.py:407
ITk::SiSpacePointsSeedMaker::m_prdToTrackMap
SG::ReadHandleKey< Trk::PRDtoTrackMap > m_prdToTrackMap
Definition: ITkSiSpacePointsSeedMaker.h:170
python.AthDsoLogger.out
out
Definition: AthDsoLogger.py:71
ITk::SiSpacePointForSeed::z
const float & z() const
Definition: ITkSiSpacePointForSeed.h:64
ITk::SiSpacePointsSeedMaker::m_nNeighbourCellsTopPPP
std::array< int, arraySizePhiZ > m_nNeighbourCellsTopPPP
number of neighbouring phi-z bins to consider when looking for "top SP" candidates for each phi-z bin
Definition: ITkSiSpacePointsSeedMaker.h:314
M_PI
#define M_PI
Definition: ActiveFraction.h:11
InDetDD::SolidStateDetectorElementBase::surface
Trk::Surface & surface()
Element Surface.
PlotCalibFromCool.ib
ib
Definition: PlotCalibFromCool.py:419
ITk::SiSpacePointsSeedMaker::newRegion
virtual void newRegion(const EventContext &ctx, EventData &data, const std::vector< IdentifierHash > &vPixel, const std::vector< IdentifierHash > &vStrip) const override
Definition: ITkSiSpacePointsSeedMaker.cxx:313
dq_defect_virtual_defect_validation.d1
d1
Definition: dq_defect_virtual_defect_validation.py:79
ITk::SiSpacePointsSeedMaker::find3Sp
virtual void find3Sp(const EventContext &ctx, EventData &data, const std::list< Trk::Vertex > &lv) const override
with three space points with or without vertex constraint
Definition: ITkSiSpacePointsSeedMaker.cxx:464
xAOD::eta1
setEt setPhi setE277 setWeta2 eta1
Definition: TrigEMCluster_v1.cxx:41
ITk::SiSpacePointsSeedMaker::m_dzdrmax0
float m_dzdrmax0
Definition: ITkSiSpacePointsSeedMaker.h:243
UploadAMITag.l
list l
Definition: UploadAMITag.larcaf.py:158
ITk::SiSpacePointForSeed::scorePenalty
const float & scorePenalty() const
Definition: ITkSiSpacePointForSeed.h:74
ITk::SiSpacePointsSeedMaker::m_seedScoreBonusPPP
FloatProperty m_seedScoreBonusPPP
Definition: ITkSiSpacePointsSeedMaker.h:207
Phi
@ Phi
Definition: RPCdef.h:8
ReadCellNoiseFromCoolCompare.s4
s4
Definition: ReadCellNoiseFromCoolCompare.py:381
python.TurnDataReader.dr
dr
Definition: TurnDataReader.py:112
ITk::SiSpacePointsSeedMaker::m_drmaxPPP
FloatProperty m_drmaxPPP
Definition: ITkSiSpacePointsSeedMaker.h:214
ITk::SiSpacePointsSeedMaker::m_inverseBinSizePhiPPP
float m_inverseBinSizePhiPPP
cache the inverse bin size in phi which we use - needed to evaluate phi bin locations
Definition: ITkSiSpacePointsSeedMaker.h:293
ITk::SiSpacePointsSeedMaker::m_rmaxSSS
FloatProperty m_rmaxSSS
Definition: ITkSiSpacePointsSeedMaker.h:211
read_hist_ntuple.t
t
Definition: read_hist_ntuple.py:5
drawFromPickle.cos
cos
Definition: drawFromPickle.py:36
ITk::SiSpacePointsSeedMaker::m_dzdrver
FloatProperty m_dzdrver
Definition: ITkSiSpacePointsSeedMaker.h:196
IRoiDescriptor::etaPlus
virtual double etaPlus() const =0
SG::VarHandleKey::key
const std::string & key() const
Return the StoreGate ID for the referenced object.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleKey.cxx:141
drawFromPickle.exp
exp
Definition: drawFromPickle.py:36
ITk::SiSpacePointsSeedMaker::m_fieldCondObjInputKey
SG::ReadCondHandleKey< AtlasFieldCacheCondObj > m_fieldCondObjInputKey
Definition: ITkSiSpacePointsSeedMaker.h:172
x
#define x
ITk::SiSpacePointsProSeed::spacepoint2
SiSpacePointForSeed * spacepoint2()
Definition: ITkSiSpacePointsProSeed.h:47
ITk::SiSpacePointForSeed::sur
const Trk::Surface * sur() const
distance between top and central SP
Definition: ITkSiSpacePointForSeed.h:76
IDTrig_MC23a_preInclude.pTmin
pTmin
Definition: IDTrig_MC23a_preInclude.py:8
Trk::u
@ u
Enums for curvilinear frames.
Definition: ParamDefs.h:77
ITk::SiSpacePointsSeedMaker::m_strip
BooleanProperty m_strip
Definition: ITkSiSpacePointsSeedMaker.h:179
ITk::SiSpacePointsSeedMaker::azimuthalStep
static float azimuthalStep(const float pTmin, const float maxd0, const float Rmin, const float Rmax)
Determine the expected azimuthal trajectory displacement in phi in presence of the magnetic field for...
Definition: ITkSiSpacePointsSeedMaker.cxx:1131
ITkSiSpacePointsSeedMaker.h
drawFromPickle.atan
atan
Definition: drawFromPickle.py:36
AthenaPoolTestRead.sc
sc
Definition: AthenaPoolTestRead.py:27
ITk::SiSpacePointsSeedMaker::stripInform
static void stripInform(EventData &data, const Trk::SpacePoint *sp, float *r)
Definition: ITkSiSpacePointsSeedMaker.cxx:1363
Monitored::X
@ X
Definition: HistogramFillerUtils.h:24
PlotCalibFromCool.ie
ie
Definition: PlotCalibFromCool.py:420
ITk::SiSpacePointForSeed::dR
const float & dR() const
penalty term in the seed score
Definition: ITkSiSpacePointForSeed.h:75
Track.h
dqt_zlumi_alleff_HIST.A
A
Definition: dqt_zlumi_alleff_HIST.py:110
InDetDD::SiLocalPosition
Definition: SiLocalPosition.h:31
ITk::SiSpacePointForSeed::quality
const float & quality() const
Definition: ITkSiSpacePointForSeed.h:70
m_type
TokenType m_type
the type
Definition: TProperty.cxx:44
ITk::SiSpacePointsSeedMaker::m_drmaxSSS
FloatProperty m_drmaxSSS
Definition: ITkSiSpacePointsSeedMaker.h:217
hotSpotInTAG.c0
c0
Definition: hotSpotInTAG.py:192
Execution.tb
tb
Definition: Execution.py:15
ITk::SiSpacePointsSeedMaker::findNext
void findNext(EventData &data) const
Definition: ITkSiSpacePointsSeedMaker.cxx:769
ITk::SiSpacePointsSeedMaker::m_maxOneSizePPP
IntegerProperty m_maxOneSizePPP
Definition: ITkSiSpacePointsSeedMaker.h:203
TRTCalib_cfilter.p2
p2
Definition: TRTCalib_cfilter.py:131
ITk::SiSpacePointsSeedMaker::pixInform
static void pixInform(const Trk::SpacePoint *sp, float *r)
Definition: ITkSiSpacePointsSeedMaker.cxx:1349
ITk::SiSpacePointsSeedMaker::m_zmin
FloatProperty m_zmin
Definition: ITkSiSpacePointsSeedMaker.h:191
ITk::SiSpacePointsSeedMaker::m_etamin
FloatProperty m_etamin
Definition: ITkSiSpacePointsSeedMaker.h:227
A
python.utils.AtlRunQueryDQUtils.p
p
Definition: AtlRunQueryDQUtils.py:210
ITk::SiSpacePointsSeedMaker::isUsed
bool isUsed(const Trk::SpacePoint *, const Trk::PRDtoTrackMap &prd_to_track_map) const
Definition: ITkSiSpacePointsSeedMaker.h:519
xt
#define xt
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
ITk::SiSpacePointForSeed::spacepoint
const Trk::SpacePoint * spacepoint
Definition: ITkSiSpacePointForSeed.h:61
ITk::SiSpacePointsSeedMaker::m_maxOneSize
IntegerProperty m_maxOneSize
Definition: ITkSiSpacePointsSeedMaker.h:183
InDet::SiSpacePointsSeed
Definition: SiSpacePointsSeed.h:30
P4Helpers::deltaEta
double deltaEta(const I4Momentum &p1, const I4Momentum &p2)
Computes efficiently .
Definition: P4Helpers.h:66
fillPileUpNoiseLumi.next
next
Definition: fillPileUpNoiseLumi.py:52
lumiFormat.i
int i
Definition: lumiFormat.py:85
z
#define z
ITk::SiSpacePointsSeedMaker::m_dzver
FloatProperty m_dzver
Definition: ITkSiSpacePointsSeedMaker.h:195
beamspotman.n
n
Definition: beamspotman.py:731
ITk::SiSpacePointsSeedMaker::m_pixel
BooleanProperty m_pixel
Definition: ITkSiSpacePointsSeedMaker.h:178
endmsg
#define endmsg
Definition: AnalysisConfig_Ntuple.cxx:63
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
IRoiDescriptor
Describes the API of the Region of Ineterest geometry.
Definition: IRoiDescriptor.h:23
CaloNoise_fillDB.dt
dt
Definition: CaloNoise_fillDB.py:58
ITk::SiSpacePointsSeedMaker::newSpacePoint
SiSpacePointForSeed * newSpacePoint(EventData &data, const Trk::SpacePoint *const &sp) const
Create a SiSpacePointForSeed from the space point.
Definition: ITkSiSpacePointsSeedMaker.cxx:2862
ITk::SiSpacePointsSeedMaker::m_maxdImpactSSS
FloatProperty m_maxdImpactSSS
Definition: ITkSiSpacePointsSeedMaker.h:198
ITk::SiSpacePointsSeedMaker::m_rminSSS
FloatProperty m_rminSSS
Definition: ITkSiSpacePointsSeedMaker.h:210
ITk::SiSpacePointsSeedMaker::m_maxPhiBinPPP
int m_maxPhiBinPPP
number of bins in phi
Definition: ITkSiSpacePointsSeedMaker.h:292
zt
#define zt
python.getCurrentFolderTag.dn
dn
Definition: getCurrentFolderTag.py:64
Amg::Transform3D
Eigen::Affine3d Transform3D
Definition: GeoPrimitives.h:46
TRT::Track::d0
@ d0
Definition: InnerDetector/InDetCalibEvent/TRT_CalibData/TRT_CalibData/TrackInfo.h:62
ITk::SiSpacePointsSeedMaker::findVSp
virtual void findVSp(const EventContext &ctx, EventData &data, const std::list< Trk::Vertex > &lv) const override
with variable number space points with or without vertex constraint Variable means (2,...
Definition: ITkSiSpacePointsSeedMaker.cxx:572
python.BunchSpacingUtils.rn
rn
Definition: BunchSpacingUtils.py:87
PixelAthClusterMonAlgCfg.zmax
zmax
Definition: PixelAthClusterMonAlgCfg.py:169
ITk::SiSpacePointsSeedMaker::m_ptmin
FloatProperty m_ptmin
Definition: ITkSiSpacePointsSeedMaker.h:229
ITk::SiSpacePointsSeedMaker::m_beamSpotKey
SG::ReadCondHandleKey< InDet::BeamSpotData > m_beamSpotKey
Definition: ITkSiSpacePointsSeedMaker.h:171
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
Preparation.mode
mode
Definition: Preparation.py:107
IRoiDescriptor::phiMinus
virtual double phiMinus() const =0
hist_file_dump.f
f
Definition: hist_file_dump.py:141
ITk::SiSpacePointsSeedMaker::m_isLRT
BooleanProperty m_isLRT
Definition: ITkSiSpacePointsSeedMaker.h:212
drawFromPickle.tan
tan
Definition: drawFromPickle.py:36
AnalysisUtils::Delta::R
double R(const INavigable4Momentum *p1, const double v_eta, const double v_phi)
Definition: AnalysisMisc.h:49
xAOD::eventNumber
eventNumber
Definition: EventInfo_v1.cxx:124
ITk::SiSpacePointsSeedMaker::erase
static void erase(EventData &data)
Definition: ITkSiSpacePointsSeedMaker.cxx:1410
ITk::SiSpacePointsSeedMaker::dumpConditions
MsgStream & dumpConditions(EventData &data, MsgStream &out) const
Definition: ITkSiSpacePointsSeedMaker.cxx:626
SG::VarHandleKey::initialize
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleKey.cxx:103
TRT::Track::z0
@ z0
Definition: InnerDetector/InDetCalibEvent/TRT_CalibData/TRT_CalibData/TrackInfo.h:63
ITk::SiSpacePointsSeedMaker::m_maxBinPhiVertex
int m_maxBinPhiVertex
Definition: ITkSiSpacePointsSeedMaker.h:296
ITk::SiSpacePointsSeedMaker::arraySizePhiV
@ arraySizePhiV
array size in phi for vertexing
Definition: ITkSiSpacePointsSeedMaker.h:155
ITk::SiSpacePointsSeedMaker::m_spacepointsStrip
SG::ReadHandleKey< SpacePointContainer > m_spacepointsStrip
Definition: ITkSiSpacePointsSeedMaker.h:167
MagField::AtlasFieldCache::solenoidOn
bool solenoidOn() const
status of the magnets
SG::ReadHandle::isValid
virtual bool isValid() override final
Can the handle be successfully dereferenced?
ITk::SiSpacePointForSeed::set
void set(const Trk::SpacePoint *const &, const float *)
Definition: ITkSiSpacePointForSeed.cxx:36
ITk::SiSpacePointsSeedMaker::m_thistSvc
ServiceHandle< ITHistSvc > m_thistSvc
Flag to write validation ntuples. Turned off by default.
Definition: ITkSiSpacePointsSeedMaker.h:258
ITk::SiSpacePointsSeedMaker::m_inverseBinSizePhiSSS
float m_inverseBinSizePhiSSS
Definition: ITkSiSpacePointsSeedMaker.h:295
ITk::SiSpacePointsSeedMaker::m_dzdrmin0
float m_dzdrmin0
Definition: ITkSiSpacePointsSeedMaker.h:242
ITk::SiSpacePointsSeedMaker::m_writeNtuple
Gaudi::Property< bool > m_writeNtuple
Definition: ITkSiSpacePointsSeedMaker.h:256
IRoiDescriptor::phiPlus
virtual double phiPlus() const =0
extreme phi values
ITk::SiSpacePointsSeedMaker::m_maxOneSizeSSS
IntegerProperty m_maxOneSizeSSS
Definition: ITkSiSpacePointsSeedMaker.h:202
lumiFormat.array
array
Definition: lumiFormat.py:91
ITk::SiSpacePointForSeed::radius
const float & radius() const
Definition: ITkSiSpacePointForSeed.h:65
Monitored::Y
@ Y
Definition: HistogramFillerUtils.h:24
ITk::SiSpacePointsSeedMaker::m_maxPhiBinSSS
int m_maxPhiBinSSS
Definition: ITkSiSpacePointsSeedMaker.h:294
ITk::SiSpacePointsSeedMaker::m_maxdImpact
FloatProperty m_maxdImpact
Definition: ITkSiSpacePointsSeedMaker.h:197
ITk::SiSpacePointsSeedMaker::m_spacepointsOverlap
SG::ReadHandleKey< SpacePointOverlapCollection > m_spacepointsOverlap
Definition: ITkSiSpacePointsSeedMaker.h:169
GlobalVariables.Qmin
Qmin
Definition: GlobalVariables.py:192
ITk::SiSpacePointsSeedMaker::m_binSizeR
FloatProperty m_binSizeR
Definition: ITkSiSpacePointsSeedMaker.h:194
ITk::SiSpacePointsSeedMaker::buildConnectionMapsVertex
static void buildConnectionMapsVertex(std::array< int, arraySizePhiZV > &nNeighbourCells, std::array< std::array< int, arraySizeNeighbourBinsVertex >, arraySizePhiZV > &neighbourCells, int maxPhiBin)
Build maps for radius-azimuthal-Z sorted collections for Z Similar logic to the above,...
Definition: ITkSiSpacePointsSeedMaker.cxx:1088
ReadCellNoiseFromCoolCompare.s3
s3
Definition: ReadCellNoiseFromCoolCompare.py:380
ITk
Definition: ITkPixelOfflineCalibCondAlg.cxx:13
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
xAOD::phiBin
setSAddress setEtaMS setDirPhiMS setDirZMS setBarrelRadius setEndcapAlpha setEndcapRadius setPhiMap phiBin
Definition: L2StandAloneMuon_v2.cxx:144
plotBeamSpotMon.b
b
Definition: plotBeamSpotMon.py:77
ITk::SiSpacePointsSeedMaker::arraySizePhi
@ arraySizePhi
capacity of the 1D phi arrays
Definition: ITkSiSpacePointsSeedMaker.h:151
ITk::SiSpacePointsSeedMaker::m_ipt
float m_ipt
Definition: ITkSiSpacePointsSeedMaker.h:244
ITk::SiSpacePointsSeedMaker::m_umax
FloatProperty m_umax
Definition: ITkSiSpacePointsSeedMaker.h:230
ITk::SiSpacePointsSeedMaker::m_nNeighboursVertexPhiZ
std::array< int, arraySizePhiZV > m_nNeighboursVertexPhiZ
Definition: ITkSiSpacePointsSeedMaker.h:323
ITk::SiSpacePointsSeedMaker::m_inverseBinSizePhiVertex
float m_inverseBinSizePhiVertex
Definition: ITkSiSpacePointsSeedMaker.h:297
ITk::SiSpacePointsSeedMaker::m_drminSSS
FloatProperty m_drminSSS
Definition: ITkSiSpacePointsSeedMaker.h:216
SiCluster.h
ITk::SiSpacePointsSeedMaker::m_nNeighbourCellsBottomPPP
std::array< int, arraySizePhiZ > m_nNeighbourCellsBottomPPP
arrays associating bins to each other for SP formation
Definition: ITkSiSpacePointsSeedMaker.h:313
InDetDD::SiDetectorElement
Definition: SiDetectorElement.h:109
ITk::SiSpacePointsSeedMaker::convertToBeamFrameWork
static void convertToBeamFrameWork(EventData &data, const Trk::SpacePoint *const &, float *)
Definition: ITkSiSpacePointsSeedMaker.cxx:1192
SG::CondHandleKey::initialize
StatusCode initialize(bool used=true)
dqt_zlumi_alleff_HIST.B
B
Definition: dqt_zlumi_alleff_HIST.py:110
ITk::SiSpacePointsSeedMaker::m_neighbourCellsTopPPP
std::array< std::array< int, arraySizeNeighbourBins >, arraySizePhiZ > m_neighbourCellsTopPPP
mapping of neighbour cells in the 2D phi-z binning to consider for the "top SP" search for central SP...
Definition: ITkSiSpacePointsSeedMaker.h:316
ITk::SiSpacePointsSeedMaker::m_zmax
FloatProperty m_zmax
Definition: ITkSiSpacePointsSeedMaker.h:192
ITk::SiSpacePointsSeedMaker::m_neighbourCellsTopSSS
std::array< std::array< int, arraySizeNeighbourBins >, arraySizePhiZ > m_neighbourCellsTopSSS
Definition: ITkSiSpacePointsSeedMaker.h:321
validateBDTTau.vt
vt
Definition: validateBDTTau.py:43
ITk::SiSpacePointsSeedMaker::m_nNeighbourCellsTopSSS
std::array< int, arraySizePhiZ > m_nNeighbourCellsTopSSS
Definition: ITkSiSpacePointsSeedMaker.h:319
Amg::Vector3D
Eigen::Matrix< double, 3, 1 > Vector3D
Definition: GeoPrimitives.h:47
ITk::SiSpacePointsSeedMaker::newEvent
virtual void newEvent(const EventContext &ctx, EventData &data, int iteration) const override
Definition: ITkSiSpacePointsSeedMaker.cxx:139
DataModelTestDataCommonDict::xb
DMTest::CView::Pers_t xb
Definition: DataModelTestDataCommonDict.h:55
ITk::SiSpacePointForSeed::covz
const float & covz() const
Definition: ITkSiSpacePointForSeed.h:68
ITk::SiSpacePointsSeedMaker::m_seedScoreThresholdSSSConfirmationSeed
float m_seedScoreThresholdSSSConfirmationSeed
max (score is assigned negative sign) score for SSS seeds with confirmation seed requirement.
Definition: ITkSiSpacePointsSeedMaker.h:309
ir
int ir
counter of the current depth
Definition: fastadd.cxx:49
python.PyAthena.v
v
Definition: PyAthena.py:154
makeTRTBarrelCans.dy
tuple dy
Definition: makeTRTBarrelCans.py:21
ITk::SiSpacePointsSeedMaker::m_maxsize
IntegerProperty m_maxsize
Definition: ITkSiSpacePointsSeedMaker.h:181
ITk::SiSpacePointsProSeed
Definition: ITkSiSpacePointsProSeed.h:28
y
#define y
IRoiDescriptor::zedPlus
virtual double zedPlus() const =0
the zed and eta values at the most forward and most rear ends of the RoI
ATH_MSG_WARNING
#define ATH_MSG_WARNING(x)
Definition: AthMsgStreamMacros.h:32
ITk::SiSpacePointForSeed::x
const float & x() const
Definition: ITkSiSpacePointForSeed.h:62
ITk::SiSpacePointsSeedMaker::m_neighboursVertexPhiZ
std::array< std::array< int, arraySizeNeighbourBinsVertex >, arraySizePhiZV > m_neighboursVertexPhiZ
Definition: ITkSiSpacePointsSeedMaker.h:324
ITk::SiSpacePointsSeedMaker::finalize
virtual StatusCode finalize() override
Definition: ITkSiSpacePointsSeedMaker.cxx:130
ITk::SiSpacePointsSeedMaker::m_seedScoreThresholdPPPConfirmationSeed
float m_seedScoreThresholdPPPConfirmationSeed
Seed score thresholds defined based on the modifiers defined as configurables above.
Definition: ITkSiSpacePointsSeedMaker.h:308
SpacePointCollection
Definition: SpacePointCollection.h:40
DEBUG
#define DEBUG
Definition: page_access.h:11
ReadCellNoiseFromCoolCompare.s2
s2
Definition: ReadCellNoiseFromCoolCompare.py:379
makeTRTBarrelCans.dx
tuple dx
Definition: makeTRTBarrelCans.py:20
python.TrackLeptonConfig.quality
quality
Definition: TrackLeptonConfig.py:16
ITk::SiSpacePointsSeedMaker::production2Sp
void production2Sp(EventData &data) const
Definition: ITkSiSpacePointsSeedMaker.cxx:1445
MagField::AtlasFieldCache
Local cache for magnetic field (based on MagFieldServices/AtlasFieldSvcTLS.h)
Definition: AtlasFieldCache.h:43
python.CaloCondTools.log
log
Definition: CaloCondTools.py:20
if
if(febId1==febId2)
Definition: LArRodBlockPhysicsV0.cxx:567
ITk::SiSpacePointsSeedMaker::m_outputlevel
int m_outputlevel
Definition: ITkSiSpacePointsSeedMaker.h:240
ITk::SiSpacePointsSeedMaker::production3Sp
void production3Sp(EventData &data) const
Definition: ITkSiSpacePointsSeedMaker.cxx:1454
Rmin
double Rmin
Definition: LArDetectorConstructionTBEC.cxx:56
IRoiDescriptor::zedMinus
virtual double zedMinus() const =0
ITk::SiSpacePointsSeedMaker::newVertices
bool newVertices(EventData &data, const std::list< Trk::Vertex > &) const
Definition: ITkSiSpacePointsSeedMaker.cxx:787
ITk::SiSpacePointsSeedMaker::m_neighbourCellsBottomPPP
std::array< std::array< int, arraySizeNeighbourBins >, arraySizePhiZ > m_neighbourCellsBottomPPP
mapping of neighbour cells in the 2D phi-z binning to consider for the "bottom SP" search for central...
Definition: ITkSiSpacePointsSeedMaker.h:315
ITk::SiSpacePointsSeedMaker::m_ipt2
float m_ipt2
Definition: ITkSiSpacePointsSeedMaker.h:245
ITk::SiSpacePointsSeedMaker::buildFrameWork
void buildFrameWork()
Definition: ITkSiSpacePointsSeedMaker.cxx:829
xAOD::track
@ track
Definition: TrackingPrimitives.h:513
ATLAS_THREAD_SAFE
#define ATLAS_THREAD_SAFE
Definition: checker_macros.h:211
egammaEnergyPositionAllSamples::e0
double e0(const xAOD::CaloCluster &cluster)
return the uncorrected cluster energy in pre-sampler
drawFromPickle.sin
sin
Definition: drawFromPickle.py:36
ITk::SiSpacePointsSeedMaker::m_alwaysKeepConfirmedPixelSeeds
BooleanProperty m_alwaysKeepConfirmedPixelSeeds
Definition: ITkSiSpacePointsSeedMaker.h:204
ITk::SiSpacePointsSeedMaker::initialize
virtual StatusCode initialize() override
Definition: ITkSiSpacePointsSeedMaker.cxx:55
ITk::SiSpacePointsSeedMaker::m_useOverlap
BooleanProperty m_useOverlap
Definition: ITkSiSpacePointsSeedMaker.h:180
IdentifierHash
This is a "hash" representation of an Identifier. This encodes a 32 bit index which can be used to lo...
Definition: IdentifierHash.h:25
python.IoTestsLib.w
def w
Definition: IoTestsLib.py:200
TRTCalib_cfilter.p3
p3
Definition: TRTCalib_cfilter.py:132
Trk::Surface
Definition: Tracking/TrkDetDescr/TrkSurfaces/TrkSurfaces/Surface.h:75
checker_macros.h
Define macros for attributes used to control the static checker.
ITk::SiSpacePointsSeedMaker::m_outputTree
TTree * m_outputTree
Definition: ITkSiSpacePointsSeedMaker.h:259
ITk::SiSpacePointsSeedMaker::initializeEventData
void initializeEventData(EventData &data, const EventContext &ctx) const
Definition: ITkSiSpacePointsSeedMaker.cxx:2949
ITk::SiSpacePointsSeedMaker::m_optimisePhiBinning
BooleanProperty m_optimisePhiBinning
Definition: ITkSiSpacePointsSeedMaker.h:209
ITk::SiSpacePointsSeedMaker::m_fastTracking
BooleanProperty m_fastTracking
Definition: ITkSiSpacePointsSeedMaker.h:206
ITk::SiSpacePointsSeedMaker::fillLists
void fillLists(EventData &data) const
Definition: ITkSiSpacePointsSeedMaker.cxx:1203
Trk::Surface::transform
const Amg::Transform3D & transform() const
Returns HepGeom::Transform3D by reference.
ITk::SiSpacePointForSeed::covr
const float & covr() const
Definition: ITkSiSpacePointForSeed.h:67
dq_make_web_display.cl
cl
print [x.__class__ for x in toList(dqregion.getSubRegions()) ]
Definition: dq_make_web_display.py:26
ITk::SiSpacePointsSeedMaker::arraySizePhiZ
@ arraySizePhiZ
capacity for the 2D phi-z arrays
Definition: ITkSiSpacePointsSeedMaker.h:153
TileDCSDataPlotter.tx
tx
Definition: TileDCSDataPlotter.py:878
ITk::SiSpacePointsSeedMaker::buildBeamFrameWork
void buildBeamFrameWork(EventData &data) const
Definition: ITkSiSpacePointsSeedMaker.cxx:1158
python.AutoConfigFlags.msg
msg
Definition: AutoConfigFlags.py:7
InDet::SiCluster
Definition: InnerDetector/InDetRecEvent/InDetPrepRawData/InDetPrepRawData/SiCluster.h:40
ITk::SiSpacePointsProSeed::spacepoint0
SiSpacePointForSeed * spacepoint0()
Definition: ITkSiSpacePointsProSeed.h:45
PUfitVar::nPhiBins
constexpr std::size_t nPhiBins
Definition: GepMETPufitAlg.cxx:20
TSU::T
unsigned long long T
Definition: L1TopoDataTypes.h:35
fitman.k
k
Definition: fitman.py:528
ITk::SiSpacePointForSeed
Definition: ITkSiSpacePointForSeed.h:33
python.LArMinBiasAlgConfig.float
float
Definition: LArMinBiasAlgConfig.py:65
ITk::SiSpacePointsSeedMaker::dump
virtual MsgStream & dump(EventData &data, MsgStream &out) const override
Definition: ITkSiSpacePointsSeedMaker.cxx:615
fitman.ay
ay
Definition: fitman.py:525