feat: add setter for cluster map name#4164
Merged
osbornjd merged 1 commit intosPHENIX-Collaboration:masterfrom Feb 5, 2026
Merged
feat: add setter for cluster map name#4164osbornjd merged 1 commit intosPHENIX-Collaboration:masterfrom
osbornjd merged 1 commit intosPHENIX-Collaboration:masterfrom
Conversation
Contributor
📝 WalkthroughWalkthroughTrackSeedTrackMapConverter now uses a configurable cluster map name instead of a hard-coded "TRKR_CLUSTER" string. A private member variable with default value is introduced, along with a public setter method to allow external configuration of the cluster container lookup key. Changes
Possibly related PRs
✨ Finishing touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Build & test reportReport for commit 83a66dbe76cb5dcb3eaccbe002fac9f171bd2321:
Automatically generated by sPHENIX Jenkins continuous integration |
5 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Adds a cluster map name setter so that only the seed DST can be read in
Types of changes
What kind of change does this PR introduce? (Bug fix, feature, ...)
TODOs (if applicable)
Links to other PRs in macros and calibration repositories (if applicable)
Summary
Motivation / Context
This PR adds configurability for the cluster container lookup in
TrackSeedTrackMapConverter, enabling flexible selection of cluster data sources during track seed to track map conversion. Previously, the cluster container was hardcoded to "TRKR_CLUSTER", limiting users' ability to process alternative cluster containers (e.g., different seed DST inputs).Key Changes
setClusterMapName(const std::string& name)toTrackSeedTrackMapConverterclassm_clusterMapNamewith default value "TRKR_CLUSTER" to maintain backward compatibilitygetNodes()method to usem_clusterMapNamefor cluster container lookup instead of hardcoded stringPotential Risk Areas
Possible Future Improvements
Note on AI-generated analysis: This summary is based on AI analysis of code changes. Readers should verify details against actual PR code and consult with the author regarding specific use cases and DST structure requirements.