whizard is hosted by Hepforge, IPPP Durham

Ticket #156: bug7.sin

File bug7.sin, 410 bytes (added by sschmidt, 14 years ago)
Line 
1model = SM
2
3library = "bug7"
4
5process eenn = e1, E1 -> n1, N1
6
7compile("bug7")
8
9sqrts = 1000 GeV
10beams = e1, E1
11
12integrate(eenn) {
13iterations = 2:2000
14}
15
16! resetting sqrts to simulate at a different energy -> exactly the same results
17sqrts = 5000 GeV
18integrate(eenn) {
19iterations = 2:2000
20}
21
22! even ebsurd values are accepted and give the same results
23sqrts = -1000 GeV
24integrate(eenn) {
25iterations = 2:2000
26}