xedocs 0.2.30__py3-none-any.whl → 0.2.32__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
xedocs/__init__.py CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  __author__ = """Yossi Mosbacher"""
4
4
  __email__ = "joe.mosbacher@gmail.com"
5
- __version__ = "0.2.30"
5
+ __version__ = "0.2.32"
6
6
 
7
7
 
8
8
  import logging
@@ -93,7 +93,7 @@ class BaseMap(BaseResourceReference):
93
93
  'dill.gz','dill', 'npy_pickle',
94
94
  'binary', 'text', 'txt', 'csv']
95
95
 
96
- algorithm: Literal["cnn", "gcn", "mlp"] = rframe.Index()
96
+ algorithm: Literal["cnn", "gcn", "mlp", "cnf"] = rframe.Index()
97
97
 
98
98
  value: str
99
99
 
@@ -108,8 +108,8 @@ class BaseMap(BaseResourceReference):
108
108
 
109
109
  @property
110
110
  def local_file(self):
111
- import straxen
112
- downloader = straxen.MongoDownloader()
111
+ import utilix
112
+ downloader = utilix.mongo_storage.MongoDownloader()
113
113
  return downloader.download_single(self.value)
114
114
 
115
115
  @property
@@ -14,4 +14,4 @@ from ..base_corrections import TimeSampledCorrection
14
14
  class BaselineSamplesNV(TimeSampledCorrection):
15
15
 
16
16
  _ALIAS = "baseline_samples_nv"
17
- value: float
17
+ value: int
@@ -24,7 +24,7 @@ class PosRecModel(BaseResourceReference):
24
24
  _ALIAS = "posrec_models"
25
25
  fmt = "binary"
26
26
 
27
- kind: Literal["cnn", "gcn", "mlp", "s1_cnn", "flow"] = rframe.Index()
27
+ kind: Literal["cnn", "gcn", "mlp", "s1_cnn", "flow", "cnf"] = rframe.Index()
28
28
 
29
29
  value: str
30
30
 
@@ -2,3 +2,4 @@ from .hotspot import HotspotReport
2
2
  from .anode_ramp import AnodeRampReport
3
3
  from .anode_washing import AnodeWashingReport
4
4
  from .abnormal_rates import AbnormalDAQRate
5
+ from .detector_operations import DetectorOperations
@@ -0,0 +1,11 @@
1
+ from typing import Literal
2
+ from .base_report import BaseOperationsReport
3
+
4
+ class DetectorOperations(BaseOperationsReport):
5
+ """ Detector Operations Reports """
6
+
7
+ _ALIAS="detector_operations"
8
+
9
+ system:Literal["CRY", "PUR", "LXePUR", "RSX", "RSX_2", "DST", "RAD", "DAQ"]
10
+ subject: str
11
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: xedocs
3
- Version: 0.2.30
3
+ Version: 0.2.32
4
4
  Summary: Top-level package for xedocs.
5
5
  Home-page: https://github.com/XENONnT/xedocs
6
6
  Author: Yossi Mosbacher
@@ -15,6 +15,7 @@ Classifier: Programming Language :: Python :: 3.9
15
15
  Classifier: Programming Language :: Python :: 3.10
16
16
  Classifier: Programming Language :: Python :: 3.11
17
17
  Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
18
19
  Provides-Extra: all
19
20
  Provides-Extra: db
20
21
  Requires-Dist: appdirs (>=1.4.4,<2.0.0)
@@ -1,4 +1,4 @@
1
- xedocs/__init__.py,sha256=SelutKPFb_f0zZGKHqJe4_1j7CQKDv3nvvRuFz-hqqA,1054
1
+ xedocs/__init__.py,sha256=X6Q4gkSWjMIe66GAxZPRMYq2ldrJfzE2dJP7okKIAfg,1054
2
2
  xedocs/_settings.py,sha256=_Fjj5XJBHBrN6N1Dqs_JzovbEcF6--5BGnAggK1ksck,4199
3
3
  xedocs/_straxen_plugin.py,sha256=bxKWkVDNCS0Mah_GGNEvE8TCk-ibrY8xJbO0UMvfajM,1904
4
4
  xedocs/cli.py,sha256=1oZXa4Iqs-ANRTABZP8K6e3oSIatKnJNhQ1DZ4rsNrc,3493
