10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-29 08:24:51 +02:00
quantum_package/plugins/All_singles/H_apply.irp.f

25 lines
458 B
Fortran
Raw Normal View History

2016-02-16 11:26:24 +01:00
use bitmasks
BEGIN_SHELL [ /usr/bin/env python ]
from generate_h_apply import *
s = H_apply("just_1h_1p")
s.set_selection_pt2("epstein_nesbet_2x2")
s.unset_skip()
s.filter_only_1h1p()
print s
2016-07-16 16:09:50 +02:00
s = H_apply("just_1h_1p_singles",do_double_exc=False)
s.set_selection_pt2("epstein_nesbet_2x2")
s.unset_skip()
s.filter_only_1h1p()
print s
2016-03-11 23:27:39 +01:00
s = H_apply("just_mono",do_double_exc=False)
2016-02-16 11:26:24 +01:00
s.set_selection_pt2("epstein_nesbet_2x2")
s.unset_skip()
print s
END_SHELL