diff options
author | Stan Seibert <stan@mtrr.org> | 2011-06-21 10:23:38 -0400 |
---|---|---|
committer | Stan Seibert <stan@mtrr.org> | 2011-06-21 10:23:38 -0400 |
commit | 02beb07ecc3eb0a914e325928fffb3ae3d6e3878 (patch) | |
tree | 0e179b3cb27eca4eedecb0965f054bc86ed97419 /detectors/__init__.py | |
parent | 5b6ddaadfbcea436dfdc1e736f7da7763438dc45 (diff) | |
download | chroma-02beb07ecc3eb0a914e325928fffb3ae3d6e3878.tar.gz chroma-02beb07ecc3eb0a914e325928fffb3ae3d6e3878.tar.bz2 chroma-02beb07ecc3eb0a914e325928fffb3ae3d6e3878.zip |
Add a microlbne detector for debugging purposes.
Diffstat (limited to 'detectors/__init__.py')
-rw-r--r-- | detectors/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/detectors/__init__.py b/detectors/__init__.py index 7a36101..285480d 100644 --- a/detectors/__init__.py +++ b/detectors/__init__.py @@ -9,3 +9,4 @@ 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) |