whizard is hosted by Hepforge, IPPP Durham

Ticket #250: casc_dec_top.sin

File casc_dec_top.sin, 1.5 KB (added by dwiesler, 14 years ago)

sindarin file w/ strange top decay behaviour, see also the pdf

Line 
1model = SM
2
3process dec_top         = t -> b, E1, n1
4process dec_top2        = t -> b, Wp
5process dec_wplus       = Wp -> E1, n1
6
7process toppair = e1, E1 -> T, t
8process full = e1, E1 -> T, E1, n1, b {$restrictions = "4+5+6~t"}
9
10compile
11
12
13integrate (dec_top, dec_top2, dec_wplus) { iterations = 1:1000 }
14
15sqrts = 500
16beams = e1,E1
17
18integrate (toppair) { iterations = 5:10000, 2:10000 }
19integrate (full)
20
21
22n_events = 100000
23
24$title = "Full process"
25histogram ang_0 (0,3.1415,0.05)
26
27$title = "Factorized process w 3body/spin"
28histogram ang_1 (0,3.1415,0.05)
29
30$title = "Factorized process w 2x2body/spin"
31histogram ang_2 (0,3.1415,0.05)
32
33$title = "Factorized process w 3body/iso"
34histogram ang_3 (0,3.1415,0.05)
35
36$title = "Factorized process w 2x2body/iso"
37histogram ang_4 (0,3.1415,0.05)
38
39simulate (full) {
40  $file_raw = "casct2_dec_full.evx"
41  analysis =
42    record ang_0 (eval Theta [T,E1])
43}
44
45unstable t (dec_top)
46
47simulate (toppair) {
48  $file_raw = "casct2_dec_3b.evx"
49  analysis =
50    record ang_1 (eval Theta [T,E1])
51}
52
53unstable t (dec_top2)
54unstable Wp (dec_wplus)
55
56simulate (toppair) {
57  $file_raw = "casct2_dec_2b.evx"
58  analysis =
59    record ang_2 (eval Theta [T,E1])
60}
61
62?isotropic_decay = true
63unstable t (dec_top)
64
65simulate (toppair) {
66  $file_raw = "casct2_dec_3b_iso.evx"
67  analysis =
68    record ang_3 (eval Theta [T,E1])
69}
70
71?isotropic_decay = true
72unstable t (dec_top2)
73unstable Wp (dec_wplus)
74
75simulate (toppair) {
76  $file_raw = "casct2_dec_2b_iso.evx"
77  analysis =
78    record ang_4 (eval Theta [T,E1])
79}
80
81write_analysis
82$analysis_filename = "casct2_dec"
83write_analysis
84
85
86
87
88