Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nshmp-lib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ghsc
National Seismic Hazard Model Project
nshmp-lib
Commits
10d09737
Commit
10d09737
authored
4 months ago
by
Powers, Peter M.
Browse files
Options
Downloads
Patches
Plain Diff
removed unused sysRupSet builder fields and methods
parent
84561f73
No related branches found
No related tags found
1 merge request
!432
General edits and improvements
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/gov/usgs/earthquake/nshmp/model/SystemRuptureSet.java
+0
-23
0 additions, 23 deletions
...ava/gov/usgs/earthquake/nshmp/model/SystemRuptureSet.java
with
0 additions
and
23 deletions
src/main/java/gov/usgs/earthquake/nshmp/model/SystemRuptureSet.java
+
0
−
23
View file @
10d09737
...
@@ -473,17 +473,8 @@ public class SystemRuptureSet extends AbstractRuptureSet<SystemRuptureSet.System
...
@@ -473,17 +473,8 @@ public class SystemRuptureSet extends AbstractRuptureSet<SystemRuptureSet.System
private
Map
<
Integer
,
SystemSection
>
sectionMap
;
private
Map
<
Integer
,
SystemSection
>
sectionMap
;
private
Path
ruptures
;
private
Path
ruptures
;
/* Unfiltered UCERF3: FM31 = 253,706 FM32 = 305,709 */
static
final
int
RUP_SET_SIZE
=
306000
;
static
final
String
ID
=
"SystemRuptureSet.Builder"
;
static
final
String
ID
=
"SystemRuptureSet.Builder"
;
private
List
<
GriddedSurface
>
sections
;
private
List
<
String
>
sectionNames
;
private
double
mMin
=
Double
.
POSITIVE_INFINITY
;
private
double
mMax
=
Double
.
NEGATIVE_INFINITY
;
private
Builder
(
SourceType
type
)
{
private
Builder
(
SourceType
type
)
{
super
(
type
);
super
(
type
);
}
}
...
@@ -520,20 +511,6 @@ public class SystemRuptureSet extends AbstractRuptureSet<SystemRuptureSet.System
...
@@ -520,20 +511,6 @@ public class SystemRuptureSet extends AbstractRuptureSet<SystemRuptureSet.System
return
this
;
return
this
;
}
}
Builder
sections
(
List
<
GriddedSurface
>
sections
)
{
checkNotNull
(
sections
,
"Section surface list is null"
);
checkArgument
(
sections
.
size
()
>
0
,
"Section surface list is empty"
);
this
.
sections
=
sections
;
return
this
;
}
Builder
sectionNames
(
List
<
String
>
names
)
{
checkNotNull
(
names
,
"Section name list is null"
);
checkArgument
(
names
.
size
()
>
0
,
"Section name list is empty"
);
this
.
sectionNames
=
names
;
return
this
;
}
private
void
validateAndInit
(
String
label
)
{
private
void
validateAndInit
(
String
label
)
{
validateState
(
label
);
validateState
(
label
);
checkNotNull
(
data
,
"%s model data"
,
label
);
checkNotNull
(
data
,
"%s model data"
,
label
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment