ctao-calibpipe 0.3.0rc2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (105) hide show
  1. calibpipe/__init__.py +5 -0
  2. calibpipe/_dev_version/__init__.py +9 -0
  3. calibpipe/_version.py +34 -0
  4. calibpipe/atmosphere/__init__.py +1 -0
  5. calibpipe/atmosphere/atmosphere_containers.py +109 -0
  6. calibpipe/atmosphere/meteo_data_handlers.py +485 -0
  7. calibpipe/atmosphere/models/README.md +14 -0
  8. calibpipe/atmosphere/models/__init__.py +1 -0
  9. calibpipe/atmosphere/models/macobac.ecsv +23 -0
  10. calibpipe/atmosphere/models/reference_MDPs/__init__.py +1 -0
  11. calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-north_intermediate.ecsv +8 -0
  12. calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-north_summer.ecsv +8 -0
  13. calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-north_winter.ecsv +8 -0
  14. calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-south_summer.ecsv +8 -0
  15. calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-south_winter.ecsv +8 -0
  16. calibpipe/atmosphere/models/reference_atmospheres/__init__.py +1 -0
  17. calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-north_intermediate.ecsv +73 -0
  18. calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-north_summer.ecsv +73 -0
  19. calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-north_winter.ecsv +73 -0
  20. calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-south_summer.ecsv +73 -0
  21. calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-south_winter.ecsv +73 -0
  22. calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/__init__.py +1 -0
  23. calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-north_intermediate.ecsv +857 -0
  24. calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-north_summer.ecsv +857 -0
  25. calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-north_winter.ecsv +857 -0
  26. calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-south_summer.ecsv +857 -0
  27. calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-south_winter.ecsv +857 -0
  28. calibpipe/atmosphere/templates/request_templates/__init__.py +1 -0
  29. calibpipe/atmosphere/templates/request_templates/copernicus.json +11 -0
  30. calibpipe/atmosphere/templates/request_templates/gdas.json +12 -0
  31. calibpipe/core/__init__.py +39 -0
  32. calibpipe/core/common_metadata_containers.py +198 -0
  33. calibpipe/core/exceptions.py +87 -0
  34. calibpipe/database/__init__.py +24 -0
  35. calibpipe/database/adapter/__init__.py +23 -0
  36. calibpipe/database/adapter/adapter.py +80 -0
  37. calibpipe/database/adapter/database_containers/__init__.py +63 -0
  38. calibpipe/database/adapter/database_containers/atmosphere.py +199 -0
  39. calibpipe/database/adapter/database_containers/common_metadata.py +150 -0
  40. calibpipe/database/adapter/database_containers/container_map.py +59 -0
  41. calibpipe/database/adapter/database_containers/observatory.py +61 -0
  42. calibpipe/database/adapter/database_containers/table_version_manager.py +39 -0
  43. calibpipe/database/adapter/database_containers/throughput.py +30 -0
  44. calibpipe/database/adapter/database_containers/version_control.py +17 -0
  45. calibpipe/database/connections/__init__.py +28 -0
  46. calibpipe/database/connections/calibpipe_database.py +60 -0
  47. calibpipe/database/connections/postgres_utils.py +97 -0
  48. calibpipe/database/connections/sql_connection.py +103 -0
  49. calibpipe/database/connections/user_confirmation.py +19 -0
  50. calibpipe/database/interfaces/__init__.py +71 -0
  51. calibpipe/database/interfaces/hashable_row_data.py +54 -0
  52. calibpipe/database/interfaces/queries.py +180 -0
  53. calibpipe/database/interfaces/sql_column_info.py +67 -0
  54. calibpipe/database/interfaces/sql_metadata.py +6 -0
  55. calibpipe/database/interfaces/sql_table_info.py +131 -0
  56. calibpipe/database/interfaces/table_handler.py +333 -0
  57. calibpipe/database/interfaces/types.py +96 -0
  58. calibpipe/telescope/throughput/containers.py +66 -0
  59. calibpipe/tests/conftest.py +274 -0
  60. calibpipe/tests/data/atmosphere/molecular_atmosphere/__init__.py +0 -0
  61. calibpipe/tests/data/atmosphere/molecular_atmosphere/contemporary_MDP.ecsv +34 -0
  62. calibpipe/tests/data/atmosphere/molecular_atmosphere/macobac.csv +852 -0
  63. calibpipe/tests/data/atmosphere/molecular_atmosphere/macobac.ecsv +23 -0
  64. calibpipe/tests/data/atmosphere/molecular_atmosphere/merged_file.ecsv +1082 -0
  65. calibpipe/tests/data/atmosphere/molecular_atmosphere/meteo_data_copernicus.ecsv +1082 -0
  66. calibpipe/tests/data/atmosphere/molecular_atmosphere/meteo_data_gdas.ecsv +66 -0
  67. calibpipe/tests/data/atmosphere/molecular_atmosphere/observatory_configurations.json +71 -0
  68. calibpipe/tests/data/utils/__init__.py +0 -0
  69. calibpipe/tests/data/utils/meteo_data_winter_and_summer.ecsv +12992 -0
  70. calibpipe/tests/test_conftest_data.py +200 -0
  71. calibpipe/tests/unittests/array/test_cross_calibration.py +412 -0
  72. calibpipe/tests/unittests/atmosphere/astral_testing.py +107 -0
  73. calibpipe/tests/unittests/atmosphere/test_meteo_data_handler.py +775 -0
  74. calibpipe/tests/unittests/atmosphere/test_molecular_atmosphere.py +327 -0
  75. calibpipe/tests/unittests/database/test_table_handler.py +163 -0
  76. calibpipe/tests/unittests/database/test_types.py +38 -0
  77. calibpipe/tests/unittests/telescope/camera/test_calculate_camcalib_coefficients.py +456 -0
  78. calibpipe/tests/unittests/telescope/camera/test_produce_camcalib_test_data.py +37 -0
  79. calibpipe/tests/unittests/telescope/throughput/test_muon_throughput_calibrator.py +693 -0
  80. calibpipe/tests/unittests/test_bootstrap_db.py +79 -0
  81. calibpipe/tests/unittests/utils/test_observatory.py +309 -0
  82. calibpipe/tools/atmospheric_base_tool.py +78 -0
  83. calibpipe/tools/atmospheric_model_db_loader.py +181 -0
  84. calibpipe/tools/basic_tool_with_db.py +38 -0
  85. calibpipe/tools/camcalib_test_data.py +374 -0
  86. calibpipe/tools/camera_calibrator.py +462 -0
  87. calibpipe/tools/contemporary_mdp_producer.py +87 -0
  88. calibpipe/tools/init_db.py +37 -0
  89. calibpipe/tools/macobac_calculator.py +82 -0
  90. calibpipe/tools/molecular_atmospheric_model_producer.py +197 -0
  91. calibpipe/tools/muon_throughput_calculator.py +219 -0
  92. calibpipe/tools/observatory_data_db_loader.py +71 -0
  93. calibpipe/tools/reference_atmospheric_model_selector.py +201 -0
  94. calibpipe/tools/telescope_cross_calibration_calculator.py +721 -0
  95. calibpipe/utils/__init__.py +10 -0
  96. calibpipe/utils/observatory.py +486 -0
  97. calibpipe/utils/observatory_containers.py +26 -0
  98. calibpipe/version.py +24 -0
  99. ctao_calibpipe-0.3.0rc2.dist-info/METADATA +92 -0
  100. ctao_calibpipe-0.3.0rc2.dist-info/RECORD +105 -0
  101. ctao_calibpipe-0.3.0rc2.dist-info/WHEEL +5 -0
  102. ctao_calibpipe-0.3.0rc2.dist-info/entry_points.txt +12 -0
  103. ctao_calibpipe-0.3.0rc2.dist-info/licenses/AUTHORS.md +13 -0
  104. ctao_calibpipe-0.3.0rc2.dist-info/licenses/LICENSE +21 -0
  105. ctao_calibpipe-0.3.0rc2.dist-info/top_level.txt +1 -0
