Skip to content

Commit fb6eb58

Browse files
Updated sensor and light yield constants for EEEMCal digitization (#2131)
### Briefly, what does this PR introduce? ### What kind of change does this PR introduce? - [ ] Bug fix (issue #__) - [ ] New feature (issue #__) - [ ] Documentation update - [ ] Other: __ ### Please check if this PR fulfills the following: - [ ] Tests for the changes have been added - [ ] Documentation has been added / updated - [ ] Changes have been communicated to collaborators ### Does this PR introduce breaking changes? What changes might users need to make to their code? No ### Does this PR change default behavior? Yes --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 2868c0b commit fb6eb58

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

src/detectors/EEMC/EEMC.cc

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,13 @@ void InitPlugin(JApplication* app) {
4444
.tRes = 0.0 * dd4hep::ns,
4545
.threshold = 0.0 * dd4hep::MeV, // Use ADC cut instead
4646
.readoutType = "sipm",
47-
.lightYield = 300. / dd4hep::MeV,
48-
// See simulation study by A. Hoghmrtsyan https://indico.bnl.gov/event/20415/
49-
// This includes quantum efficiency of the SiPM
50-
.photonDetectionEfficiency = 17. / 300.,
51-
// S14160-6015PS, 4 sensors per cell
52-
.numEffectiveSipmPixels = 159565 * 4,
47+
// 18. pe/MeV is measured with PMT at 25% QE
48+
.lightYield = 18. / 0.25 / dd4hep::MeV,
49+
// Based on slide 6 of https://indico.bnl.gov/event/29076/contributions/110749/attachments/63706/109457/Calo_meeting_Jun25_Updated.pdf
50+
// Geometric factor for 16 of 3x3 mm^2 sensors covering 20x20 mm^2 area for sensor with 28% QE
51+
.photonDetectionEfficiency = (16 * (3. * 3.) / (20. * 20.)) * 0.28,
52+
// S14160-3015PS, 16 sensors per cell
53+
.numEffectiveSipmPixels = 39984ULL * 16,
5354
.capADC = EcalEndcapN_capADC,
5455
.dyRangeADC = EcalEndcapN_dyRangeADC,
5556
.pedMeanADC = EcalEndcapN_pedMeanADC,

0 commit comments

Comments
 (0)