CMS 3D CMS Logo

List of all members | Classes | Public Member Functions | Private Types | Private Member Functions | Private Attributes
PFMultiDepthClusterizer Class Referencefinal
Inheritance diagram for PFMultiDepthClusterizer:
PFClusterBuilderBase

Classes

class  ClusterLink
 

Public Member Functions

void buildClusters (const reco::PFClusterCollection &, const std::vector< bool > &, reco::PFClusterCollection &outclus, const HcalPFCuts *) override
 
B2DGPFoperator= (const B2DGPF &)=delete
 
 PFMultiDepthClusterizer (const edm::ParameterSet &conf, edm::ConsumesCollector &cc)
 
 PFMultiDepthClusterizer (const B2DGPF &)=delete
 
void update (const edm::EventSetup &es) override
 
 ~PFMultiDepthClusterizer () override=default
 
- Public Member Functions inherited from PFClusterBuilderBase
std::ostream & operator<< (std::ostream &o) const
 
PFCBBoperator= (const PFCBB &)=delete
 
 PFClusterBuilderBase (const edm::ParameterSet &conf, edm::ConsumesCollector &cc)
 
 PFClusterBuilderBase (const PFCBB &)=delete
 
void reset ()
 
virtual ~PFClusterBuilderBase ()=default
 

Private Types

typedef PFMultiDepthClusterizer B2DGPF
 

Private Member Functions

void absorbCluster (reco::PFCluster &, const reco::PFCluster &)
 
void calculateShowerShapes (const reco::PFClusterCollection &, std::vector< double > &, std::vector< double > &)
 
void expandCluster (reco::PFCluster &, unsigned int point, std::vector< bool > &mask, const reco::PFClusterCollection &, const std::vector< ClusterLink > &links)
 
std::vector< ClusterLinklink (const reco::PFClusterCollection &, const std::vector< double > &, const std::vector< double > &)
 
std::vector< ClusterLinkprune (std::vector< ClusterLink > &, std::vector< bool > &linkedClusters)
 

Private Attributes

std::unique_ptr< PFCPositionCalculatorBase_allCellsPosCalc
 
double nSigmaEta_
 
double nSigmaPhi_
 

Additional Inherited Members

- Public Types inherited from PFClusterBuilderBase
typedef PFCPositionCalculatorBase PosCalc
 
- Protected Attributes inherited from PFClusterBuilderBase
const float _minFractionToKeep
 
unsigned _nClustersFound
 
unsigned _nSeeds
 
std::unique_ptr< PosCalc_positionCalc
 

Detailed Description

Definition at line 16 of file PFMultiDepthClusterizer.cc.

Member Typedef Documentation

◆ B2DGPF

Definition at line 17 of file PFMultiDepthClusterizer.cc.

Constructor & Destructor Documentation

◆ PFMultiDepthClusterizer() [1/2]

PFMultiDepthClusterizer::PFMultiDepthClusterizer ( const edm::ParameterSet conf,
edm::ConsumesCollector cc 
)

Definition at line 81 of file PFMultiDepthClusterizer.cc.

References _allCellsPosCalc, gpuPixelDoublets::cc, edm::ParameterSet::exists(), get, edm::ParameterSet::getParameter(), edm::ParameterSet::getParameterSet(), nSigmaEta_, nSigmaPhi_, funct::pow(), and AlCaHLTBitMon_QueryRunRegistry::string.

82  : PFClusterBuilderBase(conf, cc) {
83  if (conf.exists("allCellsPositionCalc")) {
84  const edm::ParameterSet& acConf = conf.getParameterSet("allCellsPositionCalc");
85  const std::string& algoac = acConf.getParameter<std::string>("algoName");
86  _allCellsPosCalc = PFCPositionCalculatorFactory::get()->create(algoac, acConf, cc);
87  }
88 
89  nSigmaEta_ = pow(conf.getParameter<double>("nSigmaEta"), 2);
90  nSigmaPhi_ = pow(conf.getParameter<double>("nSigmaPhi"), 2);
91 }
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
uint32_t cc[maxCellsPerHit]
Definition: gpuFishbone.h:49
bool exists(std::string const &parameterName) const
checks if a parameter exists
ParameterSet const & getParameterSet(std::string const &) const
std::unique_ptr< PFCPositionCalculatorBase > _allCellsPosCalc
PFClusterBuilderBase(const edm::ParameterSet &conf, edm::ConsumesCollector &cc)
#define get
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:29

