Skip to content

Commit 24a5232

Browse files
committed
fix bug in import of "time map" LANSCE data
1 parent f970844 commit 24a5232

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GSASII/imports/G2pwd_fxye.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ def Tmap2TOF(TMap,clockWd):
270270
TOF += [T+Step*(i-Tch) for i in range(Tch,tch)]
271271
Tch,T,Step = tmap
272272
TOF = np.array(TOF)*clockWd
273-
return TOF
273+
return TOF[:-1] #code makes extra step
274274

275275
Banks = []
276276
Pos = []

0 commit comments

Comments
 (0)