-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRunSubjet.csh
More file actions
37 lines (25 loc) · 772 Bytes
/
RunSubjet.csh
File metadata and controls
37 lines (25 loc) · 772 Bytes
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
#! /usr/bin/env csh
make bin/SubjetWrapper
#parameters
setenv Nevent 50000
setenv lja antikt
#setenv sja kt
#setenv sja antikt
setenv R 0.4
#setenv S 0.1
setenv pcmin 0.2
setenv pcmax 30
#setenv pscmin 0.2
#setenv pscmax 30
foreach pcmin (0.2 1.0 2.0 )
# foreach S ( 0.05 0.75 0.1 0.125 0.15 0.175 0.2 )
foreach S ( 0.05 0.1 0.15 0.2 )
foreach sja ( kt antikt )
#construct output name
set namebase=Pythia_${lja}_R${R}_pcmin${pcmin}_${sja}_SR${S}
# echo $namebase
# echo SubjetWrapper -N $Nevent -lja $lja -sja $sja -R $R -S $S -pc $pcmin $pcmax -o Results/${namebase}.root
./bin/SubjetWrapper -N $Nevent -lja $lja -sja $sja -R $R -S $S -pc $pcmin $pcmax -o Results/${namebase}.root >& logs/${namebase}.log &
end
end
end