◆ ~PFMultiDepthClusterizer()

PFMultiDepthClusterizer::~PFMultiDepthClusterizer ( )
overridedefault

◆ PFMultiDepthClusterizer() [2/2]

PFMultiDepthClusterizer::PFMultiDepthClusterizer ( const B2DGPF )
delete

Member Function Documentation

◆ absorbCluster()

void PFMultiDepthClusterizer::absorbCluster ( reco::PFCluster main,
const reco::PFCluster added 
)
private

Definition at line 256 of file PFMultiDepthClusterizer.cc.

References StorageManager_cfg::e1, HLT_2024v12_cff::fraction, reco::PFCluster::recHitFractions(), and reco::CaloCluster::seed().

Referenced by expandCluster().

256  {
257  double e1 = 0.0;
258  double e2 = 0.0;
259 
260  //find seeds
261  for (const auto& fraction : main.recHitFractions())
262  if (fraction.recHitRef()->detId() == main.seed()) {
263  e1 = fraction.recHitRef()->energy();
264  }
265 
266  for (const auto& fraction : added.recHitFractions()) {
267  main.addRecHitFraction(fraction);
268  if (fraction.recHitRef()->detId() == added.seed()) {
269  e2 = fraction.recHitRef()->energy();
270  }
271  }
272  if (e2 > e1)
273  main.setSeed(added.seed());
274 }
DetId seed() const
return DetId of seed
Definition: CaloCluster.h:218
const std::vector< reco::PFRecHitFraction > & recHitFractions() const
vector of rechit fractions
Definition: PFCluster.h:65
Definition: main.py:1

◆ buildClusters()

void PFMultiDepthClusterizer::buildClusters ( const reco::PFClusterCollection input,
const std::vector< bool > &  seedable,
reco::PFClusterCollection outclus,
const HcalPFCuts hcalCuts 
)
overridevirtual

Implements PFClusterBuilderBase.

Definition at line 93 of file PFMultiDepthClusterizer.cc.

References _allCellsPosCalc, calculateShowerShapes(), expandCluster(), mps_fire::i, input, link(), electronStore::links, ALPAKA_ACCELERATOR_NAMESPACE::pixelClustering::pixelStatus::mask, and prune().

