Module sipmarray.models.S13370_6050
Expand source code
from sipmarray.unit import SiPMunit
class S13370_6050(SiPMunit):
"""Class of the 6x6 VUV4 Hamamatsu SiPM unit.
Ref: https://web.archive.org/web/20220401162036/https://hamamatsu.su/files/uploads/pdf/3_mppc/s13370_vuv4-mppc_b_(1).pdf
"""
def __init__(self):
self.name = 'S13370-6050, "6x6", by Hamamatsu'
self.width_package = 10.1
self.height_package = 8.9
self.width_tolerance = 0.1
self.height_tolerance = 0.1
self.width_active = 6
self.height_active = 6
self.active_area_correction = 1.
self.D_corner_x_active = ((self.width_package -
self.width_active)/2 +
self.width_tolerance)
self.D_corner_y_active = ((self.height_package -
self.height_active)/2 +
self.height_tolerance)
self.set_dependant_properties()
Classes
class S13370_6050
-
Class of the 6x6 VUV4 Hamamatsu SiPM unit. Ref: https://web.archive.org/web/20220401162036/https://hamamatsu.su/files/uploads/pdf/3_mppc/s13370_vuv4-mppc_b_(1).pdf
Expand source code
class S13370_6050(SiPMunit): """Class of the 6x6 VUV4 Hamamatsu SiPM unit. Ref: https://web.archive.org/web/20220401162036/https://hamamatsu.su/files/uploads/pdf/3_mppc/s13370_vuv4-mppc_b_(1).pdf """ def __init__(self): self.name = 'S13370-6050, "6x6", by Hamamatsu' self.width_package = 10.1 self.height_package = 8.9 self.width_tolerance = 0.1 self.height_tolerance = 0.1 self.width_active = 6 self.height_active = 6 self.active_area_correction = 1. self.D_corner_x_active = ((self.width_package - self.width_active)/2 + self.width_tolerance) self.D_corner_y_active = ((self.height_package - self.height_active)/2 + self.height_tolerance) self.set_dependant_properties()
Ancestors
Inherited members