diff options
| author | Stan Seibert <stan@mtrr.org> | 2011-09-19 14:36:13 -0400 |
|---|---|---|
| committer | Stan Seibert <stan@mtrr.org> | 2011-09-19 14:36:13 -0400 |
| commit | a21b05e4727403e2e061234289af9e60e6022e5a (patch) | |
| tree | 7a7d4c5809c370f3e542cfc8cb0bec7c2e4f5cdc /detectors/__init__.py | |
| parent | cfecff941fc619eb7269128afc62d9c11ae78aff (diff) | |
| parent | a38c56ff1e268298568077af7f03c8ac64c6fb82 (diff) | |
| download | chroma-a21b05e4727403e2e061234289af9e60e6022e5a.tar.gz chroma-a21b05e4727403e2e061234289af9e60e6022e5a.tar.bz2 chroma-a21b05e4727403e2e061234289af9e60e6022e5a.zip | |
merge relayout branch
Diffstat (limited to 'detectors/__init__.py')
| -rw-r--r-- | detectors/__init__.py | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/detectors/__init__.py b/detectors/__init__.py deleted file mode 100644 index 2028300..0000000 --- a/detectors/__init__.py +++ /dev/null @@ -1,35 +0,0 @@ -from lbne import build_lbne -from sno import build_sno as build_sno_detector -from miniclean import build_miniclean as build_miniclean_detector - -# from LBNE document #3951 -radius = 63.30/2 -height = 76.60 -nstrings = 230 -pmts_per_string = 88 -endcap_spacing = 0.86 - -def lbne_event_view(): - return build_lbne(radius, height, nstrings, pmts_per_string, - endcap_spacing, physical_model=False) - -def lbne(): - return build_lbne(radius, height, nstrings, pmts_per_string, - endcap_spacing) - -def minilbne(): - return build_lbne(radius/10, height/10, nstrings//10, pmts_per_string//10, - endcap_spacing) - -def microlbne(): - return build_lbne(radius/40, height/40, nstrings//40, pmts_per_string//40, - endcap_spacing) - -def sno(): - return build_sno_detector() - -def cad_sno(): - return build_sno_detector(real_av=True) - -def miniclean(): - return build_miniclean_detector() |
