ATLAS Offline Software
Loading...
Searching...
No Matches
ActsTrk::GbtsSeedingTool Class Referencefinal

#include <GbtsSeedingTool.h>

Inheritance diagram for ActsTrk::GbtsSeedingTool:
Collaboration diagram for ActsTrk::GbtsSeedingTool:

Public Member Functions

 GbtsSeedingTool (const std::string &type, const std::string &name, const IInterface *parent)
virtual ~GbtsSeedingTool ()=default
virtual StatusCode initialize () override
virtual StatusCode createSeeds (const EventContext &ctx, const Acts::SpacePointContainer< ActsTrk::SpacePointCollector, Acts::detail::RefHolder > &spContainer, const Acts::Vector3 &beamSpotPos, const Acts::Vector3 &bField, ActsTrk::SeedContainer &seedContainer) const override

Private Member Functions

void printSeedFinderGbtsConfig (const Acts::Experimental::SeedFinderGbtsConfig &cfg)
StatusCode prepareConfiguration ()
const Acts::Logger & logger () const
 Private access to the logger.

Private Attributes

std::unique_ptr< Acts::Experimental::GbtsConnector > m_connector = nullptr
Acts::Experimental::SeedFinderGbtsConfig m_finderCfg
std::unique_ptr< Acts::Experimental::GbtsGeometry > m_gbtsGeo = nullptr
std::vector< Acts::Experimental::TrigInDetSiLayer > m_layerGeometry {}
ToolHandle< ITrigL2LayerNumberToolm_layerNumberTool {this, "layerNumberTool", "TrigL2LayerNumberToolITk"}
const std::vector< short > * m_sct_h2l {nullptr}
const std::vector< short > * m_pix_h2l {nullptr}
std::vector< bool > m_are_pixels
Gaudi::Property< std::string > m_ConnectorInputFile {this, "ConnectorInputFile","binTables_ITK_RUN4.txt", "input file for making connector object"}
Gaudi::Property< bool > m_LRTmode {this, "LRTmode", false, "whether strip or pixel hits are used"}
Gaudi::Property< bool > m_useML {this, "useML", true, "use the cluster width of the spacepoint"}
Gaudi::Property< bool > m_matchBeforeCreate {this, "matchBeforeCreate", false, "need to check what this does"}
Gaudi::Property< bool > m_useOldTunings {this, "useOldTunings", false, "use the tunings for 900MeV cut"}
Gaudi::Property< float > m_tau_ratio_cut {this, "cut_tau_ratio_max",0.007, "tau cut for doublets and triplets"}
Gaudi::Property< float > m_etaBinOverride {this, "etaBinOverride", 0.0f, "apply custom binning for connections"}
Gaudi::Property< float > m_nMaxPhiSlice {this, "nMaxPhiSlice",53, "used to calculate phi slices"}
Gaudi::Property< bool > m_BeamSpotCorrection {this, "beamSpotCorrection", true, "apply primary vertex corrections to spacepoints"}
Gaudi::Property< float > m_minPt {this, "minPt", 1000.0, "Lower cutoff for seeds"}
Gaudi::Property< float > m_phiSliceWidth {this, "phiSliceWidth",0, "initialised in loadSpacePoints function"}
Gaudi::Property< bool > m_useEtaBinning {this, "useEtaBinning",true, "bool to use eta binning from geometry structure"}
Gaudi::Property< bool > m_doubletFilterRZ {this, "doubletFilterRZ",true, "bool applies new Z cuts on doublets"}
Gaudi::Property< float > m_minDeltaRadius {this, "minDeltaRadius",2.0, " min dr for doublet"}
Gaudi::Property< int > m_nMaxEdges {this, "MaxEdges",3000000, " max number of Gbts edges/doublets"}
Gaudi::Property< double > m_ptCoeff {this, "ptCoeff", 0.29997 * 1.9972 / 2.0, "~0.3*B/2 - assumes nominal field of 2*T"}
Gaudi::Property< float > m_sigma_t {this, "sigma_t", 0.0003, "process noise on transverse slope"}
Gaudi::Property< float > m_sigma_w {this, "sigma_w", 0.00009, "process noise on transverse curvature"}
Gaudi::Property< float > m_sigmaMS {this, "sigmaMS", 0.016, "process noise from multiple scattering"}
Gaudi::Property< float > m_sigma_x {this, "sigma_x", 0.25, "measurement resolution for residual on y direction"}
Gaudi::Property< float > m_sigma_y {this, "sigma_y", 2.5, "measurement resolution on r-z plane"}
Gaudi::Property< float > m_weight_x {this, "weight_x", 0.5, "penalty weight for track"}
Gaudi::Property< float > m_weight_y {this, "weight_y", 0.5, "penalty weight for track"}
Gaudi::Property< float > m_maxDChi2_x {this, "maxDChi2_x", 60.0, "gate threshold for chi2 test"}
Gaudi::Property< float > m_maxDChi2_y {this, "maxDChi2_y", 60.0, "gate threshold for chi2 test"}
Gaudi::Property< float > m_add_hit {this, "add_hit", 14.0, "reward added to tracks for each accepted hit before chi2"}
std::unique_ptr< const Acts::Logger > m_logger {nullptr}
 logging instance

