diff options
author | tlatorre <tlatorre@uchicago.edu> | 2018-09-11 10:05:05 -0500 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2018-09-11 10:05:05 -0500 |
commit | 25e75ad0ed81436ea50de5bbe7bf900427ff17aa (patch) | |
tree | 44c387e020b4147db9a4c97a72a7507faa996550 /src/Makefile | |
parent | c8bff440e7848a33f369dff1ce11f726cecbbe20 (diff) | |
download | sddm-25e75ad0ed81436ea50de5bbe7bf900427ff17aa.tar.gz sddm-25e75ad0ed81436ea50de5bbe7bf900427ff17aa.tar.bz2 sddm-25e75ad0ed81436ea50de5bbe7bf900427ff17aa.zip |
add PMT response
This commit adds code to read in the PMT response from the PMTR bank from
SNOMAN. This file was used for the grey disk model in SNOMAN and was created
using a full 3D simulation of the PMT and concentrator. Since the PMT response
in SNOMAN included the quantum efficiency of the PMT, we have to divide that
out to get just the PMT response independent of the quantum efficiency.
I also updated the likelihood calculation to use the pmt response. Currently
the energy is being fit too high which I think will improve when we update the
solid angle calculation to use the radius of the concentrator instead of the
PMT.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index b7b295c..3f04dd8 100644 --- a/src/Makefile +++ b/src/Makefile @@ -12,11 +12,11 @@ calculate_limits: calculate_limits.c solid_angle.o: solid_angle.c -test: test.o solid_angle.o optics.o muon.o vector.o quantum_efficiency.o pdg.o scattering.o misc.o mt19937ar.o sno_charge.o path.o random.o +test: test.o solid_angle.o optics.o muon.o vector.o quantum_efficiency.o pdg.o scattering.o misc.o mt19937ar.o sno_charge.o path.o random.o pmt_response.o db.o dict.o siphash.o test-vector: test-vector.o vector.o mt19937ar.o -test-likelihood: test-likelihood.o muon.o random.o optics.o quantum_efficiency.o mt19937ar.o pdg.o vector.o solid_angle.o scattering.o +test-likelihood: test-likelihood.o muon.o random.o optics.o quantum_efficiency.o mt19937ar.o pdg.o vector.o solid_angle.o scattering.o pmt_response.o db.o dict.o siphash.o misc.o test-path: test-path.o mt19937ar.o vector.o path.o random.o misc.o @@ -24,7 +24,7 @@ test-charge: test-charge.o sno_charge.o misc.o test-zebra: test-zebra.o zebra.o pack2b.o -fit: fit.o zebra.o likelihood.o pmt.o vector.o misc.o muon.o optics.o quantum_efficiency.o solid_angle.o pdg.o scattering.o zdab_utils.o pack2b.o sno_charge.o db.o dqxx.o dict.o siphash.o path.o +fit: fit.o zebra.o likelihood.o pmt.o vector.o misc.o muon.o optics.o quantum_efficiency.o solid_angle.o pdg.o scattering.o zdab_utils.o pack2b.o sno_charge.o db.o dqxx.o dict.o siphash.o path.o pmt_response.o clean: rm -f *.o calculate_limits test Makefile.dep |