Skip to content
Snippets Groups Projects
Commit 6e777bb9 authored by Eoin Clerkin's avatar Eoin Clerkin
Browse files

Introduce md5sums

output for record and checking. Small change
to exisitng macro.
parent c190d53f
No related branches found
No related tags found
2 merge requests!246trd v23 graphs,!243output md5sums
Pipeline #25742 passed
......@@ -157,3 +157,17 @@ InformCodeOwners:
- git fetch upstream
- ci_scripts/inform_codeowners.sh upstream
Md5Sums:
stage: finalise
image: alpine
only:
refs:
- merge_requests
tags:
- docker
script:
- find . -iname '*.geo.root' | xargs md5sum
......@@ -97,6 +97,7 @@ void scan_geometry(const char* fileName = "test.geo.root")
//node[j]->GetMotherVolume()->Print();
std::cout << "Shape: ";
node[j]->GetVolume()->GetShape()->Print();
std::cout << node[j]->GetVolume()->GetShape()->GetName() << std::endl;
std::cout << "Medium: ";
med = node[j]->GetMedium();
med->Print();
......@@ -109,9 +110,9 @@ void scan_geometry(const char* fileName = "test.geo.root")
fprintf(graph, "%s (%s) -> %s (%s) \n",
node[j]->GetMotherVolume()->GetName(),
node[j]->GetMotherVolume()->GetName(),
node[j]->GetMotherVolume()->GetMaterial()->GetName(),
node[j]->GetVolume()->GetName(),
node[j]->GetVolume()->GetName()
node[j]->GetVolume()->GetMaterial()->GetName()
);
if (num_array[j + 1] > 0) {
......
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