Detailed Description

Definition at line 50 of file GbtsSeedingTool.h.

Constructor & Destructor Documentation

◆ GbtsSeedingTool()

ActsTrk::GbtsSeedingTool::GbtsSeedingTool ( const std::string & type,
const std::string & name,
const IInterface * parent )

Definition at line 15 of file GbtsSeedingTool.cxx.

18 : base_class(type, name, parent)
19 {}

◆ ~GbtsSeedingTool()

virtual ActsTrk::GbtsSeedingTool::~GbtsSeedingTool ( )
virtualdefault

Member Function Documentation

◆ createSeeds()

ATH_FLATTEN StatusCode ActsTrk::GbtsSeedingTool::createSeeds ( const EventContext & ctx,
const Acts::SpacePointContainer< ActsTrk::SpacePointCollector, Acts::detail::RefHolder > & spContainer,
const Acts::Vector3 & beamSpotPos,
const Acts::Vector3 & bField,
ActsTrk::SeedContainer & seedContainer ) const
overridevirtual

Definition at line 84 of file GbtsSeedingTool.cxx.

89 {
90 //to avoid compile issues with unused veriables
91 (void) ctx;
92 (void) bField;
93 //define new custom spacepoint container
94 Acts::SpacePointContainer2 coreSpacePoints(
95 Acts::SpacePointColumns::SourceLinks |
96 Acts::SpacePointColumns::X |
97 Acts::SpacePointColumns::Y |
98 Acts::SpacePointColumns::Z |
99 Acts::SpacePointColumns::R |
100 Acts::SpacePointColumns::Phi
101 );
102
103 //add new coloumn for layer ID and clusterwidth
104 auto LayerColoumn = coreSpacePoints.createColumn<int>("LayerID");
105 auto ClusterWidthColoumn = coreSpacePoints.createColumn<float>("Cluster_Width");
106 coreSpacePoints.reserve(spContainer.size());
107
108 //add spacepoints to new container and seedContainer
109 seedContainer.spacePoints().reserve(spContainer.size());
110 for(size_t idx=0; idx<spContainer.size(); idx++){
111 //obtain module hash for spacepoint
112 const auto & sp = spContainer.at(idx);
113 const auto & extSP = sp.externalSpacePoint();
114 seedContainer.spacePoints().push_back(&extSP);
115 const std::vector<xAOD::DetectorIDHashType>& elementlist = extSP.elementIdList() ;
116
117 bool isPixel(elementlist.size() == 1);
118 if(isPixel == false) continue; //as currently strip hits are not used for seeding
119
120 short layer = (isPixel ? m_pix_h2l : m_sct_h2l)->at(static_cast<int>(elementlist[0]));
121 //obtain coordinates
122 const auto& pos = extSP.globalPosition();
123
124 auto newSp = coreSpacePoints.createSpacePoint();
125
126 //assign link to original spacepoint (needed for seed container)
127 newSp.assignSourceLinks(
128 std::array<Acts::SourceLink, 1>{Acts::SourceLink(&extSP)});
129
130 //apply beamspot corrections if needed
131 if(m_finderCfg.BeamSpotCorrection){
132
133 newSp.x() = pos.x() - beamSpotPos[0];
134 newSp.y() = pos.y() - beamSpotPos[1];
135 newSp.z() = pos.z();
136
137
138 }else{
139
140 newSp.x() = pos.x();
141 newSp.y() = pos.y();
142 newSp.z() = pos.z();
143
144 }
145 newSp.r() = std::sqrt(std::pow(pos.x(), 2) + std::pow(pos.y(), 2));
146 newSp.phi() = std::atan2(pos.y(), pos.x());
147 newSp.extra(LayerColoumn) = layer;
148
149 if(m_finderCfg.useML){
150
151 assert(dynamic_cast<const xAOD::PixelCluster*>(extSP.measurements().front())!=nullptr);
152 const xAOD::PixelCluster* pCL = static_cast<const xAOD::PixelCluster*>(extSP.measurements().front());
153 newSp.extra(ClusterWidthColoumn) = pCL->widthInEta();
154
155 }else{
156 newSp.extra(ClusterWidthColoumn) = 0 ;
157
158 }
159 }
160 ATH_MSG_VERBOSE("Spacepoints successfully added to new container");
161
162 //collect all spacepoint containers objects so they can be passed into the seedfinder
163 auto SPContainerComponents = std::make_tuple(std::move(coreSpacePoints), LayerColoumn.asConst(), ClusterWidthColoumn.asConst());
164
165 //define ACTS core algorithm
166 Acts::Experimental::SeedFinderGbts finder(m_finderCfg, m_gbtsGeo.get(), &m_layerGeometry);
167
168 //compute seeds
169 int max_layers = m_are_pixels.size();
170 Acts::Experimental::RoiDescriptor internalRoi(0, -4.5, 4.5, 0, -std::numbers::pi, std::numbers::pi, 0, -150.0,150.0); //(eta,etaMinus,etaPlus,phi,phiMinus,Phiplus,z,zMinus,zPlus)
171 Acts::SeedContainer2 seeds = finder.CreateSeeds(internalRoi, SPContainerComponents, max_layers);
172
173
174 //add seeds to the output container
175 seedContainer.reserve(seeds.size(), 7.0f);
176 for (Acts::MutableSeedProxy2 seed : seeds) {
177
178 seedContainer.push_back(seed);
179 }
180 ATH_MSG_VERBOSE("Number of seeds created is" << seedContainer.size());
181 return StatusCode::SUCCESS;
182 }
#define ATH_MSG_VERBOSE(x)
static Double_t sp
Acts::Experimental::SeedFinderGbtsConfig m_finderCfg
std::vector< bool > m_are_pixels
const std::vector< short > * m_sct_h2l
std::vector< Acts::Experimental::TrigInDetSiLayer > m_layerGeometry
const std::vector< short > * m_pix_h2l
std::unique_ptr< Acts::Experimental::GbtsGeometry > m_gbtsGeo
float widthInEta() const
Returns the width of the cluster in phi (x) and eta (y) directions, respectively.
@ layer
Definition HitInfo.h:79
PixelCluster_v1 PixelCluster
Define the version of the pixel cluster class.
Acts::MutableSeedProxy2 push_back(Acts::SpacePointIndexSubset2 sp)
const SpacePointContainer & spacePoints() const noexcept

