From 4bad7bbb9c29fa370530add887e01340381e239d Mon Sep 17 00:00:00 2001 From: jmcarcell Date: Mon, 24 Jun 2024 18:04:57 +0200 Subject: [PATCH] Fix pre-commit --- .../DDPlanarDigi/components/DDPlanarDigi.cpp | 4 ++-- k4Reco/DDPlanarDigi/components/DDPlanarDigi.h | 18 +++++++++--------- test/CMakeLists.txt | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/k4Reco/DDPlanarDigi/components/DDPlanarDigi.cpp b/k4Reco/DDPlanarDigi/components/DDPlanarDigi.cpp index 79df11a..29dee1a 100644 --- a/k4Reco/DDPlanarDigi/components/DDPlanarDigi.cpp +++ b/k4Reco/DDPlanarDigi/components/DDPlanarDigi.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2023 Key4hep-Project. + * Copyright (c) 2020-2023 Key4hep-Project. * * This file is part of Key4hep. * See https://key4hep.github.io/key4hep-doc/ for further info. @@ -32,9 +32,9 @@ #include +#include #include #include -#include DDPlanarDigi::DDPlanarDigi(const std::string& name, ISvcLocator* svcLoc) : MultiTransformer(name, svcLoc, diff --git a/k4Reco/DDPlanarDigi/components/DDPlanarDigi.h b/k4Reco/DDPlanarDigi/components/DDPlanarDigi.h index c9c0df8..3a0b324 100644 --- a/k4Reco/DDPlanarDigi/components/DDPlanarDigi.h +++ b/k4Reco/DDPlanarDigi/components/DDPlanarDigi.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2023 Key4hep-Project. + * Copyright (c) 2020-2023 Key4hep-Project. * * This file is part of Key4hep. * See https://key4hep.github.io/key4hep-doc/ for further info. @@ -38,13 +38,13 @@ #include /** ======= DDPlanarDigi ==========
- * Creates TrackerHits from SimTrackerHits, smearing them according to the input parameters. + * Creates TrackerHits from SimTrackerHits, smearing them according to the input parameters. * The positions of "digitized" TrackerHits are obtained by gaussian smearing positions - * of SimTrackerHits perpendicular and along the ladder according to the specified point resolutions. + * of SimTrackerHits perpendicular and along the ladder according to the specified point resolutions. * The geometry of the surface is retreived from DDRec::Surface associated to the hit via cellID. - * - * - *

Input collections and prerequisites

+ * + * + *

Input collections and prerequisites

* Processor requires a collection of SimTrackerHits
*

Output

* Processor produces collection of smeared TrackerHits
@@ -63,7 +63,7 @@ * @param Sub_Detector_ID ID of Sub-Detector using UTIL/ILDConf.h from lcio
* (default value lcio::ILDDetID::VXD)
*
- * + * * Originally in https://github.com/iLCSoft/MarlinTrkProcessors/blob/master/source/Digitisers/include/DDPlanarDigi.h */ @@ -118,9 +118,9 @@ struct DDPlanarDigi final Gaudi::Property m_outputFileName{this, "OutputFileName", "planar_digi_histograms.root", "Output file name for the histograms"}; - const dd4hep::rec::SurfaceMap* surfaceMap; + const dd4hep::rec::SurfaceMap* surfaceMap; std::array>, hSize> m_histograms; - std::string m_collName; + std::string m_collName; inline static thread_local std::mt19937 m_engine; SmartIF m_geoSvc; diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 42c98cf..ba07fe7 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,5 +1,5 @@ #[[ -Copyright (c) 2019-2023 Key4hep-Project. +Copyright (c) 2020-2023 Key4hep-Project. This file is part of Key4hep. See https://key4hep.github.io/key4hep-doc/ for further info.