@@ -0,0 +1,105 @@
1
+ calibpipe/__init__.py,sha256=Id9ZXEUMH4fUFQqh4Rcaz918dpCbETbF1aTGclqmE4U,89
2
+ calibpipe/_version.py,sha256=CAaDDaDMKpR8FUSjcfee8XrKc5hvmcBVwdV0GK8EwGM,714
3
+ calibpipe/version.py,sha256=T6wjTQNq_sU7ep_-0KSX12Ej2fI7O_bIxl7MqqQt4cM,766
4
+ calibpipe/_dev_version/__init__.py,sha256=3qlzT1l_MfLxHuRphBwNwkb2WRttg3hGooj5n3BBZi4,369
5
+ calibpipe/atmosphere/__init__.py,sha256=ZDsUqVG1I_LDRW-xZb3vvHv9oDH5WEnch_HewkkI_N0,81
6
+ calibpipe/atmosphere/atmosphere_containers.py,sha256=i-6V5vuWgJiwwISiAX0R828E0TeSCKJj24X_XPK3QHE,4025
7
+ calibpipe/atmosphere/meteo_data_handlers.py,sha256=1CATYodYGMTnAFMdNNGqprYsDVOcLYUIKy73Hc12pQ8,17136
8
+ calibpipe/atmosphere/models/README.md,sha256=Go9Dsck2eirm0rqVlNFsbq2gLZcjYdcxWo_QORVekl0,2134
9
+ calibpipe/atmosphere/models/__init__.py,sha256=dUSSlvHhznasctqsNxwMUpQUMb5xm3GrFSQlQLitRjk,60
10
+ calibpipe/atmosphere/models/macobac.ecsv,sha256=-BH6X4PyIr16VDZdqKLVlfKbW7Pr-XGrG7qMnGsqluc,756
11
+ calibpipe/atmosphere/models/reference_MDPs/__init__.py,sha256=ere46bmFXdsEhcLvkgr93F8xGqtMTw9k7TltiMtDMnQ,44
12
+ calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-north_intermediate.ecsv,sha256=H2QWtqUSyyU5GhqDINAKRNUmrxvzNwZYiuTFg52wSE4,193
13
+ calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-north_summer.ecsv,sha256=0Sjq9QNjb-NJr9MtobOG0FikDjsDea-4hvGgKmnvqMo,187
14
+ calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-north_winter.ecsv,sha256=uCLZU8uedYwbi8NKvBp79kBWfGF6xK8U8GYcMO5Ch_E,187
15
+ calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-south_summer.ecsv,sha256=0lASNA32J3G9fR3YfztUZ37j9dDKOu2-pypO_sBDmlk,187
16
+ calibpipe/atmosphere/models/reference_MDPs/ref_density_at_15km_ctao-south_winter.ecsv,sha256=E2whNcYRMLqWjKc7v2wM1wK4gy3MEEWPjJHzJ0r23fM,187
17
+ calibpipe/atmosphere/models/reference_atmospheres/__init__.py,sha256=mZ_Vd4deqA8QTEUldPWLKx870vJlrZw6W3T26FeKVQM,36
18
+ calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-north_intermediate.ecsv,sha256=tzIMJexSEmK3p2wIaDXQvcybNRP7wTz6ppR842Emi6o,8032
19
+ calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-north_summer.ecsv,sha256=LU5eK2H9EsmRMRzS_OdspAZkWx9ropuZkPUThymv9xo,8073
20
+ calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-north_winter.ecsv,sha256=WL3QRCsb4s0DlSlrPU2I8VhmyZvaXspU-j8lKpPK0KU,8035
21
+ calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-south_summer.ecsv,sha256=UWLOH_1v_jJ8ICNiaTN5xIHhUPXUREClO2nb9TjNykI,8072
22
+ calibpipe/atmosphere/models/reference_atmospheres/reference_atmo_model_v0_ctao-south_winter.ecsv,sha256=V6wdpqn3UYfinjCogTSkSQzGUBVZvPFuI5_vzP6ykUI,8102
23
+ calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/__init__.py,sha256=TdAQ-1ODUXxDDQ7mwNDs6-87hO37aK_C020yiFYrPUQ,46
24
+ calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-north_intermediate.ecsv,sha256=kkxj-39_hzMVYh2LD-TJhojA85EVox4RUt_cT11T7R0,860986
25
+ calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-north_summer.ecsv,sha256=UTNC5MXYMbd1EKIvFd-sCnsNuafhZKcQVE8bfBer4Is,861179
26
+ calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-north_winter.ecsv,sha256=ckEjK8VmGAzkCsZLJ1P4QYlalG3MJeud_1Z4wcKcW5w,860958
27
+ calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-south_summer.ecsv,sha256=h2lCXSGKIzq_V3-SFG5ltCv4VPjoe4zv8sA9E9Un3a0,861209
28
+ calibpipe/atmosphere/models/reference_rayleigh_scattering_profiles/reference_rayleigh_extinction_profile_v0_ctao-south_winter.ecsv,sha256=3rON8t0-FwmkctnAP4RgGbZps-lvqpUDless49jFQ3s,861017
29
+ calibpipe/atmosphere/templates/request_templates/__init__.py,sha256=30TTOLYx6hLbO1KsYzMrXJiRRp46G58qiTGquLnZMe0,39
30
+ calibpipe/atmosphere/templates/request_templates/copernicus.json,sha256=MKJuyzV00D3lmKUnFUCB2uwp-mCK-2VJwFwrBVNzLFw,687
31
+ calibpipe/atmosphere/templates/request_templates/gdas.json,sha256=qBKXEBWTi5gxWs0UO8N0ElGHzHGV7RGHbDtw740JtIc,349
32
+ calibpipe/core/__init__.py,sha256=bvVm1TvgbHkeBbkDMfNMcLPbhSfegApuEpEyk1X2CMw,1096
33
+ calibpipe/core/common_metadata_containers.py,sha256=mNDpADLcRepecVWWu7OdUjxGfqAzP5zJafXE7F5AS5U,6333
34
+ calibpipe/core/exceptions.py,sha256=JzQ22ylG4Ztq5_oNucM4Ow9F1vrvxSJDhFDq9K7GeBE,2694
35
+ calibpipe/database/__init__.py,sha256=Ti6vuFnNENsGh_Bf9QrUP47p9f7sPBGsYZmIMvCUGyI,810
36
+ calibpipe/database/adapter/__init__.py,sha256=ckgbAmcN9ra98AX7bA2DMNvl3RhlaeYRG4-TekeKj10,604
37
+ calibpipe/database/adapter/adapter.py,sha256=Rog_OlYOW06NjkgmZUwc7n_vZDUTYs-MDrwu5dR_xP8,2802
38
+ calibpipe/database/adapter/database_containers/__init__.py,sha256=6U6hbEyrnV1Uh9o5JtPmeEHFXkFHJRxtj8TcClRa5d0,2048
39
+ calibpipe/database/adapter/database_containers/atmosphere.py,sha256=KbJMhkJB3OmU6e1Y_9Umd2hPxHGHFEy39n62qycZdkI,5429
40
+ calibpipe/database/adapter/database_containers/common_metadata.py,sha256=OOIWBxsQV_vV4Skke-LKAGUZ41hD9LdSA1Y-noljR54,5059
41
+ calibpipe/database/adapter/database_containers/container_map.py,sha256=ERu2rmbhXJgJ8I66eEmYvm-tgLAplwapkQvwwSCB2Xg,2112
42
+ calibpipe/database/adapter/database_containers/observatory.py,sha256=AXZDcuXeKAnowxUzmosI-CwnitWyBPHnxWzK8G_jf80,1948
43
+ calibpipe/database/adapter/database_containers/table_version_manager.py,sha256=S_3OuVCVbgKYkidMDsZucS1qzYCiRL8SN3J2VRaipTQ,1490
44
+ calibpipe/database/adapter/database_containers/throughput.py,sha256=k95Pv2fgnBg5jQvGWb-3S7lzAMljnlTHmULPNkl0RRE,1155
45
+ calibpipe/database/adapter/database_containers/version_control.py,sha256=VcVhIVL9NNRaOFJAjTHVsHehslSFCp-oTNg9AbFQfcU,588
46
+ calibpipe/database/connections/__init__.py,sha256=NDKxrKZj8mMwIsmxxonbrVNsiJRpVE4_I1BPcAXNStE,913
47
+ calibpipe/database/connections/calibpipe_database.py,sha256=IBDPG_bRRN_xr4g0gsdWTv2XTM9vdZ_N0BNkoK9Y4xs,1643
48
+ calibpipe/database/connections/postgres_utils.py,sha256=JNtWv0meZx7fzWyCp6k7hwL9Ow9M6iAaEI98X9idNq0,2895
49
+ calibpipe/database/connections/sql_connection.py,sha256=QJWmp3GxbAgqf7UnU2f_JWlaNHO8NYUmY33z2cjiyNo,3354
50
+ calibpipe/database/connections/user_confirmation.py,sha256=d3P_wgfE9QA2BHhgKBsiTmXSXs55nb61lYc5IPjuwSQ,430
51
+ calibpipe/database/interfaces/__init__.py,sha256=DmADVq96RD04bSLaUBOjCNMJ3LjzD11eevd9103MfsU,2024
52
+ calibpipe/database/interfaces/hashable_row_data.py,sha256=bjkk8kcX8V6LIHP0lRcaT6L9LrhFCvHRBwXVq98kAy8,1711
53
+ calibpipe/database/interfaces/queries.py,sha256=evuWSUbeQQao7jxXXyLn0DmsJ6hdMmnkaTMDq0Sgng8,5987
54
+ calibpipe/database/interfaces/sql_column_info.py,sha256=SM943ZjBwTkS8RTz20ceDoqaoxFkRHVFP0tm08d_SOE,2054
55
+ calibpipe/database/interfaces/sql_metadata.py,sha256=zlmv3OAIbn2YxmDM0QE17myBwj1910D1RvhpJ6c5Ej4,142
56
+ calibpipe/database/interfaces/sql_table_info.py,sha256=HBpYreOJJNdxjH-fbL5QL4_M0nn4hNe52_yxVVrcuDo,4485
57
+ calibpipe/database/interfaces/table_handler.py,sha256=OZfz-VVT9TdlvvzHUN5sXieo_MT2coiQcZ8QJ0BISH8,12280
58
+ calibpipe/database/interfaces/types.py,sha256=p6HYmMQplDxoWr_h7GSB8sqhmOrT9tssCqgVsgtGH1g,3238
59
+ calibpipe/telescope/throughput/containers.py,sha256=NgsD6xuoPm-W5sMiBab2ATk56ji0DWBJn7LG7PlCtmw,1797
60
+ calibpipe/tests/conftest.py,sha256=smYoYlkW3OemKmogUMCLslPHAT3UycijuHQY8kX6pBw,11294
61
+ calibpipe/tests/test_conftest_data.py,sha256=ZTXsB6o7i9n-o-QaWiYs0KrHh07xV6hg0-wKzP85vQU,7637
62
+ calibpipe/tests/data/atmosphere/molecular_atmosphere/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
+ calibpipe/tests/data/atmosphere/molecular_atmosphere/contemporary_MDP.ecsv,sha256=5KCpT8LAQVasTyIO9OhpOKA2kLXz-bpUzgyI-1NRfRQ,991
64
+ calibpipe/tests/data/atmosphere/molecular_atmosphere/macobac.csv,sha256=3gbKyR6w02VtEajLM7h5YCOBaGcP5IwnTATwC3Z5aas,83199
65
+ calibpipe/tests/data/atmosphere/molecular_atmosphere/macobac.ecsv,sha256=iTqVV-xZdbEvYcS_eVBdcL2F9X47U0jZu7u4HR3dThg,769
66
+ calibpipe/tests/data/atmosphere/molecular_atmosphere/merged_file.ecsv,sha256=QsfgxpKCC3mNQJb2SAJHeUwhwlR1WSx8QCszfxLwMPY,321905
67
+ calibpipe/tests/data/atmosphere/molecular_atmosphere/meteo_data_copernicus.ecsv,sha256=QsfgxpKCC3mNQJb2SAJHeUwhwlR1WSx8QCszfxLwMPY,321905
68
+ calibpipe/tests/data/atmosphere/molecular_atmosphere/meteo_data_gdas.ecsv,sha256=U24RfBCsSw_bp-NccVpyE91sKofnjEsQqD9rTxEevrU,6374
69
+ calibpipe/tests/data/atmosphere/molecular_atmosphere/observatory_configurations.json,sha256=HXIzgJm10h0ZmoEiSBPDFEiv5wJ8S1v1dAMObZHGzNA,1878
70
+ calibpipe/tests/data/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
+ calibpipe/tests/data/utils/meteo_data_winter_and_summer.ecsv,sha256=RIFzId8qlxYl4fF5BOfRsfyPlTQP2ByILnwjOyb38iM,2847673
72
+ calibpipe/tests/unittests/test_bootstrap_db.py,sha256=qLTQT_5CfrLWx2qdXISkBVePe9T1-5H_XXBqMtf6hwA,2740
73
+ calibpipe/tests/unittests/array/test_cross_calibration.py,sha256=dGc4foufvtHgJFlSwKjWNvjeyrwuX9Rl01mzjec9M-Y,15945
74
+ calibpipe/tests/unittests/atmosphere/astral_testing.py,sha256=uhw31ltMpdc0C6hsuGKK-p4ySyt1gts5dqdBnSWIy8Q,2773
75
+ calibpipe/tests/unittests/atmosphere/test_meteo_data_handler.py,sha256=Lhe0e1gQQhseYYQ2aiE2nVey_L0rlgLBSZ56HCv04hA,25313
76
+ calibpipe/tests/unittests/atmosphere/test_molecular_atmosphere.py,sha256=RnCTbxzxBoSOsAjpIALib9TGrGy3Xo6Wfo_uYqgI4MQ,12193
77
+ calibpipe/tests/unittests/database/test_table_handler.py,sha256=SGZaTJJoJaar2i0eXxu5rEPLwcVVTCPostiiSmAVrac,5707
78
+ calibpipe/tests/unittests/database/test_types.py,sha256=VBJ5XX8CC9UMQ6vnlKlYuM3Lwgio6wQT7gAasgFHgCo,668
79
+ calibpipe/tests/unittests/telescope/camera/test_calculate_camcalib_coefficients.py,sha256=Ag2BXDMILZw6PmizrmNvFnO-i2Z-27T2qIan-XmSvuw,21179
80
+ calibpipe/tests/unittests/telescope/camera/test_produce_camcalib_test_data.py,sha256=wxlvVnsj-QNfXzrbEZsmWYVqdAraD3Tc7aWIRw89WiE,1705
81
+ calibpipe/tests/unittests/telescope/throughput/test_muon_throughput_calibrator.py,sha256=_DtDnR_5KZSBXDszh_Wf5bJtcwJwZTJN75ROWavKDdQ,28722
82
+ calibpipe/tests/unittests/utils/test_observatory.py,sha256=w0UIvmc1mWN6-fSvvvBkMpwWKkX3YpoOeHePOXudcCI,11080
83
+ calibpipe/tools/atmospheric_base_tool.py,sha256=JStn-4uFfoTpSKXvXVxRqG447g8kXtb_Mud_m4m6crE,1995
84
+ calibpipe/tools/atmospheric_model_db_loader.py,sha256=4hb-kMyCr-NSjYzR5qSkJ9QfihajIi3dzUbpZYHQLHI,6802
85
+ calibpipe/tools/basic_tool_with_db.py,sha256=LW_EnwiQShV25lkx6uC8mFj3MfKKVxrr4uwqJMTexwA,1198
86
+ calibpipe/tools/camcalib_test_data.py,sha256=CAC-4tD9LTeeSP1SbwGQVU_BQ8qwhQnkBGUSvyt5Zm8,16525
87
+ calibpipe/tools/camera_calibrator.py,sha256=nAqkpds3dJMI6tl8F3UG5lvm11i3xNYJC19hj6xVtNs,18974
88
+ calibpipe/tools/contemporary_mdp_producer.py,sha256=y3D1vNR51h2orutUo9myGAZ4XqP_ci32pL6GKPHHYNU,3260
89
+ calibpipe/tools/init_db.py,sha256=GQ0YbhkkCbXRCe-DgfaMjP89xjUTnMLyzYqDt02J9XA,1180
90
+ calibpipe/tools/macobac_calculator.py,sha256=Y9kc9uTLRlkqb94HoZQSCwpj0tNDEEDhTvsm1bIdUkg,2689
91
+ calibpipe/tools/molecular_atmospheric_model_producer.py,sha256=u21qgSHq3bXR6lwfI-w2PUGBRlrSi0PMLh0pEhOjl3Y,7216
92
+ calibpipe/tools/muon_throughput_calculator.py,sha256=oTY-BdgGocLvwYR-EDlvJm0AS3ju5lC56l5pECCfifw,7714
93
+ calibpipe/tools/observatory_data_db_loader.py,sha256=xXk7VQ6txHdMYXzPdPym3P181z5-ESSBfS_N1wMTfjQ,2301
94
+ calibpipe/tools/reference_atmospheric_model_selector.py,sha256=U1Io3rw7GG-n0d4kLbRAywtAP7sbKGtGwEsaJRi3ktw,8062
95
+ calibpipe/tools/telescope_cross_calibration_calculator.py,sha256=OqAiu3uXpK41sjj6QRm47WCfcJLb3stlHEtQ8X7dQ6k,28148
96
+ calibpipe/utils/__init__.py,sha256=duJUrgGL-1bp6lfzRiMu_WFCjgVO9MDvMOGoxk51eQE,264
97
+ calibpipe/utils/observatory.py,sha256=ZNvSVF5UzHRwH5K8UZegoNICrKuO5GB0wvVAb_T_u-M,16385
98
+ calibpipe/utils/observatory_containers.py,sha256=l2kxVLOLORwFTeVI2t7VlONVXdCmtl_8SdhlSMg6yBM,918
99
+ ctao_calibpipe-0.3.0rc2.dist-info/licenses/AUTHORS.md,sha256=GUsdkkhsl_eFAEnqSji9g3nqZQ8JS_GihAHgK9UBGUE,219
100
+ ctao_calibpipe-0.3.0rc2.dist-info/licenses/LICENSE,sha256=7_4TIFvKWt1rsbuxBaO2DWpaMr6wSXiPaKI272Ddu9w,1090
101
+ ctao_calibpipe-0.3.0rc2.dist-info/METADATA,sha256=c9w-Xgrk6f3bS1q1_fWJXXFkuQxd19rity5uI2m7ZAc,3597
102
+ ctao_calibpipe-0.3.0rc2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
103
+ ctao_calibpipe-0.3.0rc2.dist-info/entry_points.txt,sha256=h73YWLNdaFXNcUUdKdwlmAmCtm0Ikhih2VSoRVg7rJc,952
104
+ ctao_calibpipe-0.3.0rc2.dist-info/top_level.txt,sha256=lK2hWb87wSJMO0ruQCd-d2JRtBwcxjgT1EQZmrNYe9k,10
105
+ ctao_calibpipe-0.3.0rc2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,12 @@
1
+ [console_scripts]
2
+ calibpipe-calculate-camcalib-coefficients = calibpipe.tools.camera_calibrator:main
3
+ calibpipe-calculate-macobac = calibpipe.tools.macobac_calculator:main
4
+ calibpipe-calculate-throughput-muon = calibpipe.tools.muon_throughput_calculator:main
5
+ calibpipe-create-molecular-atmospheric-model = calibpipe.tools.molecular_atmospheric_model_producer:main
6
+ calibpipe-create-molecular-density-profile = calibpipe.tools.contemporary_mdp_producer:main
7
+ calibpipe-cross-calibration = calibpipe.tools.telescope_cross_calibration_calculator:main
8
+ calibpipe-init-db = calibpipe.tools.init_db:main
9
+ calibpipe-produce-camcalib-test-data = calibpipe.tools.camcalib_test_data:main
10
+ calibpipe-select-reference-atmospheric-model = calibpipe.tools.reference_atmospheric_model_selector:main
11
+ calibpipe-upload-atmospheric-model-data = calibpipe.tools.atmospheric_model_db_loader:main
12
+ calibpipe-upload-observatory-data = calibpipe.tools.observatory_data_db_loader:main
@@ -0,0 +1,13 @@
1
+ # CONTRIBUTORS
2
+
3
+ ## Current team members
4
+ - Leonid Burmistrov
5
+ - Mykhailo Dalchenko
6
+ - Tjark Miener
7
+ - Georgios Voutsinas
8
+
9
+ ## Former team members
10
+ - Gabriel Emery
11
+ - Antonio Di Pilato
12
+ - Gregoire Uhlrich
13
+ - Vadym Voitsekhovskyi
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright 2022 CTA DPPS Calibration Pipeline Authors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ calibpipe