whizard is hosted by Hepforge, IPPP Durham
close Warning: Error with navigation contributor "BrowserModule"

Ticket #250: casc_dec.sin

File casc_dec.sin, 1.0 KB (added by dwiesler, 14 years ago)

sample file for cascade decays which should show spin correlation effects

Line 
1model = MSSM
2
3process dec_su_q        = su1 -> u, neu2
4process dec_su_qc       = SU1 -> U, neu1
5process dec_neu_sl      = neu2 -> se12, E1
6process dec_neu_sl2     = neu2 -> SE12, e1
7process dec_sl_l        = se12 -> e1, neu1
8process dec_sl_l2       = SE12 -> E1, neu1
9 
10
11process susybg = u,U -> SU1, su1
12
13compile
14
15read_slha("sps1a.in")
16
17integrate (dec_su_q,dec_su_qc,dec_neu_sl,dec_sl_l,dec_neu_sl2,dec_sl_l2) { iterations = 1:1000 }
18
19
20sqrts = 14000
21beams = p, p -> lhapdf
22integrate (susybg) { iterations = 5:10000, 2:10000 }
23
24unstable su1 (dec_su_q)
25unstable SU1 (dec_su_qc)
26!unstable neu2 (dec_neu_sl)  !either decay into positron
27unstable neu2 (dec_neu_sl2)  !or electron, which then should show spin correlation effects in the invariant mass of e+/e- and u
28unstable se12 (dec_sl_l)
29unstable SE12 (dec_sl_l2)
30
31n_events = 10000
32
33histogram inv_mass1 (0,1000,10)
34histogram inv_mass2 (0,1000,10)
35
36analysis =
37  record inv_mass1 (eval M / 1 GeV [combine[u,e1]])
38  and
39  record inv_mass2 (eval M / 1 GeV [combine[u,E1]])
40
41simulate (susybg)
42
43write_analysis
44$analysis_filename = "casc_dec"
45write_analysis
46
47
48
49
50