blob: 285480dcad761225f3896c4b4e58079420ba0831 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
from lbne import LBNE
# from lbne document 94
radius = 25.0
height = 50.0
nstrings = 324
pmts_per_string = 102
endcap_spacing = .485
lbne = LBNE(radius, height, nstrings, pmts_per_string, endcap_spacing)
minilbne = LBNE(radius/10, height/10, nstrings//10, pmts_per_string//10, endcap_spacing)
microlbne = LBNE(radius/50, height/50, nstrings//50, pmts_per_string//50, endcap_spacing)
|