Skip to content

Commit 3288cbf

Browse files
committed
version number and README updates
1 parent 4ffbd0e commit 3288cbf

2 files changed

Lines changed: 24 additions & 2 deletions

File tree

README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ from spyral import (
5151
DetectorParameters,
5252
ClusterParameters,
5353
OverlapJoinParameters,
54+
TripclustParameters,
5455
SolverParameters,
5556
EstimateParameters,
5657
DEFAULT_MAP,
@@ -114,6 +115,26 @@ cluster_params = ClusterParameters(
114115
),
115116
continuity_join=None,
116117
outlier_scale_factor=0.05,
118+
tc_params=TripclustParameters(
119+
r=2,
120+
rdnn=True,
121+
k=19,
122+
n=2,
123+
a=0.01,
124+
s=0.3,
125+
sdnn=True,
126+
t=0.0,
127+
tauto=True,
128+
dmax=0.0,
129+
dmax_dnn=False,
130+
ordered=True,
131+
link=0,
132+
m=50,
133+
postprocess=False,
134+
min_depth=25,
135+
),
136+
joining=False,
137+
cleaning=False,
117138
)
118139

119140
estimate_params = EstimateParameters(

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
[project]
22
name = "attpc_spyral"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
description = "AT-TPC analysis pipeline"
55
authors = [
66
{name = "gwm17", email = "gordonmccann215@gmail.com"},
77
{name = "turinath", email = "turi@frib.msu.edu"},
8+
{name = "DBazin", email = "bazin@frib.msu.edu"},
89
]
910
dependencies = [
10-
"spyral-utils>=2.0.0",
11+
"spyral-utils>=2.1.0",
1112
"contourpy>=1.2.1",
1213
"h5py>=3.11.0",
1314
"lmfit>=1.3.0",

0 commit comments

Comments
 (0)