Skip to content

Commit

Permalink
Code format.
Browse files Browse the repository at this point in the history
  • Loading branch information
aehart committed Feb 3, 2025
1 parent fa94eea commit 9af9b97
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion L1Trigger/TrackFindingTracklet/src/ProcessBase.cc
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ unsigned int ProcessBase::getISeed(const std::string& name) {
pos = name1.find('_');
std::string name2 = name1.substr(0, pos);

unordered_map<string, unsigned int> seedmap = {{"AAAA", 0}, {"BBBB", 1}, {"L3L4L2", 8}, {"L5L6L4", 9}, {"L2L3D1", 10}, {"D1D2L2", 11}};
unordered_map<string, unsigned int> seedmap = {
{"AAAA", 0}, {"BBBB", 1}, {"L3L4L2", 8}, {"L5L6L4", 9}, {"L2L3D1", 10}, {"D1D2L2", 11}};
auto found = seedmap.find(name2);
if (found != seedmap.end())
return found->second;
Expand Down

0 comments on commit 9af9b97

Please sign in to comment.