2015-03-02 13:58:00 +01:00
|
|
|
use bitmasks
|
|
|
|
BEGIN_SHELL [ /usr/bin/env python ]
|
|
|
|
from generate_h_apply import *
|
|
|
|
|
2015-04-09 10:57:15 +02:00
|
|
|
s = H_apply("CAS_SD")
|
2016-09-30 15:12:17 +02:00
|
|
|
s.unset_skip()
|
2015-04-09 10:57:15 +02:00
|
|
|
print s
|
|
|
|
|
2015-07-03 19:19:44 +02:00
|
|
|
s = H_apply("CAS_SD_selected_no_skip")
|
|
|
|
s.set_selection_pt2("epstein_nesbet_2x2")
|
|
|
|
s.unset_skip()
|
|
|
|
print s
|
|
|
|
|
2015-04-09 10:57:15 +02:00
|
|
|
s = H_apply("CAS_SD_selected")
|
2015-03-02 13:58:00 +01:00
|
|
|
s.set_selection_pt2("epstein_nesbet_2x2")
|
2016-09-30 15:12:17 +02:00
|
|
|
s.unset_skip()
|
2015-03-02 13:58:00 +01:00
|
|
|
print s
|
|
|
|
|
2015-04-09 10:57:15 +02:00
|
|
|
s = H_apply("CAS_SD_PT2")
|
2015-03-02 13:58:00 +01:00
|
|
|
s.set_perturbation("epstein_nesbet_2x2")
|
|
|
|
print s
|
|
|
|
|
2015-11-25 11:49:42 +01:00
|
|
|
|
|
|
|
s = H_apply("CAS_S",do_double_exc=False)
|
|
|
|
print s
|
|
|
|
|
|
|
|
s = H_apply("CAS_S_selected",do_double_exc=False)
|
|
|
|
s.set_selection_pt2("epstein_nesbet_2x2")
|
2016-09-30 15:12:17 +02:00
|
|
|
s.unset_skip()
|
2015-11-25 11:49:42 +01:00
|
|
|
print s
|
|
|
|
|
|
|
|
s = H_apply("CAS_S_PT2",do_double_exc=False)
|
|
|
|
s.set_perturbation("epstein_nesbet_2x2")
|
|
|
|
print s
|
|
|
|
|
2015-03-02 13:58:00 +01:00
|
|
|
END_SHELL
|
|
|
|
|