96  {
97  std::vector<double> etaRMS2(input.size(), 0.0);
98  std::vector<double> phiRMS2(input.size(), 0.0);
99 
100  //We need to sort the clusters for smaller to larger depth
101  // for (unsigned int i=0;i<input.size();++i)
102  // printf(" cluster%f %f \n",input[i].depth(),input[i].energy());
103 
104  //calculate cluster shapes
105  calculateShowerShapes(input, etaRMS2, phiRMS2);
106 
107  //link
108  auto&& links = link(input, etaRMS2, phiRMS2);
109  // for (const auto& link: links)
110  // printf("link %d %d %f %f\n",link.from(),link.to(),link.dR(),link.dZ());
111 
112  std::vector<bool> mask(input.size(), false);
113  std::vector<bool> linked(input.size(), false);
114 
115  //prune
116  auto&& prunedLinks = prune(links, linked);
117 
118  //printf("Pruned links\n")
119  // for (const auto& link: prunedLinks)
120  // printf("link %d %d %f %f\n",link.from(),link.to(),link.dR(),link.dZ());
121 
122  //now we need to build clusters
123  for (unsigned int i = 0; i < input.size(); ++i) {
124  //if not masked
125  if (mask[i])
126  continue;
127  //if not linked just spit it out
128  if (!linked[i]) {
129  output.push_back(input[i]);
130  // printf("Added single cluster with energy =%f \n",input[i].energy());
131  mask[i] = true;
132  continue;
133  }
134 
135  //now business: if linked and not masked gather clusters
136  reco::PFCluster cluster = input[i];
137  mask[i] = true;
138  expandCluster(cluster, i, mask, input, prunedLinks);
139  _allCellsPosCalc->calculateAndSetPosition(cluster, hcalCuts);
140  output.push_back(cluster);
141  // printf("Added linked cluster with energy =%f\n",cluster.energy());
142  }
143 }
void calculateShowerShapes(const reco::PFClusterCollection &, std::vector< double > &, std::vector< double > &)
Particle flow cluster, see clustering algorithm in PFClusterAlgo.
Definition: PFCluster.h:42
std::vector< ClusterLink > prune(std::vector< ClusterLink > &, std::vector< bool > &linkedClusters)
static std::string const input
Definition: EdmProvDump.cc:50
std::unique_ptr< PFCPositionCalculatorBase > _allCellsPosCalc
std::vector< ClusterLink > link(const reco::PFClusterCollection &, const std::vector< double > &, const std::vector< double > &)
Definition: output.py:1
void expandCluster(reco::PFCluster &, unsigned int point, std::vector< bool > &mask, const reco::PFClusterCollection &, const std::vector< ClusterLink > &links)

◆ calculateShowerShapes()

void PFMultiDepthClusterizer::calculateShowerShapes ( const reco::PFClusterCollection clusters,
std::vector< double > &  etaRMS2,
std::vector< double > &  phiRMS2 
)
private

Definition at line 145 of file PFMultiDepthClusterizer.cc.

References funct::abs(), bsc_activity_cfg::clusters, SiPixelRawToDigiRegional_cfi::deltaPhi, reco::PFCluster::energy(), DivergingColor::frac, h, mps_fire::i, SiStripPI::max, reco::PFCluster::positionREP(), reco::PFCluster::recHitFractions(), and cuy::rep.

Referenced by buildClusters().

147  {
148  //shower shapes. here do not use the fractions
149 
150  for (unsigned int i = 0; i < clusters.size(); ++i) {
151  const reco::PFCluster& cluster = clusters[i];
152  double etaSum = 0.0;
153  double phiSum = 0.0;
154  auto const& crep = cluster.positionREP();
155  for (const auto& frac : cluster.recHitFractions()) {
156  auto const& h = *frac.recHitRef();
157  auto const& rep = h.positionREP();
158  etaSum += (frac.fraction() * h.energy()) * std::abs(rep.eta() - crep.eta());
159  phiSum += (frac.fraction() * h.energy()) * std::abs(deltaPhi(rep.phi(), crep.phi()));
160  }
161  //protection for single line : assign ~ tower
162  etaRMS2[i] = std::max(etaSum / cluster.energy(), 0.1);
163  etaRMS2[i] *= etaRMS2[i];
164  phiRMS2[i] = std::max(phiSum / cluster.energy(), 0.1);
165  phiRMS2[i] *= phiRMS2[i];
166  }
167 }
Particle flow cluster, see clustering algorithm in PFClusterAlgo.
Definition: PFCluster.h:42
const std::vector< reco::PFRecHitFraction > & recHitFractions() const
vector of rechit fractions
Definition: PFCluster.h:65
const REPPoint & positionREP() const
cluster position: rho, eta, phi
Definition: PFCluster.h:92
double energy() const
cluster energy
Definition: PFCluster.h:74
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
rep
Definition: cuy.py:1189
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4

◆ expandCluster()

void PFMultiDepthClusterizer::expandCluster ( reco::PFCluster cluster,
unsigned int  point,
std::vector< bool > &  mask,
const reco::PFClusterCollection clusters,
const std::vector< ClusterLink > &  links 
)
private

Definition at line 276 of file PFMultiDepthClusterizer.cc.

