8 #include "CLHEP/Geometry/Point3D.h"
30 declareInterface<IDataRetriever>(
this);
43 return m_geo.retrieve();
60 if (not pixelDetEleHandle.
isValid() or elements==
nullptr) {
62 return StatusCode::FAILURE;
69 return StatusCode::RECOVERABLE;
83 unsigned long NClusterTotal = 0;
84 for (
const auto SiClusterColl : * SiClusterCont)
85 NClusterTotal += SiClusterColl->size();
88 DataVect x0; x0.reserve(NClusterTotal);
89 DataVect y0; y0.reserve(NClusterTotal);
91 DataVect widthx; widthx.reserve(NClusterTotal);
92 DataVect widthy; widthy.reserve(NClusterTotal);
93 DataVect eloss; eloss.reserve(NClusterTotal);
97 DataVect numBarcodes; numBarcodes.reserve(NClusterTotal);
101 DataVect etaModule; etaModule.reserve(NClusterTotal);
104 for (
const auto SiClusterColl : * SiClusterCont) {
107 if ( !
m_geo->PixelIDHelper()->is_pixel(SiClusterColl->identify())) continue ;
110 for (
const auto sicluster : * SiClusterColl) {
114 if (not cluster)
continue;
120 ATH_MSG_DEBUG(
"Could not obtain Detector Element with ID " <<
id );
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()));
136 etaModule.push_back(
DataType(
m_geo->PixelIDHelper()->eta_module(clusterId)));
142 unsigned long countBarcodes=0;
143 using iter = PRD_MultiTruthCollection::const_iterator;
144 std::pair<iter,iter>
range = simClusterMap->equal_range(clusterId);
149 numBarcodes.push_back(
DataType(countBarcodes));
165 dataMap[
"etaModule"] = etaModule;
168 if ( numBarcodes.size() > 0 ){
170 dataMap[
"numBarcodes"] = numBarcodes;
172 std::string bctag =
"barcodes multiple=\""+
DataType(
barcodes.size()/
double(numBarcodes.size())).toString()+
"\"";