ATLAS Offline Software
TRT_SeededSpacePointFinder_ATL.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 /********************************************************************************
6  Header file for class TRT_SeededSpacePointFinder_ATL
7  (c) ATLAS Detector software
8  Class for Si seed candidates generation using space point information
9  Version 1.0: 04/15/2006
10  Authors: Thomas Koffas
11  email : Thomas.Koffas@cern.ch
12 ********************************************************************************/
13 
14 #ifndef TRT_SeededSpacePointFinder_ATL_H
15 #define TRT_SeededSpacePointFinder_ATL_H
16 
17 
18 
19 //Tool Handle
20 //
22 #include "GaudiKernel/ServiceHandle.h"
23 
26 
29 
31 
33 
34 // MagField cache
37 
38 #include <list>
39 #include <vector>
40 #include <iosfwd>
41 
42 class MsgStream ;
43 class SCT_ID ;
44 class SiSpacePointsSeed;
45 
46 namespace InDet{
47 
50  public:
51  bool operator()(std::pair<const Trk::SpacePoint*,int> sp1, std::pair<const Trk::SpacePoint*,int> sp2) const
52  {return (sp1.first)->r() > (sp2.first)->r();}
53  };
54 }
55 
56 namespace InDet{
57 
67  virtual public ITRT_SeededSpacePointFinder, public AthAlgTool
68  {
70  // Public methods:
72 
73  public:
74 
76 
77 
80  (const std::string&,const std::string&,const IInterface*);
82  virtual StatusCode initialize();
83  virtual StatusCode finalize ();
84 
86 
87 
89  std::unique_ptr<InDet::ITRT_SeededSpacePointFinder::IEventData> newEvent () const;
90  std::unique_ptr<InDet::ITRT_SeededSpacePointFinder::IEventData> newRegion
91  (const std::vector<IdentifierHash>&,
92  const std::vector<IdentifierHash>&) const;
93 
95 
96 
98  std::list<std::pair<const Trk::SpacePoint*,const Trk::SpacePoint*> > find2Sp (const EventContext& ctx,
99  const Trk::TrackParameters&,
100  ITRT_SeededSpacePointFinder::IEventData &event_data) const;
101 
103 
104 
107 
109 
110 
112  MsgStream& dump (MsgStream & out) const;
113  std::ostream& dump (std::ostream& out) const;
114 
115  protected:
116 
118 
119 
121  StringProperty m_fieldmode{this, "MagneticFieldMode", "MapSolenoid",
122  "Magnetic field mode"};
123 
128  const SCT_ID* m_sctId = nullptr;
129 
131 
132 
134  DoubleProperty m_ptmin{this, "pTmin", 500., "Minimum pT cut"};
135 
136  static constexpr double m_r_rmin = 0.;
137  static constexpr double m_r_rmax = 600.;
138  static constexpr double m_r_rstep = 10.;
139  static constexpr double m_r1max = 560.;
140  static constexpr double m_r12min = 400.;
141  static constexpr double m_r2min = 340.;
142  static constexpr double m_dzdrmin = -4.;
143  static constexpr double m_dzdrmax = 4.;
145  DoubleProperty m_xiC{this, "Xi2C", 100., "qOverP based chi2 cut"};
146  DoubleProperty m_xiTC{this, "Xi2TC", 100., "theta based chi2 cut"};
147  DoubleProperty m_xiFC{this, "Xi2FC", 100., "phi based chi2 cut"};
148  BooleanProperty m_search{this, "NeighborSearch", true, "Do full neighbor search"};
149  BooleanProperty m_loadFull{this, "LoadFull", true,
150  "Load full Si space point container"};
151  BooleanProperty m_doCosmics{this, "DoCosmics", false,
152  "Disable seed selection cuts during reconstruction of cosmics tracks"};
153 
155 
156 
158  class EventData;
159  class EventData : public Trk::EventDataBase<EventData,InDet::ITRT_SeededSpacePointFinder::IEventData>
160  {
162  public:
164  : m_r_size(0),
165  m_ns(0),
166  m_fNmax(0),
167  m_nr(0),
168  m_nrf(0),
169  m_sF(0.)
170  {
171  m_r_index = 0 ;
172  m_r_map = 0 ;
173  }
175  if(m_r_index) delete [] m_r_index;
176  if(m_r_map ) delete [] m_r_map ;
177  }
178 
179  protected:
180  void buildFrameWork(double r_rmax, double r_rstep, double ptmin);
181  void erase(); // unused?
182 
183  int m_r_size ;
184  std::list<std::pair<const Trk::SpacePoint*,int> > m_rf_Sorted[530] ;
185  std::list<std::pair<const Trk::SpacePoint*,int> > m_newRfi_Sorted ;
186 
187  int m_ns=0 ;
188  int m_fNmax=0 ;
189  int m_nr=0 ; int* m_r_index=nullptr; int* m_r_map=nullptr ;
190  int m_nrf=0 , m_rf_index [ 530], m_rf_map [ 530] ;
191  double m_sF;
192 
193  };
194 
196 
197 
199  SG::ReadHandleKey<SpacePointContainer> m_spacepointsPixname {this,"SpacePointsPixelName","PixelSpacePoints","RHK to retrieve Pixel SpacePointContainer"} ;
200  SG::ReadHandleKey<SpacePointContainer> m_spacepointsSCTname {this,"SpacePointsSCTName","SCT_SpacePoints","RHK to retrieve SCT SpacePointContainer"} ;
201  SG::ReadHandleKey<SpacePointOverlapCollection> m_spacepointsOverlapname {this,"SpacePointsOverlapName","OverlapSpacePoints","RHK to retrieve OverlapCollection"} ;
203  {this,"PRDtoTrackMap",""};
204 
205  // Read handle for conditions object to get the field cache
207  "fieldCondObj", "Name of the Magnetic Field conditions object key"};
208 
210 
211 
213  MsgStream& dumpConditions(MsgStream & out) const;
214  MsgStream& dumpEvent (MsgStream & out,InDet::TRT_SeededSpacePointFinder_ATL::EventData &event_data) const;
215 
216 
218  void fillLists (std::vector< std::vector<const Trk::SpacePoint*> > &r_Sorted,
220 
221 
224  // // // // // // // // // // // // // // // // //
225  void production2Spb (const EventContext& ctx, const Trk::TrackParameters&,
226  int,
227  std::list<std::pair<const Trk::SpacePoint*,const Trk::SpacePoint*> > &outputListBuffer,
229  // // // // // // // // // // // // // // // // //
230 
232  void geoInfo(const Trk::SpacePoint*, int&, int&) const ;
233 
234 
236  void magneticFieldInit();
237 
238  // ptr to SP-specific data to be stored after calculated only once
239  // instead of repeating the same computations many times in the
240  // nested loop (memory allocated and deallocated in production2Spb)
241  struct bypass_struct {
242  double X, Y, Z;
243  double R, invR;
244  double a, b;
245  };
246 
247  // place to keep scalar values needed for cuts, common to all seeds
248  // updated only once per production2Sp call instead or each cutTPb
252  };
253 
256  // // // // // // // // // // // // // // // // //
257  bool cutTPb(const invar_bypass_struct &invar_bypass, const std::vector<bypass_struct> &prod_bypass,long, long, double) const;
258  // // // // // // // // // // // // // // // // //
259 
260  };
261 
263 
264 
268  {
269  return 0;
270  }
271 
272 } // end of name space
273 
274 #endif // TRT_SeededSpacePointFinder_ATL_H
InDet::TRT_SeededSpacePointFinder_ATL::m_xiC
DoubleProperty m_xiC
Max R-z direction cut
Definition: TRT_SeededSpacePointFinder_ATL.h:145
Trk::SpacePoint
Definition: Tracking/TrkEvent/TrkSpacePoint/TrkSpacePoint/SpacePoint.h:35
beamspotman.r
def r
Definition: beamspotman.py:676
InDet::TRT_SeededSpacePointFinder_ATL::m_spacepointsOverlapname
SG::ReadHandleKey< SpacePointOverlapCollection > m_spacepointsOverlapname
Definition: TRT_SeededSpacePointFinder_ATL.h:201
PRDtoTrackMap.h
Trk::EventDataBase
Base for a helper class to pass mutable storage to tools.
Definition: EventDataBase.h:17
InDet::TRT_SeededSpacePointFinder_ATL::invar_bypass_struct::max_phi
double max_phi
Definition: TRT_SeededSpacePointFinder_ATL.h:250
InDet::TRT_SeededSpacePointFinder_ATL::m_search
BooleanProperty m_search
Definition: TRT_SeededSpacePointFinder_ATL.h:148
InDet::TRT_SeededSpacePointFinder_ATL::m_fieldmode
StringProperty m_fieldmode
Protected data and methods
Definition: TRT_SeededSpacePointFinder_ATL.h:121
InDet::TRT_SeededSpacePointFinder_ATL::TRT_SeededSpacePointFinder_ATL
TRT_SeededSpacePointFinder_ATL(const std::string &, const std::string &, const IInterface *)
Standard tool methods
Definition: TRT_SeededSpacePointFinder_ATL.cxx:44
InDet::TRT_SeededSpacePointFinder_ATL::invar_bypass_struct::max_theta
double max_theta
Definition: TRT_SeededSpacePointFinder_ATL.h:250
InDet::ITRT_SeededSpacePointFinder::IEventData
Definition: ITRT_SeededSpacePointFinder.h:51
InDet::TRT_SeededSpacePointFinder_ATL::m_spacepointsPixname
SG::ReadHandleKey< SpacePointContainer > m_spacepointsPixname
Space points containers
Definition: TRT_SeededSpacePointFinder_ATL.h:199
Trk::MagneticFieldProperties
Definition: MagneticFieldProperties.h:31
InDet::TRT_SeededSpacePointFinder_ATL::EventData::m_nrf
int m_nrf
Definition: TRT_SeededSpacePointFinder_ATL.h:190
EventDataBase.h
InDet::TRT_SeededSpacePointFinder_ATL::EventData::m_sF
double m_sF
Definition: TRT_SeededSpacePointFinder_ATL.h:191
InDet::TRT_SeededSpacePointFinder_ATL::m_r_rstep
static constexpr double m_r_rstep
Maximum STC radius to be searched
Definition: TRT_SeededSpacePointFinder_ATL.h:138
ITRT_SeededSpacePointFinder.h
AtlasFieldCacheCondObj.h
InDet
Primary Vertex Finder.
Definition: VP1ErrorUtils.h:36
TrigJetMonitorAlgorithm.ptmin
ptmin
Definition: TrigJetMonitorAlgorithm.py:1226
InDet::TRT_SeededSpacePointFinder_ATL::next
const SiSpacePointsSeed * next(ITRT_SeededSpacePointFinder::IEventData &event_data) const
Iterator through seed collection.Not used in this implementation.
Definition: TRT_SeededSpacePointFinder_ATL.h:267
InDet::ITRT_SeededSpacePointFinder
Definition: ITRT_SeededSpacePointFinder.h:45
InDet::TRT_SeededSpacePointFinder_ATL::m_xiFC
DoubleProperty m_xiFC
Definition: TRT_SeededSpacePointFinder_ATL.h:147
InDet::TRT_SeededSpacePointFinder_ATL::newEvent
std::unique_ptr< InDet::ITRT_SeededSpacePointFinder::IEventData > newEvent() const
Method to initialize tool for new event
Definition: TRT_SeededSpacePointFinder_ATL.cxx:103
python.AthDsoLogger.out
out
Definition: AthDsoLogger.py:71
InDet::TRT_SeededSpacePointFinder_ATL::EventData::m_ns
int m_ns
Definition: TRT_SeededSpacePointFinder_ATL.h:187
InDet::TRT_SeededSpacePointFinder_ATL::bypass_struct::Z
double Z
Definition: TRT_SeededSpacePointFinder_ATL.h:242
InDet::TRT_SeededSpacePointFinder_ATL::EventData::m_rf_index
int m_rf_index[530]
Definition: TRT_SeededSpacePointFinder_ATL.h:190
InDet::TRT_SeededSpacePointFinder_ATL::fillLists
void fillLists(std::vector< std::vector< const Trk::SpacePoint * > > &r_Sorted, InDet::TRT_SeededSpacePointFinder_ATL::EventData &event_data) const
Fill the space point container lists at beginning of each event.
Definition: TRT_SeededSpacePointFinder_ATL.cxx:523
InDet::TRT_SeededSpacePointFinder_ATL::bypass_struct
Definition: TRT_SeededSpacePointFinder_ATL.h:241
InDet::TRT_SeededSpacePointFinder_ATL
Definition: TRT_SeededSpacePointFinder_ATL.h:68
InDet::MyNewDataSortPredicate
Sorting function according to space point radial position.
Definition: TRT_SeededSpacePointFinder_ATL.h:49
InDet::TRT_SeededSpacePointFinder_ATL::invar_bypass_struct::min_theta
double min_theta
Definition: TRT_SeededSpacePointFinder_ATL.h:250
InDet::TRT_SeededSpacePointFinder_ATL::EventData::buildFrameWork
void buildFrameWork(double r_rmax, double r_rstep, double ptmin)
Definition: TRT_SeededSpacePointFinder_ATL.cxx:496
SG::ReadHandleKey< SpacePointContainer >
InDet::TRT_SeededSpacePointFinder_ATL::EventData::EventData
EventData()
Definition: TRT_SeededSpacePointFinder_ATL.h:163
InDet::TRT_SeededSpacePointFinder_ATL::bypass_struct::invR
double invR
Definition: TRT_SeededSpacePointFinder_ATL.h:243
InDet::TRT_SeededSpacePointFinder_ATL::m_sctId
const SCT_ID * m_sctId
Magnetic field properties
Definition: TRT_SeededSpacePointFinder_ATL.h:128
InDet::TRT_SeededSpacePointFinder_ATL::EventData::~EventData
~EventData()
Definition: TRT_SeededSpacePointFinder_ATL.h:174
SpacePointContainer.h
InDet::TRT_SeededSpacePointFinder_ATL::m_dzdrmin
static constexpr double m_dzdrmin
Min radius to search for SP pairs
Definition: TRT_SeededSpacePointFinder_ATL.h:142
InDet::TRT_SeededSpacePointFinder_ATL::~TRT_SeededSpacePointFinder_ATL
virtual ~TRT_SeededSpacePointFinder_ATL()
InDet::TRT_SeededSpacePointFinder_ATL::m_r_rmin
static constexpr double m_r_rmin
Definition: TRT_SeededSpacePointFinder_ATL.h:136
InDet::TRT_SeededSpacePointFinder_ATL::cutTPb
bool cutTPb(const invar_bypass_struct &invar_bypass, const std::vector< bypass_struct > &prod_bypass, long, long, double) const
Cut on chi2 based on TRT segment qOverP, theta and phi track parameters.
Definition: TRT_SeededSpacePointFinder_ATL.cxx:891
MagneticFieldProperties.h
InDet::TRT_SeededSpacePointFinder_ATL::EventData::m_rf_map
int m_rf_map[530]
Definition: TRT_SeededSpacePointFinder_ATL.h:190
InDet::TRT_SeededSpacePointFinder_ATL::m_r2min
static constexpr double m_r2min
Min radius of last SCT layer
Definition: TRT_SeededSpacePointFinder_ATL.h:141
InDet::TRT_SeededSpacePointFinder_ATL::finalize
virtual StatusCode finalize()
Definition: TRT_SeededSpacePointFinder_ATL.cxx:92
InDet::TRT_SeededSpacePointFinder_ATL::m_fieldprop
Trk::MagneticFieldProperties m_fieldprop
Definition: TRT_SeededSpacePointFinder_ATL.h:124
InDet::TRT_SeededSpacePointFinder_ATL::EventData::m_r_index
int * m_r_index
Definition: TRT_SeededSpacePointFinder_ATL.h:189
InDet::SiSpacePointsSeed
Definition: SiSpacePointsSeed.h:30
InDet::TRT_SeededSpacePointFinder_ATL::EventData::m_rf_Sorted
std::list< std::pair< const Trk::SpacePoint *, int > > m_rf_Sorted[530]
Definition: TRT_SeededSpacePointFinder_ATL.h:184
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
InDet::TRT_SeededSpacePointFinder_ATL::initialize
virtual StatusCode initialize()
Definition: TRT_SeededSpacePointFinder_ATL.cxx:61
InDet::TRT_SeededSpacePointFinder_ATL::newRegion
std::unique_ptr< InDet::ITRT_SeededSpacePointFinder::IEventData > newRegion(const std::vector< IdentifierHash > &, const std::vector< IdentifierHash > &) const
Definition: TRT_SeededSpacePointFinder_ATL.cxx:213
AthAlgTool.h
InDet::TRT_SeededSpacePointFinder_ATL::m_dzdrmax
static constexpr double m_dzdrmax
Min R-z direction cut
Definition: TRT_SeededSpacePointFinder_ATL.h:143
InDet::TRT_SeededSpacePointFinder_ATL::EventData::m_r_map
int * m_r_map
Definition: TRT_SeededSpacePointFinder_ATL.h:189
SpacePointOverlapCollection.h
AtlasFieldCache.h
InDet::TRT_SeededSpacePointFinder_ATL::invar_bypass_struct::invp_min2
double invp_min2
Definition: TRT_SeededSpacePointFinder_ATL.h:251
InDet::TRT_SeededSpacePointFinder_ATL::m_spacepointsSCTname
SG::ReadHandleKey< SpacePointContainer > m_spacepointsSCTname
Definition: TRT_SeededSpacePointFinder_ATL.h:200
InDet::TRT_SeededSpacePointFinder_ATL::bypass_struct::R
double R
Definition: TRT_SeededSpacePointFinder_ATL.h:243
EventData
Definition: Trigger/TrigAccel/TrigCudaFitter/src/EventData.h:11
InDet::TRT_SeededSpacePointFinder_ATL::m_xiTC
DoubleProperty m_xiTC
Definition: TRT_SeededSpacePointFinder_ATL.h:146
InDet::MyNewDataSortPredicate::operator()
bool operator()(std::pair< const Trk::SpacePoint *, int > sp1, std::pair< const Trk::SpacePoint *, int > sp2) const
Definition: TRT_SeededSpacePointFinder_ATL.h:51
histSizes.list
def list(name, path='/')
Definition: histSizes.py:38
InDet::TRT_SeededSpacePointFinder_ATL::EventData::m_fNmax
int m_fNmax
Definition: TRT_SeededSpacePointFinder_ATL.h:188
Trk::ParametersBase
Definition: ParametersBase.h:55
InDet::TRT_SeededSpacePointFinder_ATL::dump
MsgStream & dump(MsgStream &out) const
Print internal tool parameters and status
Definition: TRT_SeededSpacePointFinder_ATL.cxx:482
InDet::TRT_SeededSpacePointFinder_ATL::m_prdToTrackMap
SG::ReadHandleKey< Trk::PRDtoTrackMap > m_prdToTrackMap
Definition: TRT_SeededSpacePointFinder_ATL.h:203
InDet::TRT_SeededSpacePointFinder_ATL::invar_bypass_struct::invp_max
double invp_max
Definition: TRT_SeededSpacePointFinder_ATL.h:250
InDet::TRT_SeededSpacePointFinder_ATL::geoInfo
void geoInfo(const Trk::SpacePoint *, int &, int &) const
Obtain geo model info for a specific space point
Definition: TRT_SeededSpacePointFinder_ATL.cxx:1022
InDet::TRT_SeededSpacePointFinder_ATL::invar_bypass_struct::invp_min
double invp_min
Definition: TRT_SeededSpacePointFinder_ATL.h:250
InDet::TRT_SeededSpacePointFinder_ATL::m_r_rmax
static constexpr double m_r_rmax
Minimum SCT radius to be searched
Definition: TRT_SeededSpacePointFinder_ATL.h:137
InDet::TRT_SeededSpacePointFinder_ATL::invar_bypass_struct
Definition: TRT_SeededSpacePointFinder_ATL.h:249
InDet::TRT_SeededSpacePointFinder_ATL::EventData::erase
void erase()
Definition: TRT_SeededSpacePointFinder_ATL.cxx:563
InDet::TRT_SeededSpacePointFinder_ATL::m_loadFull
BooleanProperty m_loadFull
Definition: TRT_SeededSpacePointFinder_ATL.h:149
InDet::TRT_SeededSpacePointFinder_ATL::bypass_struct::X
double X
Definition: TRT_SeededSpacePointFinder_ATL.h:242
InDet::TRT_SeededSpacePointFinder_ATL::magneticFieldInit
void magneticFieldInit()
Get magnetic field properties
Definition: TRT_SeededSpacePointFinder_ATL.cxx:1044
SG::ReadCondHandleKey< AtlasFieldCacheCondObj >
InDet::TRT_SeededSpacePointFinder_ATL::dumpConditions
MsgStream & dumpConditions(MsgStream &out) const
Protected methods
Definition: TRT_SeededSpacePointFinder_ATL.cxx:346
InDet::TRT_SeededSpacePointFinder_ATL::m_doCosmics
BooleanProperty m_doCosmics
Definition: TRT_SeededSpacePointFinder_ATL.h:151
InDet::TRT_SeededSpacePointFinder_ATL::EventData::m_newRfi_Sorted
std::list< std::pair< const Trk::SpacePoint *, int > > m_newRfi_Sorted
Definition: TRT_SeededSpacePointFinder_ATL.h:185
InDet::TRT_SeededSpacePointFinder_ATL::bypass_struct::Y
double Y
Definition: TRT_SeededSpacePointFinder_ATL.h:242
InDet::TRT_SeededSpacePointFinder_ATL::m_fieldCondObjInputKey
SG::ReadCondHandleKey< AtlasFieldCacheCondObj > m_fieldCondObjInputKey
Definition: TRT_SeededSpacePointFinder_ATL.h:206
InDet::TRT_SeededSpacePointFinder_ATL::m_r1max
static constexpr double m_r1max
Step size for space point storage
Definition: TRT_SeededSpacePointFinder_ATL.h:139
SCT_ID
Definition: SCT_ID.h:68
InDet::TRT_SeededSpacePointFinder_ATL::m_ptmin
DoubleProperty m_ptmin
Seed selection criteria
Definition: TRT_SeededSpacePointFinder_ATL.h:134
InDet::TRT_SeededSpacePointFinder_ATL::invar_bypass_struct::invp_max2
double invp_max2
Definition: TRT_SeededSpacePointFinder_ATL.h:251
InDet::TRT_SeededSpacePointFinder_ATL::EventData::m_r_size
int m_r_size
Definition: TRT_SeededSpacePointFinder_ATL.h:183
InDet::TRT_SeededSpacePointFinder_ATL::production2Spb
void production2Spb(const EventContext &ctx, const Trk::TrackParameters &, int, std::list< std::pair< const Trk::SpacePoint *, const Trk::SpacePoint * > > &outputListBuffer, InDet::TRT_SeededSpacePointFinder_ATL::EventData &event_data) const
Form possible space point combinations within allowed radial and pseudorapidity ranges.
Definition: TRT_SeededSpacePointFinder_ATL.cxx:640
InDet::TRT_SeededSpacePointFinder_ATL::dumpEvent
MsgStream & dumpEvent(MsgStream &out, InDet::TRT_SeededSpacePointFinder_ATL::EventData &event_data) const
Definition: TRT_SeededSpacePointFinder_ATL.cxx:436
InDet::TRT_SeededSpacePointFinder_ATL::EventData::m_nr
int m_nr
Definition: TRT_SeededSpacePointFinder_ATL.h:189
AthAlgTool
Definition: AthAlgTool.h:26
InDet::TRT_SeededSpacePointFinder_ATL::EventData
Definition: TRT_SeededSpacePointFinder_ATL.h:160
InDet::TRT_SeededSpacePointFinder_ATL::find2Sp
std::list< std::pair< const Trk::SpacePoint *, const Trk::SpacePoint * > > find2Sp(const EventContext &ctx, const Trk::TrackParameters &, ITRT_SeededSpacePointFinder::IEventData &event_data) const
Main method of seed production
Definition: TRT_SeededSpacePointFinder_ATL.cxx:306
InDet::TRT_SeededSpacePointFinder_ATL::bypass_struct::a
double a
Definition: TRT_SeededSpacePointFinder_ATL.h:244
InDet::TRT_SeededSpacePointFinder_ATL::m_r12min
static constexpr double m_r12min
Max radius of last SCT layer
Definition: TRT_SeededSpacePointFinder_ATL.h:140
InDet::TRT_SeededSpacePointFinder_ATL::invar_bypass_struct::min_phi
double min_phi
Definition: TRT_SeededSpacePointFinder_ATL.h:250
InDet::TRT_SeededSpacePointFinder_ATL::bypass_struct::b
double b
Definition: TRT_SeededSpacePointFinder_ATL.h:244