7 #include <unordered_map> 9 #include "vdt/vdtMath.h" 18 #include "TPrincipal.h" 25 pca_(new TPrincipal(3,
"D")) {}
34 std::unique_ptr<TPrincipal>
pca_;
44 pca_ = std::make_unique<TPrincipal>(3,
"D");
50 pca_ = std::make_unique<TPrincipal>(3,
"D");
56 if (!cluster.
seed()) {
57 throw cms::Exception(
"ClusterWithNoSeed") <<
" Found a cluster with no seed: " << cluster;
61 double avg_time = 0.0;
62 double time_norm = 0.0;
69 double rh_energy = refhit->energy();
70 double rh_time = refhit->time();
71 cl_energy += rh_energy * rhf.fraction();
76 avg_time += (rh_time - 1.0);
79 if (rh_energy > max_e) {
81 max_e_layer = rhf.recHitRef()->layer();
83 if (refhit->detId() == cluster.
seed())
85 const double rh_fraction = rhf.fraction();
86 rh_energy = refhit->energy() * rh_fraction;
90 edm::LogWarning(
"PFClusterAlgo") <<
"rechit " << refhit->detId() <<
" has a NaN energy... " 91 <<
"The input of the particle flow clustering seems to be corrupted.";
94 pcavars[0] = refhit->position().x();
95 pcavars[1] = refhit->position().y();
96 pcavars[2] = refhit->position().z();
97 int nhit =
int(rh_energy * 100);
99 for (
int i = 0;
i < nhit; ++
i) {
100 pca_->AddRow(pcavars);
107 pca_->MakePrincipals();
108 const TVectorD&
means = *(
pca_->GetMeanValues());
109 const TMatrixD& eigens = *(
pca_->GetEigenVectors());
114 if (time_norm > 0.0) {
115 avg_time = avg_time / time_norm;
120 if (axis.z() * barycenter.z() < 0.0) {
void setLayer(PFLayer::Layer layer)
set layer
Cluster3DPCACalculator & operator=(const Cluster3DPCACalculator &)=delete
Particle flow cluster, see clustering algorithm in PFClusterAlgo.
constexpr bool isNotFinite(T x)
void setPosition(const math::XYZPoint &p)
DetId seed() const
return DetId of seed
void setTime(float time, float timeError=0)
void showerParameters(const reco::PFCluster &, math::XYZPoint &, math::XYZVector &)
Fraction of a PFRecHit (rechits can be shared between several PFCluster's)
const std::vector< reco::PFRecHitFraction > & recHitFractions() const
vector of rechit fractions
void setEnergy(double energy)
void calculatePositionREP()
computes posrep_ once and for all
void calculateAndSetPositionActual(reco::PFCluster &)
XYZVectorD XYZVector
spatial vector with cartesian internal representation
XYZPointD XYZPoint
point in space with cartesian internal representation
void calculateAndSetPositions(reco::PFClusterCollection &) override
std::unique_ptr< TPrincipal > pca_
void calculateAndSetPosition(reco::PFCluster &) override
Cluster3DPCACalculator(const edm::ParameterSet &conf, edm::ConsumesCollector &cc)
std::vector< PFCluster > PFClusterCollection
collection of PFCluster objects
#define DEFINE_EDM_PLUGIN(factory, type, name)
Log< level::Warning, false > LogWarning