1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
from lbne import LBNE
# from Water Cherenkov case study
radius = 65.0/2
height = 80.3
nstrings = 229
pmts_per_string = 90
endcap_spacing = 0.8912
minilbne = LBNE(radius/10, height/10, nstrings//10, pmts_per_string//10, endcap_spacing)
microlbne = LBNE(radius/40, height/40, nstrings//40, pmts_per_string//40, endcap_spacing)
minilbne_cut = LBNE(radius/10, height/10, nstrings//10, pmts_per_string//10, endcap_spacing,
cut_pmt=True)
microlbne_cut = LBNE(radius/40, height/40, nstrings//40, pmts_per_string//40, endcap_spacing,
cut_pmt=True)
lbne_cut = LBNE(radius, height, nstrings, pmts_per_string, endcap_spacing, cut_pmt=True)
|