-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProcessHDFcubes.py
More file actions
24 lines (15 loc) · 818 Bytes
/
ProcessHDFcubes.py
File metadata and controls
24 lines (15 loc) · 818 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
from CubeProcessing import data_processor
def main():
output_path ="/Users/ronniyjoseph/Sync/PhD/Projects/redundant_calibration/simulation_output/" \
"CRAMPS_Linear_ideal_P100_BG_fullcal/"
output_path = "/home/rjoseph/Bulk/Redundant_Calibration/Simulation_Output/TEST0_SLPO_Hex_P_BG_full_FIX/"
#output_path = "/Users/ronniyjoseph/Sync/PhD/Projects/redundant_calibration/simulation_output/" \
# "TEST0_SLPO_Hex_P_BG_logcal_FIX/"
simulation_type = "CRAMPS"
simulation_type ="SLPO"
stacking_mode = [True]
histogram_plotting = [False, 'noisy']# "both"
averaging_type = [False,"median",'std'] #"median" or "mean"
data_processor(output_path, simulation_type, stacking_mode, histogram_plotting, averaging_type)
if __name__ == "__main__":
main()