◆ initialize()

StatusCode ActsTrk::GbtsSeedingTool::initialize ( )
overridevirtual

Definition at line 21 of file GbtsSeedingTool.cxx.

21 {
22
23
24 ATH_CHECK(m_layerNumberTool.retrieve());
25 ATH_MSG_DEBUG("Initializing " << name() << "...");
26
27 // Make the logger And Propagate to ACTS routines
28 m_logger = makeActsAthenaLogger(this, "Acts");
29
32
33 // layer geometry creation
34 const std::vector<TrigInDetSiLayer>* pVL = m_layerNumberTool->layerGeometry();
35
36 m_layerGeometry.clear();
37 m_layerGeometry.reserve(pVL->size());
38
39 //convert from trigindetsilayer to acts::experimental::trigindetsilayer
40
41 for (const TrigInDetSiLayer& s : *pVL) {
42 m_layerGeometry.emplace_back(s.m_subdet, s.m_type, s.m_refCoord, s.m_minBound, s.m_maxBound);
43 }
44
45 //fill which has id for each module belongs to what layer
46 m_sct_h2l = m_layerNumberTool->sctLayers();
47 m_pix_h2l = m_layerNumberTool->pixelLayers();
48 m_are_pixels.resize(m_layerNumberTool->maxNumberOfUniqueLayers(), true);
49 for(const auto& l : *m_sct_h2l) m_are_pixels[l] = false;
50
51 //initiliase connection file
52 std::ifstream input_ifstream(m_finderCfg.ConnectorInputFile.c_str(), std::ifstream::in);
53
54 //check to see if file exists and add custom eta binning (if needed)
55 // connector
56 if (input_ifstream.peek() == std::ifstream::traits_type::eof()) {
57
58 ATH_MSG_FATAL("Cannot find layer connections file ");
59 throw std::runtime_error("connection file not found"); //not sure if this is the right thing to do
60
61 }
62
63 //create the connection objects
64 else {
65
66 m_connector = std::make_unique<Acts::Experimental::GbtsConnector>(input_ifstream, m_finderCfg.LRTmode);
67
68 // option that allows for adding custom eta binning (default is at 0.2)
69 if (m_finderCfg.etaBinOverride != 0.0f) {
70
71 m_connector->m_etaBin = m_finderCfg.etaBinOverride;
72 }
73 }
74
75 //create geoemtry object that holds allowed pairing of allowed eta regions in each layer
76 m_gbtsGeo = std::make_unique<Acts::Experimental::GbtsGeometry>( m_layerGeometry, m_connector);
77
78 return StatusCode::SUCCESS;
79 }
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_FATAL(x)
#define ATH_MSG_DEBUG(x)
std::unique_ptr< const Acts::Logger > makeActsAthenaLogger(IMessageSvc *svc, const std::string &name, int level, std::optional< std::string > parent_name)
std::unique_ptr< Acts::Experimental::GbtsConnector > m_connector
std::unique_ptr< const Acts::Logger > m_logger
logging instance
void printSeedFinderGbtsConfig(const Acts::Experimental::SeedFinderGbtsConfig &cfg)
ToolHandle< ITrigL2LayerNumberTool > m_layerNumberTool
l
Printing final latex table to .tex output file.

