Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zero field all layers #3295

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
2381ace
Put INTT clusters back into fit.
adfrawley Nov 8, 2024
2795a02
Merge branch 'zero_field_vertexer' of github.com:adfrawley/coresoftwa…
adfrawley Nov 8, 2024
6074f10
Merge branch 'master' of https://github.com/sPHENIX-Collaboration/cor…
adfrawley Nov 8, 2024
4f2c5d3
Do not use INTT z in zero field PHSimpleVertexFinder fit.
adfrawley Nov 12, 2024
e396b94
Merge branch 'master' of https://github.com/sPHENIX-Collaboration/cor…
adfrawley Nov 12, 2024
8a03369
Require at least 2 INTT clusters in seed for zero field.
adfrawley Nov 17, 2024
a5be6f6
Merge branch 'master' of https://github.com/sPHENIX-Collaboration/cor…
adfrawley Nov 17, 2024
65691fe
Merge branch 'master' of https://github.com/sPHENIX-Collaboration/cor…
adfrawley Nov 20, 2024
781d19b
Merge branch 'linefit' of github.com:david-stewart/coresoftware into …
adfrawley Nov 20, 2024
595d3ae
Modify HelicalFitter to optionally use SvtxSeeds, silicon seeds or TP…
adfrawley Nov 21, 2024
cd2723e
Merge branch 'linefit' of github.com:david-stewart/coresoftware into …
adfrawley Nov 21, 2024
68bf181
Diagnostic output changes mostly.
adfrawley Dec 3, 2024
f5a68cc
Merge branch 'master' of https://github.com/sPHENIX-Collaboration/cor…
adfrawley Dec 3, 2024
730ff2a
Fixed bug in AlignmentDefs calculation of global label for TPC.
adfrawley Dec 4, 2024
af6502a
Merge branch 'master' of https://github.com/sPHENIX-Collaboration/cor…
adfrawley Dec 5, 2024
4a6190a
Require nintt > 1 and handle crossing properly for full tracks in Hel…
adfrawley Dec 7, 2024
733120e
Merge branch 'master' of https://github.com/sPHENIX-Collaboration/cor…
adfrawley Dec 7, 2024
dcfba43
Merge branch 'master' of https://github.com/sPHENIX-Collaboration/cor…
adfrawley Dec 10, 2024
5696c9b
Fix Jenkins complaint. Quiet the diagnostic output.
adfrawley Dec 11, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions offline/packages/TrackerMillepedeAlignment/AlignmentDefs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -272,14 +272,20 @@ int AlignmentDefs::getLabelBase(Acts::GeometryIdentifier id, TrkrDefs::cluskey c
}
else if (layer > 6 && layer < 55)
{
unsigned int sensor = id.sensitive() - 1; // Acts starts at 1
// unsigned int sensor = id.sensitive() - 1; // Acts starts at 1

if (group == 8)
{
// want every hitset (layer, sector, side) to have a separate label
// each group of 12 subsurfaces (sensors) is in a single hitset
int hitset = sensor / 12; // 0-11 on side 0, 12-23 on side 1
label_base += layer * 1000000 + hitset * 10000;
int side = TpcDefs::getSide(cluskey);
int sector = TpcDefs::getSectorId(cluskey);
int hitset_index = sector + side * 12;
label_base += layer * 1000000 + hitset_index * 10000;

// std::cout << " label base = " << label_base << " layer " << layer << " hitset_index " << hitset_index
// << " sector " << sector << " side " << side << " sensor " << sensor << std::endl;

return label_base;
}
if (group == 9)
Expand Down
Loading