Skip to content

Commit 9b05bbc

Browse files
authored
TOFEndcapSharedHits: reduce sigma until exact value is know
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.
1 parent 592518f commit 9b05bbc

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

src/detectors/ECTOF/ECTOF.cc

Lines changed: 5 additions & 7 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,9 +52,9 @@ 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,
55+
.sigma_mode = SiliconChargeSharingConfig::ESigmaMode::rel,
56+
.sigma_sharingx = 1,
57+
.sigma_sharingy = 1,
6058
.min_edep = 0.0 * edm4eic::unit::GeV,
6159
.readout = "TOFEndcapHits",
6260
},

0 commit comments

Comments
 (0)