◆ logger()

const Acts::Logger & ActsTrk::GbtsSeedingTool::logger ( ) const
inlineprivate

Private access to the logger.

Definition at line 135 of file GbtsSeedingTool.h.

135{ return *m_logger; }

◆ prepareConfiguration()

StatusCode ActsTrk::GbtsSeedingTool::prepareConfiguration ( )
private

Definition at line 188 of file GbtsSeedingTool.cxx.

189 {
190
191 m_finderCfg.LRTmode = m_LRTmode;
192 m_finderCfg.useML = m_useML;
193 m_finderCfg.matchBeforeCreate = m_matchBeforeCreate;
194 m_finderCfg.useOldTunings = m_useOldTunings;
195 m_finderCfg.etaBinOverride = m_etaBinOverride;
196 m_finderCfg.BeamSpotCorrection = m_BeamSpotCorrection;
197 m_finderCfg.sigma_t = m_sigma_t;
198 m_finderCfg.sigma_w = m_sigma_w;
199 m_finderCfg.sigmaMS = m_sigmaMS;
200 m_finderCfg.sigma_x = m_sigma_x;
201 m_finderCfg.sigma_y = m_sigma_y;
202 m_finderCfg.weight_x = m_weight_x;
203 m_finderCfg.weight_y = m_weight_y;
204 m_finderCfg.maxDChi2_x = m_maxDChi2_x;
205 m_finderCfg.maxDChi2_y = m_maxDChi2_y;
206 m_finderCfg.add_hit = m_add_hit;
207 m_finderCfg.minPt = m_minPt;
208 m_finderCfg.phiSliceWidth = m_phiSliceWidth ;
209 m_finderCfg.nMaxPhiSlice = m_nMaxPhiSlice;
210 m_finderCfg.useML = m_useML;
211 m_finderCfg.ConnectorInputFile = m_ConnectorInputFile;
212 m_finderCfg.useEtaBinning = m_useEtaBinning;
213 m_finderCfg.doubletFilterRZ = m_doubletFilterRZ ;
214 m_finderCfg.minDeltaRadius = m_minDeltaRadius;
215 m_finderCfg.nMaxEdges = m_nMaxEdges;
216 m_finderCfg.tau_ratio_cut = m_tau_ratio_cut;
217 m_finderCfg.ptCoeff = m_ptCoeff;
218 m_finderCfg = m_finderCfg.toInternalUnits();
219
220
221 return StatusCode::SUCCESS;
222 }
Gaudi::Property< float > m_tau_ratio_cut
Gaudi::Property< bool > m_doubletFilterRZ
Gaudi::Property< float > m_sigma_x
Gaudi::Property< int > m_nMaxEdges
Gaudi::Property< float > m_add_hit
Gaudi::Property< float > m_maxDChi2_x
Gaudi::Property< float > m_minPt
Gaudi::Property< bool > m_BeamSpotCorrection
Gaudi::Property< double > m_ptCoeff
Gaudi::Property< float > m_sigmaMS
Gaudi::Property< bool > m_LRTmode
Gaudi::Property< float > m_nMaxPhiSlice
Gaudi::Property< bool > m_useOldTunings
Gaudi::Property< float > m_sigma_y
Gaudi::Property< float > m_weight_x
Gaudi::Property< float > m_sigma_t
Gaudi::Property< bool > m_useML
Gaudi::Property< float > m_minDeltaRadius
Gaudi::Property< float > m_weight_y
Gaudi::Property< bool > m_useEtaBinning
Gaudi::Property< bool > m_matchBeforeCreate
Gaudi::Property< float > m_phiSliceWidth
Gaudi::Property< std::string > m_ConnectorInputFile
Gaudi::Property< float > m_sigma_w
Gaudi::Property< float > m_etaBinOverride
Gaudi::Property< float > m_maxDChi2_y

