Skip to content

Commit deb1df3

Browse files
authored
Merge pull request QMCPACK#5506 from kayahans/bug/multidet
Correct h5 handle in PySCF converter for multi determinant calculations
2 parents b9526c1 + 82d2e0c commit deb1df3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/QMCTools/PyscfToQmcpack.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ def make_multidet(cell, mf, title, h5_handle):
608608
dets_b.append(chunks_b)
609609
coeffs.append(i[0])
610610
H5_qmcpack_multidet = h5py.File(title+'_multidet.h5','w')
611-
groupApp=h5_handle.create_group("MultiDet")
611+
groupApp=H5_qmcpack_multidet.create_group("MultiDet")
612612
dets_a = numpy.array(dets_a)
613613
dets_b = numpy.array(dets_b)
614614

0 commit comments

Comments
 (0)