Analysis Software
Documentation for
sPHENIX
simulation software
Home page
Related Pages
Modules
Namespaces
Classes
Files
Examples
External Links
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
CsvPlanarClusterWriter.hpp
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file CsvPlanarClusterWriter.hpp
1
// This file is part of the Acts project.
2
//
3
// Copyright (C) 2017-2018 CERN for the benefit of the Acts project
4
//
5
// This Source Code Form is subject to the terms of the Mozilla Public
6
// License, v. 2.0. If a copy of the MPL was not distributed with this
7
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
8
9
#pragma once
10
11
#include "
Acts/Digitization/PlanarModuleCluster.hpp
"
12
#include "
Acts/Geometry/TrackingGeometry.hpp
"
13
#include "
Acts/Utilities/Logger.hpp
"
14
#include "
ActsExamples/EventData/GeometryContainers.hpp
"
15
#include "
ActsExamples/EventData/SimHit.hpp
"
16
#include "
ActsExamples/Framework/DataHandle.hpp
"
17
#include "
ActsExamples/Framework/ProcessCode.hpp
"
18
#include "
ActsExamples/Framework/WriterT.hpp
"
19
20
#include <cstddef>
21
#include <limits>
22
#include <memory>
23
#include <string>
24
25
namespace
Acts {
26
class
PlanarModuleCluster;
27
class
TrackingGeometry
;
28
}
// namespace Acts
29
30
namespace
ActsExamples {
31
struct
AlgorithmContext;
32
49
class
CsvPlanarClusterWriter
final
50
:
public
WriterT
<GeometryIdMultimap<Acts::PlanarModuleCluster>> {
51
public
:
52
struct
Config
{
54
std::string
inputClusters
;
56
std::string
inputSimHits
;
58
std::string
outputDir
;
60
size_t
outputPrecision
= std::numeric_limits<float>::max_digits10;
62
std::shared_ptr<const Acts::TrackingGeometry>
trackingGeometry
;
63
};
64
69
CsvPlanarClusterWriter
(
const
Config
&
config
,
Acts::Logging::Level
level
);
70
72
const
Config
&
config
()
const
{
return
m_cfg
; }
73
74
protected
:
79
ProcessCode
writeT
(
80
const
AlgorithmContext
& ctx,
81
const
GeometryIdMultimap<Acts::PlanarModuleCluster>
&
clusters
)
override
;
82
83
private
:
84
Config
m_cfg
;
85
86
ReadDataHandle<SimHitContainer>
m_inputSimHits
{
this
,
"InputSimHits"
};
87
};
88
89
}
// namespace ActsExamples
acts
blob
sPHENIX
Examples
Io
Csv
include
ActsExamples
Io
Csv
CsvPlanarClusterWriter.hpp
Built by
Jin Huang
. updated:
Sat Feb 17 2024 22:17:38
using
1.8.2 with
sPHENIX GitHub integration