◆ printSeedFinderGbtsConfig()

void ActsTrk::GbtsSeedingTool::printSeedFinderGbtsConfig ( const Acts::Experimental::SeedFinderGbtsConfig & cfg)
private

Definition at line 224 of file GbtsSeedingTool.cxx.

224 {
225 ATH_MSG_DEBUG("===== SeedFinderGbtsConfig =====");
226 ATH_MSG_DEBUG( "BeamSpotCorrection: " << cfg.BeamSpotCorrection << " (default: false)");
227 ATH_MSG_DEBUG( "ConnectorInputFile: " << cfg.ConnectorInputFile << " (default: empty string)");
228 ATH_MSG_DEBUG( "LRTmode: " << cfg.LRTmode << " (default: false)");
229 ATH_MSG_DEBUG( "useML: " << cfg.useML << " (default: false)");
230 ATH_MSG_DEBUG( "matchBeforeCreate: " << cfg.matchBeforeCreate << " (default: false)");
231 ATH_MSG_DEBUG( "useOldTunings: " << cfg.useOldTunings << " (default: false)");
232 ATH_MSG_DEBUG( "tau_ratio_cut: " << cfg.tau_ratio_cut << " (default: 0.007)");
233 ATH_MSG_DEBUG( "etaBinOverride: " << cfg.etaBinOverride << " (default: 0.0)");
234 ATH_MSG_DEBUG( "nMaxPhiSlice: " << cfg.nMaxPhiSlice << " (default: 53)");
235 ATH_MSG_DEBUG( "minPt: " << cfg.minPt << " (default: 1000. MeV)");
236 ATH_MSG_DEBUG( "phiSliceWidth: " << cfg.phiSliceWidth << " (default: null)");
237 ATH_MSG_DEBUG( "ptCoeff: " << cfg.ptCoeff << " (default: 0.29955)");
238 ATH_MSG_DEBUG( "useEtaBinning: " << cfg.useEtaBinning << " (default: true)");
239 ATH_MSG_DEBUG( "doubletFilterRZ: " << cfg.doubletFilterRZ << " (default: true)");
240 ATH_MSG_DEBUG( "nMaxEdges: " << cfg.nMaxEdges << " (default: 2000000)");
241 ATH_MSG_DEBUG( "minDeltaRadius: " << cfg.minDeltaRadius << " (default: 2.0)");
242 ATH_MSG_DEBUG( "sigma_t: " << cfg.sigma_t << " (default: 0.0003)");
243 ATH_MSG_DEBUG( "sigma_w: " << cfg.sigma_w << " (default: 0.00009)");
244 ATH_MSG_DEBUG( "sigmaMS: " << cfg.sigmaMS << " (default: 0.016)");
245 ATH_MSG_DEBUG( "sigma_x: " << cfg.sigma_x << " (default: 0.25)");
246 ATH_MSG_DEBUG( "sigma_y: " << cfg.sigma_y << " (default: 2.5)");
247 ATH_MSG_DEBUG( "weight_x: " << cfg.weight_x << " (default: 0.5)");
248 ATH_MSG_DEBUG( "weight_y: " << cfg.weight_y << " (default: 0.5)");
249 ATH_MSG_DEBUG( "maxDChi2_x: " << cfg.maxDChi2_x << " (default: 60.0)");
250 ATH_MSG_DEBUG( "maxDChi2_y: " << cfg.maxDChi2_y << " (default: 60.0)");
251 ATH_MSG_DEBUG( "add_hit: " << cfg.add_hit << " (default: 14.0)");
252
253
254}