References absorbCluster(), bsc_activity_cfg::clusters, link(), electronStore::links, ALPAKA_ACCELERATOR_NAMESPACE::pixelClustering::pixelStatus::mask, and point.

Referenced by buildClusters().

280  {
281  for (const auto& link : links) {
282  if (link.from() == point) {
283  //found link that starts from this guy if not masked absorb
284  if (!mask[link.from()]) {
285  absorbCluster(cluster, clusters[link.from()]);
286  mask[link.from()] = true;
287  }
288 
289  if (!mask[link.to()]) {
290  absorbCluster(cluster, clusters[link.to()]);
291  mask[link.to()] = true;
292  expandCluster(cluster, link.to(), mask, clusters, links);
293  }
294  }
295  if (link.to() == point) {
296  //found link that starts from this guy if not masked absorb
297  if (!mask[link.to()]) {
298  absorbCluster(cluster, clusters[link.to()]);
299  mask[link.to()] = true;
300  }
301 
302  if (!mask[link.from()]) {
303  absorbCluster(cluster, clusters[link.from()]);
304  mask[link.from()] = true;
305  expandCluster(cluster, link.from(), mask, clusters, links);
306  }
307  }
308  }
309 }
void absorbCluster(reco::PFCluster &, const reco::PFCluster &)
std::vector< ClusterLink > link(const reco::PFClusterCollection &, const std::vector< double > &, const std::vector< double > &)
*vegas h *****************************************************used in the default bin number in original ***version of VEGAS is ***a higher bin number might help to derive a more precise ***grade subtle point
Definition: invegas.h:5
void expandCluster(reco::PFCluster &, unsigned int point, std::vector< bool > &mask, const reco::PFClusterCollection &, const std::vector< ClusterLink > &links)

◆ link()

std::vector< PFMultiDepthClusterizer::ClusterLink > PFMultiDepthClusterizer::link ( const reco::PFClusterCollection clusters,
const std::vector< double > &  etaRMS2,
const std::vector< double > &  phiRMS2 
)
private

Definition at line 169 of file PFMultiDepthClusterizer.cc.

References funct::abs(), bsc_activity_cfg::clusters, SiPixelRawToDigiRegional_cfi::deltaPhi, reco::PFCluster::depth(), PVValHelper::dz, reco::PFCluster::energy(), mps_fire::i, dqmiolumiharvest::j, electronStore::links, nSigmaEta_, nSigmaPhi_, and reco::PFCluster::positionREP().

Referenced by buildClusters(), and expandCluster().

170  {
171  std::vector<ClusterLink> links;
172  //loop on all pairs
173  for (unsigned int i = 0; i < clusters.size(); ++i)
174  for (unsigned int j = 0; j < clusters.size(); ++j) {
175  if (i == j)
176  continue;
177 
178  const reco::PFCluster& cluster1 = clusters[i];
179  const reco::PFCluster& cluster2 = clusters[j];
180 
181  // PFCluster depth stored as double but HCAL layer clusters have integral depths only
182  auto dz = (static_cast<int>(cluster2.depth()) - static_cast<int>(cluster1.depth()));
183 
184  //Do not link at the same layer and only link inside out!
185  if (dz <= 0)
186  continue;
187 
188  auto const& crep1 = cluster1.positionREP();
189  auto const& crep2 = cluster2.positionREP();
190 
191  auto deta = crep1.eta() - crep2.eta();
192  deta = deta * deta / (etaRMS2[i] + etaRMS2[j]);
193  auto dphi = deltaPhi(crep1.phi(), crep2.phi());
194  dphi = dphi * dphi / (phiRMS2[i] + phiRMS2[j]);
195 
196  // printf("Testing Link %d -> %d (%f %f %f %f ) \n",i,j,deta,dphi,cluster1.position().Eta()-cluster2.position().Eta(),deltaPhi(cluster1.position().Phi(),cluster2.position().Phi()));
197 
198  if ((deta < nSigmaEta_) & (dphi < nSigmaPhi_))
199  links.push_back(ClusterLink(i, j, deta + dphi, std::abs(dz), cluster1.energy() + cluster2.energy()));
200  }
201 
202  return links;
203 }
Particle flow cluster, see clustering algorithm in PFClusterAlgo.
Definition: PFCluster.h:42
const REPPoint & positionREP() const
cluster position: rho, eta, phi
Definition: PFCluster.h:92
double depth() const
cluster depth
Definition: PFCluster.h:82
double energy() const
cluster energy
Definition: PFCluster.h:74
Abs< T >::type abs(const T &t)
Definition: Abs.h:22

