Skip to content
Snippets Groups Projects
Commit 1f3e12ad authored by Powers, Peter M.'s avatar Powers, Peter M.
Browse files

adjusted mean branch id

parent 577b1db1
No related branches found
No related tags found
1 merge request!420PRVI GMM epistemic uncertainty
...@@ -443,10 +443,10 @@ public abstract class UsgsPrviBackbone2025 implements GroundMotionModel { ...@@ -443,10 +443,10 @@ public abstract class UsgsPrviBackbone2025 implements GroundMotionModel {
LogicTree.Builder<GroundMotion> tree = LogicTree.builder("gmm-tree-prvi-" + name); LogicTree.Builder<GroundMotion> tree = LogicTree.builder("gmm-tree-prvi-" + name);
for (Branch<GroundMotion> b : base) { for (Branch<GroundMotion> b : base) {
tree.addBranch(MODEL_BASE_ID + " : " + b.id(), b.value(), b.weight() * 0.5); tree.addBranch(MODEL_BASE_ID + "-" + b.id(), b.value(), b.weight() * 0.5);
} }
for (Branch<GroundMotion> b : adj) { for (Branch<GroundMotion> b : adj) {
tree.addBranch(MODEL_ADJUST_ID + " : " + b.id(), b.value(), b.weight() * 0.5); tree.addBranch(MODEL_ADJUST_ID + "-" + b.id(), b.value(), b.weight() * 0.5);
} }
return tree.build(); return tree.build();
} }
......
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