Member Data Documentation

◆ m_add_hit

Gaudi::Property<float> ActsTrk::GbtsSeedingTool::m_add_hit {this, "add_hit", 14.0, "reward added to tracks for each accepted hit before chi2"}
private

Definition at line 130 of file GbtsSeedingTool.h.

130{this, "add_hit", 14.0, "reward added to tracks for each accepted hit before chi2"};

◆ m_are_pixels

std::vector<bool> ActsTrk::GbtsSeedingTool::m_are_pixels
private

Definition at line 98 of file GbtsSeedingTool.h.

◆ m_BeamSpotCorrection

Gaudi::Property<bool> ActsTrk::GbtsSeedingTool::m_BeamSpotCorrection {this, "beamSpotCorrection", true, "apply primary vertex corrections to spacepoints"}
private

Definition at line 110 of file GbtsSeedingTool.h.

110{this, "beamSpotCorrection", true, "apply primary vertex corrections to spacepoints"};

◆ m_connector

std::unique_ptr<Acts::Experimental::GbtsConnector> ActsTrk::GbtsSeedingTool::m_connector = nullptr
private

Definition at line 83 of file GbtsSeedingTool.h.

◆ m_ConnectorInputFile

Gaudi::Property<std::string> ActsTrk::GbtsSeedingTool::m_ConnectorInputFile {this, "ConnectorInputFile","binTables_ITK_RUN4.txt", "input file for making connector object"}
private

Definition at line 101 of file GbtsSeedingTool.h.

101{this, "ConnectorInputFile","binTables_ITK_RUN4.txt", "input file for making connector object"};

◆ m_doubletFilterRZ

Gaudi::Property<bool> ActsTrk::GbtsSeedingTool::m_doubletFilterRZ {this, "doubletFilterRZ",true, "bool applies new Z cuts on doublets"}
private

Definition at line 116 of file GbtsSeedingTool.h.

116{this, "doubletFilterRZ",true, "bool applies new Z cuts on doublets"};

◆ m_etaBinOverride

Gaudi::Property<float> ActsTrk::GbtsSeedingTool::m_etaBinOverride {this, "etaBinOverride", 0.0f, "apply custom binning for connections"}
private

Definition at line 108 of file GbtsSeedingTool.h.

108{this, "etaBinOverride", 0.0f, "apply custom binning for connections"};

◆ m_finderCfg

Acts::Experimental::SeedFinderGbtsConfig ActsTrk::GbtsSeedingTool::m_finderCfg
private

Definition at line 85 of file GbtsSeedingTool.h.

◆ m_gbtsGeo

std::unique_ptr<Acts::Experimental::GbtsGeometry> ActsTrk::GbtsSeedingTool::m_gbtsGeo = nullptr
private

Definition at line 87 of file GbtsSeedingTool.h.

◆ m_layerGeometry

std::vector<Acts::Experimental::TrigInDetSiLayer> ActsTrk::GbtsSeedingTool::m_layerGeometry {}
private

Definition at line 89 of file GbtsSeedingTool.h.

89{}; //layer objects used by GBTS

◆ m_layerNumberTool

