Skip to content

Commit

Permalink
TOF
Browse files Browse the repository at this point in the history
  • Loading branch information
Zehvogel committed Jul 16, 2024
1 parent 5c3bcc4 commit 141a6dc
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
1 change: 1 addition & 0 deletions CLDConfig/CLDReconstruction.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@
sequenceLoader.load("HighLevelReco/PFOSelector")
sequenceLoader.load("HighLevelReco/JetClusteringOrRenaming")
sequenceLoader.load("HighLevelReco/JetAndVertex")
sequenceLoader.load("HighLevelReco/TOF")
# event number processor, down here to attach the conversion back to edm4hep to it
algList.append(EventNumber)

Expand Down
42 changes: 42 additions & 0 deletions CLDConfig/HighLevelReco/TOF.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
#
# Copyright (c) 2014-2024 Key4hep-Project.
#
# This file is part of Key4hep.
# See https://key4hep.github.io/key4hep-doc/ for further info.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
from Gaudi.Configuration import INFO, DEBUG
from Configurables import MarlinProcessorWrapper

TrackLengthProcessor = MarlinProcessorWrapper("TrackLengthProcessor")
TrackLengthProcessor.OutputLevel = INFO
TrackLengthProcessor.ProcessorType = "TrackLengthProcessor"
TrackLengthProcessor.Parameters = {"ReconstructedParticleCollection": ["PandoraPFOs"]}

TOFEstimators0ps = MarlinProcessorWrapper("TOFEstimators0ps")
TOFEstimators0ps.OutputLevel = DEBUG
TOFEstimators0ps.ProcessorType = "TOFEstimators"
TOFEstimators0ps.Parameters = {
"ExtrapolateToEcal": ["true"],
"MaxEcalLayer": ["10"],
"ReconstructedParticleCollection": ["PandoraPFOs"],
"TimeResolution": ["0"],
"TofMethod": ["closest"],
"Verbosity": ["DEBUG9"],
}

TOFSequence = [
TrackLengthProcessor,
TOFEstimators0ps,
]

0 comments on commit 141a6dc

Please sign in to comment.