-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubmit.sh
More file actions
executable file
·55 lines (40 loc) · 1.7 KB
/
submit.sh
File metadata and controls
executable file
·55 lines (40 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
# Constants
ice=0
lead=1
iron=2
# Jobs
#
## 1 TeV in ice
#
#nohup iceblock -ne 100 -e 1000000 -t $ice -p e- > ice_1TeV.out &
#
## Moliere Radius jobs
#
#nohup iceblock -ne 100 -e 1000 -t $ice > logs/ice_1GeV.out &
#nohup iceblock -ne 100 -e 1000 -t $iron > logs/iron_1GeV.out &
#nohup iceblock -ne 100 -e 1000 -t $lead > logs/lead_1GeV.out &
#nohup iceblock -ne 100 -e 10000 -t $ice > logs/ice_10GeV.out &
#nohup iceblock -ne 100 -e 10000 -t $iron > logs/iron_10GeV.out &
#nohup iceblock -ne 100 -e 10000 -t $lead > logs/lead_10GeV.out &
#
## Plotting shower energy vs track length
#
#nohup iceblock -ne 100 -e 200000 -t $ice > logs/ice_200GeV.out &
#nohup iceblock -ne 100 -e 400000 -t $ice > logs/ice_400GeV.out &
#nohup iceblock -ne 100 -e 700000 -t $ice > logs/ice_700GeV.out &
#
## Want to count particles for higher energies
#
#nohup iceblock -ne 100 -e 100000 -t $ice > logs/ice_100GeV.out &
#nohup iceblock -ne 50 -e 500000 -t $ice > logs/ice_500GeV.out &
#nohup iceblock -ne 20 -e 1000000 -t $ice > logs/ice_1000GeV.out &
#nohup iceblock -ne 100 -e 100000 -t $ice -p gamma > logs/ice_100GeV_gam.out &
#nohup iceblock -ne 50 -e 500000 -t $ice -p gamma > logs/ice_500GeV_gam.out &
#nohup iceblock -ne 20 -e 1000000 -t $ice -p gamma > logs/ice_1000GeV_gam.out &
#nohup iceblock -ne 100 -e 100000 -t $ice -c 1 > logs/ice_100GeV.out &
#nohup iceblock -ne 50 -e 1000000 -t $ice -c 1 > logs/ice_1000GeV.out &
#nohup iceblock -ne 20 -e 10000000 -t $ice -c 1 > logs/ice_10000GeV.out &
#nohup iceblock -ne 100 -e 10000 -t $ice -np 10 > logs/ice_10GeV.out &
nohup iceblock -ne 50 -e 100000 -t $ice -np 10 > logs/ice_100GeV_10p.out &
nohup iceblock -ne 50 -e 10000 -t $ice -np 100 > logs/ice_10GeV_100p.out &