-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathparams.py
More file actions
48 lines (34 loc) · 1.14 KB
/
params.py
File metadata and controls
48 lines (34 loc) · 1.14 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
#python initValidation.py /home/b/bmg/westjl/jlwscratch/pilot/10168/ 10168 "" 500.0 10000.0
#ASKAP specific variables
sb='9945'
base=""
#root path to pipeline files (image cubes and source finding output)
path="/askapbuffer/scott/askapops/POSSUM-PILOT/"+sb
outpath="temp"
#account="rrg-eros-ab"
account="askap"
#location of output files
variables=outpath+"validation/variables.pickle"
filtered_csv=outpath+"validation/filtered.csv"
merged_csv=outpath+"validation/merged.csv"
#cutoffs for filtering source list
fluxmin=2.0 #mJy/beam
fluxmax=100000.0 #mJy/beam
polmin=None
polmax=None
snrmin=None
snrmax=None
#size of postage stamp image (and cubelet FITS files) in pixels
imsize=20
#make the individual plots for sources (i.e., png files)
makePlotsForSources=False
#make plots for the residual cube?
doResiduals=True
#make plots for the weight cube?
doWeights=True
#make a tar archive of the FITS files?
makeTar = False
#run full validation to the end
# else just creates summary csv files (from selavy) and tabulates the spectra and saves
# to pickle files. These can be used to run the validation separately at a later time
runValidation=True