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.filter_only_1h1p()
|
|
|
|
print s
|
|
|
|
|
2017-10-27 12:20:00 +02:00
|
|
|
|
|
|
|
s = H_apply("just_2p")
|
|
|
|
s.set_selection_pt2("epstein_nesbet_2x2")
|
|
|
|
s.filter_only_2p()
|
|
|
|
print s
|
|
|
|
|
|
|
|
|
|
|
|
s = H_apply("just_1p")
|
|
|
|
s.set_selection_pt2("epstein_nesbet_2x2")
|
|
|
|
s.filter_only_1p()
|
|
|
|
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.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")
|
|
|
|
print s
|
|
|
|
|
|
|
|
END_SHELL
|
|
|
|
|