17 {
18
20
22 ATH_MSG_ERROR(
"PFData::caloObjects is null; caller must set it before invoking the radial energy calculator tool");
23 return StatusCode::FAILURE;
24 }
25
26 eflowCaloObjectContainer *theEflowCaloObjectContainer = thePFData.
caloObjects;
27
28 for (auto thisEflowCaloObject : *theEflowCaloObjectContainer){
29
30
31 if (thisEflowCaloObject->nClusters() < 1 ) continue;
32
33 const std::vector<std::pair<eflowTrackClusterLink*,std::pair<float,float> > > matchedTrackList = thisEflowCaloObject->efRecLink();
34
35 for( auto track: matchedTrackList){
36
37 eflowRecTrack* efRecTrack = (
track.first)->getTrack();
38
39 std::vector<eflowRecCluster*> matchedClusters;
40 matchedClusters.clear();
42 for (auto *thisEFlowTrackClusterLink : links) matchedClusters.push_back(thisEFlowTrackClusterLink->getCluster());
43
44 std::vector<std::pair<xAOD::CaloCluster*, bool> > clusterSubtractionList;
45 clusterSubtractionList.reserve(matchedClusters.size());
46 for (auto *thisEFlowRecCluster : matchedClusters) clusterSubtractionList.emplace_back(thisEFlowRecCluster->getCluster(),false);
47
48 eflowCellList calorimeterCellList;
50
51 std::vector<int> layerToStoreVector;
52 std::vector<float> radiusToStoreVector;
53 std::vector<float> avgEdensityToStoreVector;
54
55
57
62
63 double eta_extr = calorimeterCellList.
etaFF(layer);
64 ATH_MSG_DEBUG(
"extrapolated eta ["<<layer<<
"] is "<<eta_extr);
65 double phi_extr = calorimeterCellList.
phiFF(layer);
66 ATH_MSG_DEBUG(
"extrapolated phi ["<<layer<<
"] is "<<phi_extr);
67
68 if (eta_extr == -999.0){
69 continue;
70 }
71
72
73 for (unsigned int indexOfRing = 0; indexOfRing < 100; indexOfRing++){
74
76 if(beginRing == calorimeterCellList.
end())
break;
77
78 int totalCellsinRing = 0;
79 double totalEnergyPerRing = 0;
80 double energyDensityPerRing = 0;
81 double averageEnergyDensityPerRing = 0;
82
83
84 std::vector<std::pair<const CaloCell*,int> > tempVector = (*beginRing).second;
85
86
87 for (auto thisPair : tempVector){
88 const CaloDetDescrElement* DDE = (thisPair.first)->caloDDE();
90
92
93 ATH_MSG_DEBUG(
" cell eta and phi are " << (thisPair.first)->eta() <<
" and " << (thisPair.first)->phi() <<
" with index " << thisPair.second <<
" and sampling of " << sampling);
94 ATH_MSG_DEBUG(
" cell energy is " << (thisPair.first)->energy());
95
96 totalCellsinRing += 1;
97
98 totalEnergyPerRing += (thisPair.first)->
energy();
99 double totalEnergyCell = (thisPair.first)->
energy();
101 ATH_MSG_DEBUG(
" Total E per Ring is " << totalEnergyPerRing);
102
103 double cellVolume = DDE->
volume();
105
106 double energyDensityCell = totalEnergyCell/(cellVolume/1000.);
107 ATH_MSG_DEBUG(
" E density per Cell is " << energyDensityCell);
108 ATH_MSG_DEBUG(
" Initial added E density per Cell is " << energyDensityPerRing);
109 energyDensityPerRing += energyDensityCell;
110 ATH_MSG_DEBUG(
" Final added E density per Cell is " << energyDensityPerRing);
111 averageEnergyDensityPerRing = energyDensityPerRing/((totalCellsinRing)*(efRecTrack->
getTrack()->
e()/1000.));
112
113 }
114
117 ATH_MSG_DEBUG(
" Average E density per Ring is " << averageEnergyDensityPerRing);
118
119
120 if (averageEnergyDensityPerRing != 0){
121 avgEdensityToStoreVector.push_back(averageEnergyDensityPerRing);
124 layerToStoreVector.push_back(layerToStore);
125 double radiusToStore = (indexOfRing)*ringThickness;
127 radiusToStoreVector.push_back(radiusToStore);
128 }
130
131 }
132
133 }
134
135
139
140 }
141
142 }
143
144 return StatusCode::SUCCESS;
145}
CaloSampling::CaloSample CaloSample
CaloCell_ID::CaloSample getSampling() const
cell sampling
float volume() const
cell volume
static LAYER translateSampl(CaloCell_ID::CaloSample sampl)
static const int nRegions
double etaFF(eflowCaloENUM layer) const
double phiFF(eflowCaloENUM layer) const
CellIt getLowerBound(eflowCaloENUM layer, double r)
const std::vector< eflowTrackClusterLink * > & getClusterMatches() const
void setRadiusCellOrderVector(const std::vector< float > &radiusToStoreVector)
const xAOD::TrackParticle * getTrack() const
const eflowTrackCaloPoints & getTrackCaloPoints() const
void setLayerCellOrderVector(const std::vector< int > &layerToStoreVector)
void setAvgEDensityCellOrderVector(const std::vector< float > &avgEdensityToStoreVector)
static double ringThickness(const eflowCaloENUM &layer)
static void makeOrderedCellList(const eflowTrackCaloPoints &trackCalo, const std::vector< std::pair< xAOD::CaloCluster *, bool > > &clusters, eflowCellList &orderedCells)
virtual double eta() const override final
The pseudorapidity ( ) of the particle.
virtual double e() const override final
The total energy of the particle.
std::map< eflowCellPosition, std::vector< std::pair< constCaloCell *, int > > >::iterator CellIt
eflowCalo::LAYER eflowCaloENUM
eflowCaloObjectContainer * caloObjects