Skip to content
Snippets Groups Projects
Commit 74b6e682 authored by Johannes Junggeburth's avatar Johannes Junggeburth :dog2:
Browse files

Use GeoIdentifier & nametag from deduplicator



(cherry picked from commit 01c836e5)

Co-authored-by: Johannes Junggeburth's avatarJohannes Josef Junggeburth <johannes.josef.junggeburth@cern.ch>
parent 40545d5e
No related branches found
No related tags found
1 merge request!402Use GeoIdentifier & nametag from deduplicator
Pipeline #9959511 passed
......@@ -50,7 +50,7 @@ void AssemblyProcessor::process(const DOMElement *element, GmxUtil &gmxUtil, Geo
//
// Name
AssemblyStore& store {m_map[name]};
physVolName = make_intrusive<GeoNameTag>(name);
physVolName = nameTag(name);
store.name = physVolName;
} else { // Already in the registry; use it.
physVolName = entry->second.name;
......@@ -58,7 +58,7 @@ void AssemblyProcessor::process(const DOMElement *element, GmxUtil &gmxUtil, Geo
lv = gmxUtil.getAssemblyLV();
toAdd.push_back(physVolName);
gmxUtil.positionIndex.setCopyNo(m_map[name].id);
toAdd.push_back(make_intrusive<GeoIdentifierTag>(m_map[name].id++));
toAdd.push_back(geoId(m_map[name].id++));
//
// Process the assembly's children
//
......
......@@ -115,7 +115,7 @@ void LogvolProcessor::process(const DOMElement *element, GmxUtil &gmxUtil, GeoNo
//
LogVolStore* store{&m_map[name]};
if(isNamed) {
nameTag_physVolName = make_intrusive<GeoNameTag>(name);
nameTag_physVolName = nameTag(name);
store->name = nameTag_physVolName;
}
//
......@@ -228,15 +228,15 @@ void LogvolProcessor::process(const DOMElement *element, GmxUtil &gmxUtil, GeoNo
newName.append("_");
newName.append(std::to_string(index_i.second));
}
nameTag_physChildVolName = make_intrusive<GeoNameTag>(newName);//Make sensitive always have a name, to extra Id information from
nameTag_physChildVolName = nameTag(newName);//Make sensitive always have a name, to extra Id information from
toAdd.push_back(nameTag_physChildVolName);
if(hasIdentifier) { //TODO: check if all "sensitive" volumes must have an identifier. If that's the case, then we can remove this "if" here
toAdd.push_back(make_intrusive<GeoIdentifierTag>(sensId));
toAdd.push_back(geoId(sensId));
}
}
else {
if(hasIdentifier) {
toAdd.push_back(make_intrusive<GeoIdentifierTag>(m_map[name].id)); // Normal copy number
toAdd.push_back(geoId(m_map[name].id)); // Normal copy number
gmxUtil.positionIndex.setCopyNo(m_map[name].id++);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment