Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/detectors/B0TRK/B0TRK.cc
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ void InitPlugin(JApplication* app) {
{"B0TrackerRawHits", "B0TrackerRawHitLinks", "B0TrackerRawHitAssociations"},
{
.threshold = 10.0 * dd4hep::keV,
.timeResolution = 8,
.timeResolution = 30 * dd4hep::picosecond,
Comment thread
simonge marked this conversation as resolved.
Outdated
},
app));

// Convert raw digitized hits into hits with geometry info (ready for tracking)
app->Add(new JOmniFactoryGeneratorT<TrackerHitReconstruction_factory>(
"B0TrackerRecHits", {"B0TrackerRawHits"}, {"B0TrackerRecHits"},
{
.timeResolution = 8,
.timeResolution = 30 * dd4hep::picosecond,
},
app));
}
Expand Down
4 changes: 2 additions & 2 deletions src/detectors/FOFFMTRK/FOFFMTRK.cc
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ void InitPlugin(JApplication* app) {
"ForwardOffMTrackerRawHitAssociations"},
{
.threshold = 10.0 * dd4hep::keV,
.timeResolution = 8,
.timeResolution = 30 * dd4hep::picosecond,
},
app));

app->Add(new JOmniFactoryGeneratorT<TrackerHitReconstruction_factory>(
"ForwardOffMTrackerRecHits", {"ForwardOffMTrackerRawHits"}, {"ForwardOffMTrackerRecHits"},
{
.timeResolution = 8,
.timeResolution = 30 * dd4hep::picosecond,
},
app));

Expand Down
4 changes: 2 additions & 2 deletions src/detectors/RPOTS/RPOTS.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ void InitPlugin(JApplication* app) {
{"ForwardRomanPotRawHits", "ForwardRomanPotRawHitLinks", "ForwardRomanPotRawHitAssociations"},
{
.threshold = 10.0 * dd4hep::keV,
.timeResolution = 8,
.timeResolution = 30 * dd4hep::picosecond,
},
app));

app->Add(new JOmniFactoryGeneratorT<TrackerHitReconstruction_factory>(
"ForwardRomanPotRecHits", {"ForwardRomanPotRawHits"}, {"ForwardRomanPotRecHits"},
{
.timeResolution = 8,
.timeResolution = 30 * dd4hep::picosecond,
},
app));

Expand Down
Loading