blob: 199b4d790b82020034ff46d88aa5a9ffa3c23c70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
from lbne import build_lbne
from sno import build_sno as build_sno_detector
import os
import sys
dir = os.path.split(os.path.realpath(__file__))[0]
sys.path.append(dir + '/..')
from view import buildable
# from LBNE document #3951
radius = 63.30/2
height = 76.60
nstrings = 230
pmts_per_string = 88
endcap_spacing = 0.86
@buildable('lbne')
def build_lbne_200kton():
return build_lbne(radius, height, nstrings, pmts_per_string, endcap_spacing)
@buildable('minilbne')
def build_minilbne():
return build_lbne(radius/10, height/10, nstrings//10, pmts_per_string//10, endcap_spacing)
@buildable('sno')
def build_sno():
return build_sno_detector()
|