@@ -30,10 +30,10 @@ xedocs/schemas/context_config.py,sha256=xqIqGLbgHnPlelG5oCO29B5cQh35XIz5LhYlxpdJ
30
30
  xedocs/schemas/context_lineage.py,sha256=B3zFt0TpQ3wQuG5H-rRMju0IRQkkg7sTD2SuV5Ngut4,568
31
31
  xedocs/schemas/corrections/__init__.py,sha256=QpQBY_UNdiodc_zPbE1O6wR1SWIaAnyNze7acYj2MwE,94
32
32
  xedocs/schemas/corrections/base_corrections.py,sha256=ryH16ypLec9Pp2AXI1RImeaZOfxOih-1blbnKedy_Us,11179
33
- xedocs/schemas/corrections/base_references.py,sha256=hloxM80EfDoxv3qwyjC8KqsCxeq5iWQzrz5LthsOpR4,3473
33
+ xedocs/schemas/corrections/base_references.py,sha256=xjeiouDYPnj4PHOHwTKhbjXPHC3-Sf-foQOu_fXlm8o,3492
34
34
  xedocs/schemas/corrections/implementations/__init__.py,sha256=ard_Slp-lPwchOdFbqdo4ItUSWfePtCmbosgpIGYaDY,852
35
35
  xedocs/schemas/corrections/implementations/avg_se_gain.py,sha256=cL-pioHMxh0XmkcfgHS48v3ZbwJdu4bIJlV_3Z40cm4,492
36
- xedocs/schemas/corrections/implementations/baseline_samples_nv.py,sha256=4AaQyLaH95Nixq93xe7A86lZua8tylVBoYgq3xbwq_I,474
36
+ xedocs/schemas/corrections/implementations/baseline_samples_nv.py,sha256=Rdkst_aiFPEXbcEXKuOVroNZkHqUncOh1Q5neR4tdHw,472
37
37
  xedocs/schemas/corrections/implementations/bayes_model.py,sha256=GatQ0DxzNWcveckun0vRfQ76RECAIqEO6eZgBxwlowA,235
38
38
  xedocs/schemas/corrections/implementations/cs2_aft_corrections.py,sha256=knTzYmiMD1AFvBzuoXjIbxRW6Ev1Y1yMS61p8MjMCEk,388
39
39
  xedocs/schemas/corrections/implementations/electron_diffusion_cte.py,sha256=pu2ZAdK6hUJ0vmv4CCaQ8INHUj7j5BwCLlwCHLhhVFo,526
@@ -48,7 +48,7 @@ xedocs/schemas/corrections/implementations/hotspot_veto_cut.py,sha256=eBfDLeJteA
48
48
  xedocs/schemas/corrections/implementations/lone_hits.py,sha256=HYspFe5Am-RwTmznpeszJTtdH16vEy6S0fCLtT0NIlQ,1159
49
49
  xedocs/schemas/corrections/implementations/photoionization_strength.py,sha256=ONllBdag6kgKEXdyuP6fnFH-BICWQUNgNu5HNXSyXY0,288
50
50
  xedocs/schemas/corrections/implementations/pmt_area_to_pe.py,sha256=270jqtXqkzx_5AnqMRgdYW2Ba8EUYPJZ6ymMr7eplxI,1109
51
- xedocs/schemas/corrections/implementations/position_reconstruction.py,sha256=lGeUms-qQ4zh-qXzmLGeUwo3IYyZY27z4lZiwPVSEvo,1523
51
+ xedocs/schemas/corrections/implementations/position_reconstruction.py,sha256=YbEcv36ZsGUUsqjJwqOEkQJjZsN8_KhwlE9NuG37v2A,1530
52
52
  xedocs/schemas/corrections/implementations/relative_light_yield.py,sha256=0kavAjWiV-VKb3b5Me-k7N62SJUrFLiYpg0b6SjwSn4,590
53
53
  xedocs/schemas/corrections/implementations/s1_aft_xyz.py,sha256=QKSAlUSuLkNdNaJcokSZXxfigO9hSNEoauJxjK0Tsew,459
54
54
  xedocs/schemas/corrections/implementations/s1_pattern_maps.py,sha256=Ff0nnadGpamX0t3SVP66vOMT77iWdSd_u4l171dMuIU,231
@@ -63,11 +63,12 @@ xedocs/schemas/corrections/implementations/z_bias.py,sha256=GeOOnVMx60E7I2WaldEX
63
63
  xedocs/schemas/detector_numbers.py,sha256=ebj6Os4L1xrweeHPe6qZcoHOzN2JCIR_2QyCEnrSD_U,547
