9#include "CaloGeoHelpers/CaloSampling.h"
27 const std::string& name,
28 const ::IInterface* parent)
32 declareInterface<ICaloRingsBuilder>(
this);
48 for (
size_t rsConfIdx = 0; rsConfIdx <
m_nRingSets; ++rsConfIdx) {
50 const auto rsNLayers =
m_nLayers[rsConfIdx];
51 auto end_itr = itr + rsNLayers;
53 const auto& caloSampleItr =
reinterpret_cast< std::vector<CaloSampling::CaloSample>::iterator&
>(itr);
54 const auto& caloSampleEndItr =
reinterpret_cast< std::vector<CaloSampling::CaloSample>::iterator&
>(end_itr);
56 std::vector<CaloSampling::CaloSample> rsLayers( caloSampleItr , caloSampleEndItr);
72 }
catch (
const std::runtime_error &e) {
73 ATH_MSG_ERROR(
"Could not add collection bounderies due to: " << e.what() );
75 std::ostringstream
str;
78 return StatusCode::FAILURE;
85 return StatusCode::SUCCESS;
91 return StatusCode::SUCCESS;
100 const auto nStrips =
rawConf.nRings;
101 int midPoint = nStrips/2;
106 return StatusCode::FAILURE;
113 std::function<double(
const CaloCell*)> calcDelta;
120 return (seed.eta() - cell->eta())/
rawConf.etaWidth;
124 for (
const int layer :
rawConf.layers) {
126 for (
const CaloCell *cell : cells ) {
129 const auto delta = calcDelta( cell );
130 int idx =copysign(
static_cast<int>(std::floor( delta + .5)),delta);
131 unsigned int stripIdx(0);
134 stripIdx = midPoint - (idx*2);
135 if (stripIdx>100000){stripIdx = 0;}
137 stripIdx = midPoint - (idx*2 + 1);
138 if (stripIdx>100000){stripIdx = 0;}
140 if ( stripIdx < nStrips ){
142 rs->at(stripIdx) += cell->energy()/std::cosh(cell->eta());
144 rs->at(stripIdx) += cell->energy();
149 return StatusCode::SUCCESS;
Scalar deltaPhi(const MatrixBase< Derived > &vec) const
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_WARNING(x)
Helpers for checking error return status codes and reporting errors.
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
Data object for each calorimeter readout cell.
This class provides the client interface for accessing the detector description information common to...
static double diff(double phi1, double phi2)
simple phi1 - phi2 calculation, but result is fixed to respect range.
CaloRingsBuilder(const std::string &type, const std::string &name, const IInterface *parent)
Default constructor.
SG::WriteHandleKey< xAOD::RingSetContainer > m_rsContName
Name of RingSetContainer on Event StoreGate.
const xAOD::RingSetConf::RawConfCollection & rawConf() override
Extra methods:
xAOD::RingSetConf::RawConfCollection m_rsRawConfCol
holds each RingSet configuration (filled at initialize)
SG::WriteHandleKey< xAOD::CaloRingsContainer > m_crContName
Fill RingSet seed for IParticle.
size_t m_nRingSets
hold the number of RingSets we are building for each CaloRings
Gaudi::Property< std::vector< float > > m_etaWidth
Width of the ring in eta.
Gaudi::Property< std::vector< unsigned int > > m_nLayers
Number of calorimeter layers in each ringset.
Gaudi::Property< float > m_cellMaxDEtaDist
Maximum cell distance in eta to seed.
SG::ReadCondHandleKey< CaloDetDescrManager > m_caloMgrKey
Gaudi::Property< std::vector< float > > m_phiWidth
Width of the ring in phi.
Gaudi::Property< std::vector< int > > m_layers
Calorimeter layers in each ringset.
SG::ReadHandleKey< CaloCellContainer > m_cellsContName
Name of CaloCellContainer.
Gaudi::Property< std::vector< unsigned int > > m_nRings
Number of rings in a ringset.
Gaudi::Property< float > m_cellMaxDPhiDist
Maximum cell distance in phi to seed.
bool m_doPhiAxesDivision
This can be set True to divide in two the phi axes.
std::size_t m_axis
Tool props (python configurables):
virtual StatusCode finalize() override
finalize method
bool m_doEtaAxesDivision
This can be set True to divide in two the eta axes.
~CaloStripsRingsBuilder()
Destructor.
virtual StatusCode buildRingSet(const xAOD::RingSetConf::RawConf &rawConf, const AtlasGeoPoint &seed, xAOD::RingSet *rs) override
main method where the strips are build
bool m_doTransverseEnergy
CaloStripsRingsBuilder(const std::string &type, const std::string &name, const IInterface *parent)
Default constructor.
virtual StatusCode initialize() override
Tool main methods:
const_pointer_type ptr()
Dereference the pointer.
virtual bool isValid() override final
Can the handle be successfully dereferenced?
static Ringer::CalJointLayer whichLayer(const std::vector< CaloSampling::CaloSample > &layers)
static void print(const RawConf &raw, std::ostream &stream)
Prints rawConf.
static Ringer::CalJointSection whichSection(const std::vector< CaloSampling::CaloSample > &layers)
static void addRawConfColBounderies(RawConfCollection &clRingsConf)
Add to RawConfCollection its JointLayer/JointSection bounderies.
Namespace dedicated for Ringer utilities.
RingSet_v1 RingSet
Definition of the current "RingSet version".