Skip to content

Commit d09bc09

Browse files
veprblfreee458pre-commit-ci[bot]ssedd1123
authored
TOFEndcapSharedHits: reduce sigma until exact value is know (#2170)
The current sigma is 1 mm for 100 micron pitch sensor. This may be unlikely. It also causes slowdowns similar to ones we saw in barrel TOF. ### Briefly, what does this PR introduce? ### What kind of change does this PR introduce? - [x] 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: Honey Khindri <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Tommy Chun Yuen Tsang <[email protected]>
1 parent 7c45ec3 commit d09bc09

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

src/detectors/ECTOF/ECTOF.cc

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
// Copyright 2022, Dmitry Romanov
2-
// Subject to the terms in the LICENSE file found in the top-level directory.
3-
//
4-
//
1+
// SPDX-License-Identifier: LGPL-3.0-or-later
2+
// Copyright (C) 2022 - 2025, Dmitry Romanov, Wouter Deconinck, Kolja Kauder, Barak Schmookler, Honey Khindri, Dmitry Kalinkin
53

64
#include <Evaluator/DD4hepUnits.h>
75
#include <JANA/JApplication.h>
@@ -54,10 +52,11 @@ void InitPlugin(JApplication* app) {
5452
app->Add(new JOmniFactoryGeneratorT<SiliconChargeSharing_factory>(
5553
"TOFEndcapSharedHits", {"TOFEndcapHits"}, {"TOFEndcapSharedHits"},
5654
{
57-
.sigma_mode = SiliconChargeSharingConfig::ESigmaMode::abs,
58-
.sigma_sharingx = 0.1 * dd4hep::cm,
59-
.sigma_sharingy = 0.1 * dd4hep::cm,
60-
.min_edep = 0.0 * edm4eic::unit::GeV,
55+
56+
.sigma_mode = SiliconChargeSharingConfig::ESigmaMode::rel,
57+
.sigma_sharingx = 1,
58+
.sigma_sharingy = 1,
59+
.min_edep = 0.001 * dd4hep::keV,
6160
.readout = "TOFEndcapHits",
6261
},
6362
app));

0 commit comments

Comments
 (0)