Analysis Software
Documentation for
sPHENIX
simulation software
Home page
Related Pages
Modules
Namespaces
Classes
Files
Examples
External Links
File List
File Members
Analysis Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
blob
sPHENIX
Alignment
CI
cmake
Core
include
scripts
src
AmbiguityResolution
Definitions
Detector
Digitization
EventData
Geometry
AbstractVolume.cpp
ConeLayer.cpp
ConeVolumeBounds.cpp
CuboidVolumeBounds.cpp
CuboidVolumeBuilder.cpp
CutoutCylinderVolumeBounds.cpp
CylinderLayer.cpp
CylinderVolumeBounds.cpp
CylinderVolumeBuilder.cpp
CylinderVolumeHelper.cpp
DiscLayer.cpp
Extent.cpp
GenericApproachDescriptor.cpp
GenericCuboidVolumeBounds.cpp
GeometryIdentifier.cpp
GlueVolumesDescriptor.cpp
KDTreeTrackingGeometryBuilder.cpp
Layer.cpp
LayerArrayCreator.cpp
LayerCreator.cpp
NavigationLayer.cpp
PassiveLayerBuilder.cpp
PlaneLayer.cpp
Polyhedron.cpp
ProtoLayer.cpp
ProtoLayerHelper.cpp
SurfaceArrayCreator.cpp
TrackingGeometry.cpp
TrackingGeometryBuilder.cpp
TrackingVolume.cpp
TrackingVolumeArrayCreator.cpp
TrapezoidVolumeBounds.cpp
Volume.cpp
VolumeBounds.cpp
MagneticField
Material
Propagator
Surfaces
TrackFinding
TrackFitting
Utilities
Vertexing
Visualization
ActsVersion.cpp
docs
Examples
Fatras
Plugins
Tests
acts-fatras
analysis
analysis_tpc_prototype
coresoftware
Doxygen_Assist
g4exampledetector
GenFit
JETSCAPE
KFParticle
macros
online_distribution
OnlMon
prototype
pythia6
rcdaq
RDBC
tutorials
doxygen_mainpage.h
File Members
Examples
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
GeometryIdentifier.cpp
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file GeometryIdentifier.cpp
1
// This file is part of the Acts project.
2
//
3
// Copyright (C) 2019-2020 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
#include "
Acts/Geometry/GeometryIdentifier.hpp
"
10
11
#include <array>
12
#include <ostream>
13
14
std::ostream&
Acts::operator<<
(std::ostream&
os
,
Acts::GeometryIdentifier
id
) {
15
// zero represents an invalid/undefined identifier
16
if
(
id
.
value
() == 0
u
) {
17
return
(os <<
"undefined"
);
18
}
19
20
static
const
std::array<const char*, 6>
names
= {
21
"vol="
,
"bnd="
,
"lay="
,
"apr="
,
"sen="
,
"ext="
,
22
};
23
24
const
std::array<GeometryIdentifier::Value, 6>
levels
= {
25
id
.volume(),
id
.boundary(),
id
.layer(),
26
id
.approach(),
id
.sensitive(),
id
.extra()};
27
28
bool
writeSeparator =
false
;
29
for
(
auto
i
= 0
u
;
i
< levels.size(); ++
i
) {
30
if
(levels[
i
] != 0
u
) {
31
if
(writeSeparator) {
32
os <<
'|'
;
33
}
34
os << names[
i
] << levels[
i
];
35
writeSeparator =
true
;
36
}
37
}
38
return
os
;
39
}
40
41
Acts::GeometryIdentifier
Acts::GeometryIdentifierHook::decorateIdentifier
(
42
Acts::GeometryIdentifier
identifier
,
43
const
Acts::Surface
&
/*surface*/
)
const
{
44
return
identifier
;
45
}
acts
blob
sPHENIX
Core
src
Geometry
GeometryIdentifier.cpp
Built by
Jin Huang
. updated:
Sat Feb 17 2024 22:17:36
using
1.8.2 with
sPHENIX GitHub integration