Skip to content

Commit

Permalink
Fix pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Jun 24, 2024
1 parent 0b68db9 commit 4bad7bb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions k4Reco/DDPlanarDigi/components/DDPlanarDigi.cpp
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -32,9 +32,9 @@

#include <TFile.h>

#include <fmt/format.h>
#include <cmath>
#include <random>
#include <fmt/format.h>

DDPlanarDigi::DDPlanarDigi(const std::string& name, ISvcLocator* svcLoc)
: MultiTransformer(name, svcLoc,
Expand Down
18 changes: 9 additions & 9 deletions k4Reco/DDPlanarDigi/components/DDPlanarDigi.h
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -38,13 +38,13 @@
#include <vector>

/** ======= DDPlanarDigi ========== <br>
* 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.
*
*
* <h4>Input collections and prerequisites</h4>
*
*
* <h4>Input collections and prerequisites</h4>
* Processor requires a collection of SimTrackerHits <br>
* <h4>Output</h4>
* Processor produces collection of smeared TrackerHits<br>
Expand All @@ -63,7 +63,7 @@
* @param Sub_Detector_ID ID of Sub-Detector using UTIL/ILDConf.h from lcio <br>
* (default value lcio::ILDDetID::VXD) <br>
* <br>
*
*
* Originally in https://github.com/iLCSoft/MarlinTrkProcessors/blob/master/source/Digitisers/include/DDPlanarDigi.h
*/

Expand Down Expand Up @@ -118,9 +118,9 @@ struct DDPlanarDigi final
Gaudi::Property<std::string> 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<std::unique_ptr<Gaudi::Accumulators::RootHistogram<1>>, hSize> m_histograms;
std::string m_collName;
std::string m_collName;

inline static thread_local std::mt19937 m_engine;
SmartIF<IGeoSvc> m_geoSvc;
Expand Down
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit 4bad7bb

Please sign in to comment.