whizard is hosted by Hepforge, IPPP Durham

ExampleCascadeDecays: casc_dec.sin

File casc_dec.sin, 2.9 KB (added by Juergen Reuter, 13 years ago)
Line 
1# $Id: casc_dec.sin 2272 2010-04-09 16:43:37Z kilian $
2# Simple complete physics example: SUSY cascade decay
3########################################################################
4#
5# Copyright (C) 1999-2011 by
6#     Wolfgang Kilian <kilian@physik.uni-siegen.de>
7#     Thorsten Ohl <ohl@physik.uni-wuerzburg.de>
8#     Juergen Reuter <juergen.reuter@desy.de>
9#     Christian Speckner <christian.speckner@physik.uni-freiburg.de>
10#
11# WHIZARD is free software; you can redistribute it and/or modify it
12# under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version 2, or (at your option)
14# any later version.
15#
16# WHIZARD is distributed in the hope that it will be useful, but
17# WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24#
25########################################################################
26
27model = MSSM
28
29process dec_su_q        = su1 => u, neu2
30process dec_neu_sl2     = neu2 => SE12, e1
31
32process susybg = u,U => SU1, su1
33process full = u, U => SU1, u, e1, SE12
34
35compile
36
37?slha_read_decays = true
38read_slha("sps1ap_decays.slha")
39
40integrate (dec_su_q, dec_neu_sl2) { iterations = 1:1000 }
41
42sqrts = 14000
43beams = p, p => lhapdf
44
45cuts = all Pt > 10 GeV [u]
46
47integrate (susybg) { iterations = 5:10000, 2:10000 }
48integrate (full)
49
50n_events = 10000
51
52$title = "Full process"
53$description =
54  "$p + p \to u+ \bar u \to \bar{\tilde u}_1 + u + \tilde e_{12}^+ + e^-$"
55$x_label = "$M_{\rm inv}(ue^-)$"
56histogram inv_mass1_full (0, 600, 20)
57
58$title = "Factorized process with complete spin correlations"
59$description =
60  "$p + p \to u\bar u \to \bar{\tilde u}_1 +
61  (\tilde u_1 \to u + (\tilde\chi_2^0 \to \tilde e_{12}^+ + e^-))$"
62histogram inv_mass1 (0, 600, 20)
63
64$title = "Factorized process with classical spin correlations"
65histogram inv_mass1_dia (0, 600, 20)
66
67$title = "Factorized process with isotropic decay"
68histogram inv_mass1_iso (0, 600, 20)
69
70simulate (full) {
71  $sample = "casc_dec_full"
72  analysis =
73    record inv_mass1_full (eval M / 1 GeV [combine[u,e1]])
74}
75
76
77unstable su1 (dec_su_q)
78unstable neu2 (dec_neu_sl2)
79
80simulate (susybg) {
81  $sample = "casc_dec"
82  analysis =
83    record inv_mass1 (eval M / 1 GeV [combine[u,e1]])
84}
85
86?diagonal_decay = true
87unstable su1 (dec_su_q)
88unstable neu2 (dec_neu_sl2)
89
90simulate (susybg) {
91  $sample = "casc_dec_dia"
92  analysis =
93    record inv_mass1_dia (eval M / 1 GeV [combine[u,e1]])
94}
95
96?isotropic_decay = true
97unstable su1 (dec_su_q)
98unstable neu2 (dec_neu_sl2)
99
100simulate (susybg) {
101  $sample = "casc_dec_iso"
102  analysis =
103    record inv_mass1_iso (eval M / 1 GeV [combine[u,e1]])
104}
105
106write_analysis
107compile_analysis { $out_file = "casc_dec.dat" }