64
64
  xedocs/schemas/fax.py,sha256=LGjVIQX6KbGyaKJIDbPOBuhmoobodBRfEUFVPQ3ds1c,599
65
65
  xedocs/schemas/historian_reader.py,sha256=celaxQ15IsX_vzgrHer4kORjRfAzZ2_whOIcREqWXYU,875
66
- xedocs/schemas/operations_reports/__init__.py,sha256=gbP8eOBlZeZbKJCh-oj-MgvfHE_zEaEstKlg3TwrMUg,165
66
+ xedocs/schemas/operations_reports/__init__.py,sha256=Q_rkpnEvzYaat4v7oaykCwSgfvOUbrw7N4fbnmjK3mE,217
67
67
  xedocs/schemas/operations_reports/abnormal_rates.py,sha256=edaDuxDclBOB7NQmCgjUW6_B6Z1qa4mN_Bh9syYWtoQ,349
68
68
  xedocs/schemas/operations_reports/anode_ramp.py,sha256=1Q7YyZrDZ4Mbu3ufALhyuUpu-hUSa2izmPA76XIZivM,301
69
69
  xedocs/schemas/operations_reports/anode_washing.py,sha256=BSZNGJkRSmI71E_d1ZzU-0jV_OVUlAOzjWmiYsR9P9k,374
70
70
  xedocs/schemas/operations_reports/base_report.py,sha256=NAi6jdGbFY3R5ACUOnOLHUOp4z7o69dEoSTnIXHjsAE,1394
71
+ xedocs/schemas/operations_reports/detector_operations.py,sha256=LCfqFSS6Sf9v22flUddDXlo-c22DRiRVd9mW8gvudi4,298
71
72
  xedocs/schemas/operations_reports/hotspot.py,sha256=Vzz8l-YsjS5_SxPp4eqxxpVW-9XU2RzBLgGP9_U75cQ,501
72
73
  xedocs/schemas/plugin_lineages.py,sha256=7LOLiPokHypf8RBG6PiOEZBz6ba4iZBuQ0nB2hXGSd0,2573
73
74
  xedocs/schemas/pmt_data/__init__.py,sha256=Ne7wSanMSTbNR-qlgI8IikbTX4V9Ntk4Wrlthu4XAyg,171
@@ -81,8 +82,8 @@ xedocs/utils.py,sha256=3OmrYetj83uhy0x5GHzk-_z_vSQeFR50X_9R51B3oWg,8398
81
82
  xedocs/widgets.py,sha256=l2pgQaWqycZQF5pF6eEeLuHdqjVBkJ8OB-o-mcivMl4,28810
82
83
  xedocs/xedocs.py,sha256=Dk-ld5X6qB6hrp40svDkJX_9K0MKkZTxal-fLVQpIz8,6949
83
84
  xedocs/xenon_config.py,sha256=QQlg2icofZWq_UAh5kDSuViai0uP_3ClozNNv6mpx3s,2674
84
- xedocs-0.2.30.dist-info/AUTHORS.rst,sha256=7XNtvXT_irnC5nzau-Al_VVmmhk8EgW811pPs8OXgBo,164
85
- xedocs-0.2.30.dist-info/METADATA,sha256=sysopXtjAMyGhfygg94cEBf6bVfIYLRyCcUtmWnmysw,5864
86
- xedocs-0.2.30.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
87
- xedocs-0.2.30.dist-info/entry_points.txt,sha256=AfKuejqaCB-nA4rYbuWtMcR0d-t4nNzrM3s8V_e7YSk,92
88
- xedocs-0.2.30.dist-info/RECORD,,
85
+ xedocs-0.2.32.dist-info/AUTHORS.rst,sha256=7XNtvXT_irnC5nzau-Al_VVmmhk8EgW811pPs8OXgBo,164
86
+ xedocs-0.2.32.dist-info/METADATA,sha256=K_klABNE137A7pETeYuwJggH3fILokeZWg5WHC1xqUQ,5915
87
+ xedocs-0.2.32.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
88
+ xedocs-0.2.32.dist-info/entry_points.txt,sha256=AfKuejqaCB-nA4rYbuWtMcR0d-t4nNzrM3s8V_e7YSk,92
89
+ xedocs-0.2.32.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.9.0
2
+ Generator: poetry-core 1.9.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any