ToolHandle<ITrigL2LayerNumberTool> ActsTrk::GbtsSeedingTool::m_layerNumberTool {this, "layerNumberTool", "TrigL2LayerNumberToolITk"}
private

Definition at line 92 of file GbtsSeedingTool.h.

92{this, "layerNumberTool", "TrigL2LayerNumberToolITk"};

◆ m_logger

std::unique_ptr<const Acts::Logger> ActsTrk::GbtsSeedingTool::m_logger {nullptr}
private

logging instance

Definition at line 137 of file GbtsSeedingTool.h.

137{nullptr};

◆ m_LRTmode

Gaudi::Property<bool> ActsTrk::GbtsSeedingTool::m_LRTmode {this, "LRTmode", false, "whether strip or pixel hits are used"}
private

Definition at line 103 of file GbtsSeedingTool.h.

103{this, "LRTmode", false, "whether strip or pixel hits are used"};

◆ m_matchBeforeCreate

Gaudi::Property<bool> ActsTrk::GbtsSeedingTool::m_matchBeforeCreate {this, "matchBeforeCreate", false, "need to check what this does"}
private

Definition at line 105 of file GbtsSeedingTool.h.

105{this, "matchBeforeCreate", false, "need to check what this does"};

◆ m_maxDChi2_x

Gaudi::Property<float> ActsTrk::GbtsSeedingTool::m_maxDChi2_x {this, "maxDChi2_x", 60.0, "gate threshold for chi2 test"}
private

Definition at line 128 of file GbtsSeedingTool.h.

128{this, "maxDChi2_x", 60.0, "gate threshold for chi2 test"}; //was 35.0

◆ m_maxDChi2_y

Gaudi::Property<float> ActsTrk::GbtsSeedingTool::m_maxDChi2_y {this, "maxDChi2_y", 60.0, "gate threshold for chi2 test"}
private

Definition at line 129 of file GbtsSeedingTool.h.

129{this, "maxDChi2_y", 60.0, "gate threshold for chi2 test"};//was 31.0

◆ m_minDeltaRadius

Gaudi::Property<float> ActsTrk::GbtsSeedingTool::m_minDeltaRadius {this, "minDeltaRadius",2.0, " min dr for doublet"}
private

Definition at line 117 of file GbtsSeedingTool.h.

117{this, "minDeltaRadius",2.0, " min dr for doublet"};

◆ m_minPt

Gaudi::Property<float> ActsTrk::GbtsSeedingTool::m_minPt {this, "minPt", 1000.0, "Lower cutoff for seeds"}
private

Definition at line 111 of file GbtsSeedingTool.h.

111{this, "minPt", 1000.0, "Lower cutoff for seeds"};

◆ m_nMaxEdges

Gaudi::Property<int> ActsTrk::GbtsSeedingTool::m_nMaxEdges {this, "MaxEdges",3000000, " max number of Gbts edges/doublets"}
private

Definition at line 118 of file GbtsSeedingTool.h.

118{this, "MaxEdges",3000000, " max number of Gbts edges/doublets"};

◆ m_nMaxPhiSlice

Gaudi::Property<float> ActsTrk::GbtsSeedingTool::m_nMaxPhiSlice {this, "nMaxPhiSlice",53, "used to calculate phi slices"}
private

Definition at line 109 of file GbtsSeedingTool.h.

109{this, "nMaxPhiSlice",53, "used to calculate phi slices"};

◆ m_phiSliceWidth

Gaudi::Property<float> ActsTrk::GbtsSeedingTool::m_phiSliceWidth {this, "phiSliceWidth",0, "initialised in loadSpacePoints function"}
private

Definition at line 112 of file GbtsSeedingTool.h.

112{this, "phiSliceWidth",0, "initialised in loadSpacePoints function"};

◆ m_pix_h2l

const std::vector<short>* ActsTrk::GbtsSeedingTool::m_pix_h2l {nullptr}
private

Definition at line 97 of file GbtsSeedingTool.h.

97{nullptr};

◆ m_ptCoeff

Gaudi::Property<double> ActsTrk::GbtsSeedingTool::m_ptCoeff {this, "ptCoeff", 0.29997 * 1.9972 / 2.0, "~0.3*B/2 - assumes nominal field of 2*T"}
private

