-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGetDistributions.sh
More file actions
executable file
·21 lines (18 loc) · 972 Bytes
/
GetDistributions.sh
File metadata and controls
executable file
·21 lines (18 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#Set this to determine how many Monte Carlo samples to use
#1000 should be enough to get a good idea of the distributions
NMAXROWS=10000000
#Set ASflag="" to not use the AScut
ASflag="-AScut"
#ASflag=""
echo -----------PL-------------
python3 code/prepare_distributions.py -profile PL --max_rows $NMAXROWS $ASflag
echo -----------PL, circ-------------
python3 code/prepare_distributions.py -profile PL -circ --max_rows $NMAXROWS $ASflag
echo -----------PL, circ, unpert-------------
python3 code/prepare_distributions.py -profile PL -unperturbed 1 -circ --max_rows $NMAXROWS $ASflag
echo -----------NFW-------------
python3 code/prepare_distributions.py -profile NFW --max_rows $NMAXROWS $ASflag
echo -----------NFW, circ-------------
python3 code/prepare_distributions.py -profile NFW -circ --max_rows $NMAXROWS $ASflag
echo -----------NFW, circ, unpert-------------
python3 code/prepare_distributions.py -profile NFW -unperturbed 1 -circ --max_rows $NMAXROWS $ASflag