ATLAS Offline Software
Loading...
Searching...
No Matches
PixelClusterRetriever.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4
6#include "JiveXML/DataType.h"
7
8#include "CLHEP/Geometry/Point3D.h"
9
11
14
16
17namespace JiveXML {
18
25 PixelClusterRetriever::PixelClusterRetriever(const std::string& type,const std::string& name,const IInterface* parent):
26 AthAlgTool(type,name,parent)
27 {
28
29 //Only declare the interface
30 declareInterface<IDataRetriever>(this);
31
32 //And the properties
33 declareProperty("PixelClusters" , m_PixelClusterCollName = "PixelClusters");
34 declareProperty("PixelTruthMap" , m_PixelTruthMapName = "PRD_MultiTruthPixel");
35 }
36
38 ATH_CHECK(m_pixelDetEleCollKey.initialize());
42
43 return m_geo.retrieve();
44 }
45
53 StatusCode PixelClusterRetriever::retrieve(ToolHandle<IFormatTool> &FormatTool) {
54
55 //be verbose
56 ATH_MSG_DEBUG( "Retrieving " << dataTypeName() );
57
59 const InDetDD::SiDetectorElementCollection* elements(*pixelDetEleHandle);
60 if (not pixelDetEleHandle.isValid() or elements==nullptr) {
61 ATH_MSG_FATAL(m_pixelDetEleCollKey.fullKey() << " is not available.");
62 return StatusCode::FAILURE;
63 }
64
65 //Retrieve the cluster container
67 if (!SiClusterCont.isValid()) {
68 ATH_MSG_WARNING( "Could not retrieve SiClusterContainer with name " << m_PixelClusterCollName.key() );
69 return StatusCode::RECOVERABLE;
70 }
71
72 //Retrieve the truth collection
75 simClusterMap = SG::makeHandle(m_PixelTruthMapName);
76 if (!simClusterMap.isValid()) {
77 //Just write out a warning if this fails
78 ATH_MSG_WARNING( "Could not retrieve PRD_MultiTruthCollection with name " << m_PixelTruthMapName.key() );
79 }
80 }
81
82 //Loop over all collections in the container and count the clusters
83 unsigned long NClusterTotal = 0;
84 for (const auto SiClusterColl : * SiClusterCont)
85 NClusterTotal += SiClusterColl->size();
86
87 //Now prepare the output data vectors
88 DataVect x0; x0.reserve(NClusterTotal);
89 DataVect y0; y0.reserve(NClusterTotal);
90 DataVect z0; z0.reserve(NClusterTotal);
91 DataVect widthx; widthx.reserve(NClusterTotal);
92 DataVect widthy; widthy.reserve(NClusterTotal);
93 DataVect eloss; eloss.reserve(NClusterTotal);
94 DataVect ident; ident.reserve(NClusterTotal);
95
96 //Usually less than one track per cluster - so reserving one should be okay
97 DataVect numBarcodes; numBarcodes.reserve(NClusterTotal);
98 DataVect barcodes; barcodes.reserve(2*NClusterTotal);
99
100 DataVect phiModule; phiModule.reserve(NClusterTotal);
101 DataVect etaModule; etaModule.reserve(NClusterTotal);
102
103 //Loop over all cluster collections in the container
104 for (const auto SiClusterColl : * SiClusterCont) {
105
106 //Only run on Pixel clusters
107 if ( ! m_geo->PixelIDHelper()->is_pixel(SiClusterColl->identify())) continue ;
108
109 //Now loop over all clusters in that collection
110 for (const auto sicluster : * SiClusterColl) {
111
112 //Get the cluster
113 const InDet::PixelCluster *cluster = dynamic_cast<const InDet::PixelCluster*>(sicluster);
114 if (not cluster) continue;
115 //and the detector element for that cluster via the id
116 Identifier id = m_geo->PixelIDHelper()->wafer_id(cluster->identify());
117 IdentifierHash wafer_hash = m_geo->PixelIDHelper()->wafer_hash(id);
118 const InDetDD::SiDetectorElement* element = elements->getDetectorElement(wafer_hash);
119 if (!element){
120 ATH_MSG_DEBUG( "Could not obtain Detector Element with ID " << id );
121 continue ;
122 }
123
124 //Now store all the information we've obtained so far
125 x0.push_back(DataType(cluster->globalPosition().x() /10.));
126 y0.push_back(DataType(cluster->globalPosition().y() /10.));
127 z0.push_back(DataType(cluster->globalPosition().z() /10.));
128 widthx.push_back(DataType(cluster->width().phiR()/10.0));
129 widthy.push_back(DataType(cluster->width().z()/10.0));
130 eloss.push_back(DataType(cluster->energyLoss()));
131
132 //Get the cluster id
133 Identifier clusterId = cluster->identify();
134 ident.push_back(DataType(clusterId.get_compact()));
135 phiModule.push_back(DataType(m_geo->PixelIDHelper()->phi_module(clusterId)));
136 etaModule.push_back(DataType(m_geo->PixelIDHelper()->eta_module(clusterId)));
137
138 //Only process truth if its there
139 if ( !m_usePixelTruthMap || !simClusterMap.isValid() ) continue;
140
141 // Count the number of associated truth particles, and store their barcodes
142 unsigned long countBarcodes=0;
143 using iter = PRD_MultiTruthCollection::const_iterator;
144 std::pair<iter,iter> range = simClusterMap->equal_range(clusterId);
145 for (iter i = range.first; i != range.second; ++i) {
146 ++countBarcodes;
147 barcodes.push_back(DataType(i->second.barcode()));
148 }
149 numBarcodes.push_back(DataType(countBarcodes));
150
151 } // loop over clusters
152 } // loop over collections
153
154
155 //Now generate a DataMap for the output
156 DataMap dataMap;
157 dataMap["x0"] = x0;
158 dataMap["y0"] = y0;
159 dataMap["z0"] = z0;
160 dataMap["widthx"] = widthx;
161 dataMap["widthy"] = widthy;
162 dataMap["eloss"] = eloss;
163 dataMap["id"] = ident;
164 dataMap["phiModule"] = phiModule;
165 dataMap["etaModule"] = etaModule;
166
167 //Only store truth association if we processed them
168 if ( numBarcodes.size() > 0 ){
169 //Add barcodes counter
170 dataMap["numBarcodes"] = numBarcodes;
171 //Calculate multiplicy for barcodes of truth tracks
172 std::string bctag = "barcodes multiple=\""+DataType(barcodes.size()/double(numBarcodes.size())).toString()+"\"";
173 dataMap[bctag] = barcodes;
174 }
175
176 //Be verbose
177 ATH_MSG_DEBUG( " Retrieved " << dataTypeName() << ": " << x0.size() );
178
179 //forward data to formating tool and return
180 return FormatTool->AddToEvent(dataTypeName(), "", &dataMap);
181 }
182
183}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_FATAL(x)
#define ATH_MSG_WARNING(x)
#define ATH_MSG_DEBUG(x)
OFFLINE_FRAGMENTS_NAMESPACE::PointerType DataType
This is an Identifier helper class for the Pixel subdetector.
AthAlgTool(const std::string &type, const std::string &name, const IInterface *parent)
Constructor with parameters:
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
This is a "hash" representation of an Identifier.
value_type get_compact() const
Get the compact id.
Class to hold the SiDetectorElement objects to be put in the detector store.
const SiDetectorElement * getDetectorElement(const IdentifierHash &hash) const
Class to hold geometrical description of a silicon detector element.
float energyLoss() const
Energy lost is in the cluster is computed from the total charge id a calibration could be used.
const Amg::Vector3D & globalPosition() const
return global position reference
const InDet::SiWidth & width() const
return width class reference
double z() const
Definition SiWidth.h:131
double phiR() const
Definition SiWidth.h:126
const ToolHandle< IInDetGeoModelTool > m_geo
A tool handle to the geo model tool.
SG::ReadCondHandleKey< InDetDD::SiDetectorElementCollection > m_pixelDetEleCollKey
virtual std::string dataTypeName() const
Return the name of the data type.
SG::ReadHandleKey< InDet::SiClusterContainer > m_PixelClusterCollName
The StoreGate key for the SiClusterCollection to retrieve.
PixelClusterRetriever(const std::string &type, const std::string &name, const IInterface *parent)
Standard Constructor.
virtual StatusCode retrieve(ToolHandle< IFormatTool > &FormatTool)
Retrieve all the data.
virtual StatusCode initialize()
initialize only geo model tool
SG::ReadHandleKey< PRD_MultiTruthCollection > m_PixelTruthMapName
bool m_usePixelTruthMap
The StoreGate key for the PRD MultiTruthMap with the track associations.
virtual bool isValid() override final
Can the handle be successfully dereferenced?
Identifier identify() const
return the identifier
This header is shared inbetween the C-style server thread and the C++ Athena ServerSvc.
std::map< std::string, DataVect > DataMap
Definition DataType.h:59
std::vector< DataType > DataVect
Defines a map with a key and a vector of DataType objects e.g.
Definition DataType.h:58
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())