Definition at line 119 of file GbtsSeedingTool.h.

119{this, "ptCoeff", 0.29997 * 1.9972 / 2.0, "~0.3*B/2 - assumes nominal field of 2*T"};

◆ m_sct_h2l

const std::vector<short>* ActsTrk::GbtsSeedingTool::m_sct_h2l {nullptr}
private

Definition at line 96 of file GbtsSeedingTool.h.

96{nullptr};

◆ m_sigma_t

Gaudi::Property<float> ActsTrk::GbtsSeedingTool::m_sigma_t {this, "sigma_t", 0.0003, "process noise on transverse slope"}
private

Definition at line 121 of file GbtsSeedingTool.h.

121{this, "sigma_t", 0.0003, "process noise on transverse slope"};

◆ m_sigma_w

Gaudi::Property<float> ActsTrk::GbtsSeedingTool::m_sigma_w {this, "sigma_w", 0.00009, "process noise on transverse curvature"}
private

Definition at line 122 of file GbtsSeedingTool.h.

122{this, "sigma_w", 0.00009, "process noise on transverse curvature"};

◆ m_sigma_x

Gaudi::Property<float> ActsTrk::GbtsSeedingTool::m_sigma_x {this, "sigma_x", 0.25, "measurement resolution for residual on y direction"}
private

Definition at line 124 of file GbtsSeedingTool.h.

124{this, "sigma_x", 0.25, "measurement resolution for residual on y direction"}; //was 0.22

◆ m_sigma_y

Gaudi::Property<float> ActsTrk::GbtsSeedingTool::m_sigma_y {this, "sigma_y", 2.5, "measurement resolution on r-z plane"}
private

Definition at line 125 of file GbtsSeedingTool.h.

125{this, "sigma_y", 2.5, "measurement resolution on r-z plane"};// was 1.7

◆ m_sigmaMS

Gaudi::Property<float> ActsTrk::GbtsSeedingTool::m_sigmaMS {this, "sigmaMS", 0.016, "process noise from multiple scattering"}
private

Definition at line 123 of file GbtsSeedingTool.h.

123{this, "sigmaMS", 0.016, "process noise from multiple scattering"};

◆ m_tau_ratio_cut

Gaudi::Property<float> ActsTrk::GbtsSeedingTool::m_tau_ratio_cut {this, "cut_tau_ratio_max",0.007, "tau cut for doublets and triplets"}
private

Definition at line 107 of file GbtsSeedingTool.h.

107{this, "cut_tau_ratio_max",0.007, "tau cut for doublets and triplets"};

◆ m_useEtaBinning

Gaudi::Property<bool> ActsTrk::GbtsSeedingTool::m_useEtaBinning {this, "useEtaBinning",true, "bool to use eta binning from geometry structure"}
private

Definition at line 115 of file GbtsSeedingTool.h.

115{this, "useEtaBinning",true, "bool to use eta binning from geometry structure"};

◆ m_useML

Gaudi::Property<bool> ActsTrk::GbtsSeedingTool::m_useML {this, "useML", true, "use the cluster width of the spacepoint"}
private

Definition at line 104 of file GbtsSeedingTool.h.

104{this, "useML", true, "use the cluster width of the spacepoint"};

◆ m_useOldTunings

Gaudi::Property<bool> ActsTrk::GbtsSeedingTool::m_useOldTunings {this, "useOldTunings", false, "use the tunings for 900MeV cut"}
private

Definition at line 106 of file GbtsSeedingTool.h.

106{this, "useOldTunings", false, "use the tunings for 900MeV cut"};

◆ m_weight_x

Gaudi::Property<float> ActsTrk::GbtsSeedingTool::m_weight_x {this, "weight_x", 0.5, "penalty weight for track"}
private

Definition at line 126 of file GbtsSeedingTool.h.

126{this, "weight_x", 0.5, "penalty weight for track"};

◆ m_weight_y

Gaudi::Property<float> ActsTrk::GbtsSeedingTool::m_weight_y {this, "weight_y", 0.5, "penalty weight for track"}
private

Definition at line 127 of file GbtsSeedingTool.h.

127{this, "weight_y", 0.5, "penalty weight for track"};

The documentation for this class was generated from the following files: