DLG4::VolumeBuilders
A fluent interface for Geant4 geometry definition.
Loading...
Searching...
No Matches
PlacementNameRegistry.cc
Go to the documentation of this file.
1//
2// Created by Douglas S. Leonard on 6/17/25. All rights Reserved
3// See related files for license, if any is provided.
4//
5
7
8#include <mutex>
9#include <string>
10#include <unordered_map>
11
12namespace DLG4 {
13 namespace VolumeBuilders {
14 // Define the static members with proper class scope
15 std::unordered_map<std::string, int> PlacementNameRegistry::name_counts_;
16 std::mutex PlacementNameRegistry::registry_mutex_;
17 } // VolumeBuilders
18} // DLG4