◆ operator=()

B2DGPF& PFMultiDepthClusterizer::operator= ( const B2DGPF )
delete

◆ prune()

std::vector< PFMultiDepthClusterizer::ClusterLink > PFMultiDepthClusterizer::prune ( std::vector< ClusterLink > &  links,
std::vector< bool > &  linkedClusters 
)
private

Definition at line 205 of file PFMultiDepthClusterizer.cc.

References PFMultiDepthClusterizer::ClusterLink::dR(), PFMultiDepthClusterizer::ClusterLink::dZ(), PFMultiDepthClusterizer::ClusterLink::energy(), mps_fire::i, dqmiolumiharvest::j, electronStore::links, ALPAKA_ACCELERATOR_NAMESPACE::pixelClustering::pixelStatus::mask, and PFMultiDepthClusterizer::ClusterLink::to().

Referenced by buildClusters(), and dirstructure.Directory::prune().

206  {
207  std::vector<ClusterLink> goodLinks;
208  std::vector<bool> mask(links.size(), false);
209  if (links.empty())
210  return goodLinks;
211 
212  for (unsigned int i = 0; i < links.size() - 1; ++i) {
213  if (mask[i])
214  continue;
215  for (unsigned int j = i + 1; j < links.size(); ++j) {
216  if (mask[j])
217  continue;
218 
219  const ClusterLink& link1 = links[i];
220  const ClusterLink& link2 = links[j];
221 
222  if (link1.to() == link2.to()) { //found two links going to the same spot,kill one
223  //first prefer nearby layers
224  if (link1.dZ() < link2.dZ()) {
225  mask[j] = true;
226  } else if (link1.dZ() > link2.dZ()) {
227  mask[i] = true;
228  } else { //if same layer-pick based on transverse compatibility
229  if (link1.dR() < link2.dR()) {
230  mask[j] = true;
231  } else if (link1.dR() > link2.dR()) {
232  mask[i] = true;
233  } else {
234  //same distance as well -> can happen !!!!! Pick the highest SUME
235  if (link1.energy() < link2.energy())
236  mask[i] = true;
237  else
238  mask[j] = true;
239  }
240  }
241  }
242  }
243  }
244 
245  for (unsigned int i = 0; i < links.size(); ++i) {
246  if (mask[i])
247  continue;
248  goodLinks.push_back(links[i]);
249  linkedClusters[links[i].from()] = true;
250  linkedClusters[links[i].to()] = true;
251  }
252 
253  return goodLinks;
254 }

◆ update()

void PFMultiDepthClusterizer::update ( const edm::EventSetup es)
inlineoverridevirtual

Member Data Documentation

◆ _allCellsPosCalc

std::unique_ptr<PFCPositionCalculatorBase> PFMultiDepthClusterizer::_allCellsPosCalc
private

Definition at line 34 of file PFMultiDepthClusterizer.cc.

Referenced by buildClusters(), PFMultiDepthClusterizer(), and update().

◆ nSigmaEta_

double PFMultiDepthClusterizer::nSigmaEta_
private

Definition at line 35 of file PFMultiDepthClusterizer.cc.

Referenced by link(), and PFMultiDepthClusterizer().

◆ nSigmaPhi_

double PFMultiDepthClusterizer::nSigmaPhi_
private

Definition at line 36 of file PFMultiDepthClusterizer.cc.

Referenced by link(), and PFMultiDepthClusterizer().