CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions
Basic2DClusterForEachSeed Class Reference
Inheritance diagram for Basic2DClusterForEachSeed:
InitialClusteringStepBase

Public Member Functions

 Basic2DClusterForEachSeed (const edm::ParameterSet &conf, edm::ConsumesCollector &cc)
 
void buildClusters (const edm::Handle< reco::PFRecHitCollection > &, const std::vector< bool > &, const std::vector< bool > &, reco::PFClusterCollection &) override
 
 ~Basic2DClusterForEachSeed () override=default
 
- Public Member Functions inherited from InitialClusteringStepBase
 _algoName (conf.getParameter< std::string >("algoName"))
 
 InitialClusteringStepBase (const edm::ParameterSet &conf, edm::ConsumesCollector &cc)
 
 InitialClusteringStepBase (const ICSB &)=delete
 
std::ostream & operator<< (std::ostream &o) const
 
ICSBoperator= (const ICSB &)=delete
 
void reset ()
 
virtual void update (const edm::EventSetup &)
 
virtual void updateEvent (const edm::Event &)
 
virtual ~InitialClusteringStepBase ()=default
 

Additional Inherited Members

- Protected Types inherited from InitialClusteringStepBase
typedef std::tuple
< std::vector< int >
, std::vector< double >
, std::vector< double > > 
I3tuple
 
- Protected Member Functions inherited from InitialClusteringStepBase
reco::PFRecHitRef makeRefhit (const edm::Handle< reco::PFRecHitCollection > &h, const unsigned i) const
 
- Protected Attributes inherited from InitialClusteringStepBase
const std::unordered_map
< std::string, int > 
_layerMap
 
unsigned _nClustersFound
 
unsigned _nSeeds
 
std::unordered_map< int, I3tuple_thresholds
 

Detailed Description

Definition at line 4 of file Basic2DClusterForEachSeed.cc.

Constructor & Destructor Documentation

Basic2DClusterForEachSeed::Basic2DClusterForEachSeed ( const edm::ParameterSet conf,
edm::ConsumesCollector cc 
)
inline

Definition at line 6 of file Basic2DClusterForEachSeed.cc.

7  : InitialClusteringStepBase(conf, cc) {}
InitialClusteringStepBase(const edm::ParameterSet &conf, edm::ConsumesCollector &cc)
Basic2DClusterForEachSeed::~Basic2DClusterForEachSeed ( )
overridedefault

Member Function Documentation

void Basic2DClusterForEachSeed::buildClusters ( const edm::Handle< reco::PFRecHitCollection > &  input,
const std::vector< bool > &  rechitMask,
const std::vector< bool > &  seedable,
reco::PFClusterCollection output 
)
overridevirtual

Implements InitialClusteringStepBase.

Definition at line 18 of file Basic2DClusterForEachSeed.cc.

References reco::PFCluster::addRecHitFraction(), reco::PFCluster::calculatePositionREP(), input, InitialClusteringStepBase::makeRefhit(), reco::PFCluster::reset(), reco::PFCluster::setDepth(), reco::CaloCluster::setEnergy(), reco::PFCluster::setLayer(), reco::CaloCluster::setPosition(), reco::CaloCluster::setSeed(), and reco::PFCluster::setTime().

21  {
22  auto const& hits = *input;
23 
24  // loop over seeds and make clusters
25  reco::PFCluster cluster;
26  for (unsigned int hit = 0; hit < hits.size(); ++hit) {
27  if (!rechitMask[hit] || !seedable[hit])
28  continue; // if not seed, ignore.
29  cluster.reset();
30 
31  // seed
32  auto refhit = makeRefhit(input, hit);
33  auto rhf = reco::PFRecHitFraction(refhit, 1.0); // entire rechit energy should go to a cluster
34 
35  // add the hit to the cluster
36  cluster.addRecHitFraction(rhf);
37 
38  // extract
39  const auto rh_energy = refhit->energy();
40 
41  // fill cluster information
42  cluster.setSeed(refhit->detId());
43  cluster.setEnergy(rh_energy);
44  cluster.setTime(refhit->time());
45  cluster.setLayer(refhit->layer());
46  cluster.setPosition(math::XYZPoint(refhit->position().x(), refhit->position().y(), refhit->position().z()));
47  cluster.calculatePositionREP();
48  cluster.setDepth(refhit->depth());
49 
50  output.push_back(cluster);
51 
52  } // looping over seeds ends
53 }
void setLayer(PFLayer::Layer layer)
set layer
Definition: PFCluster.cc:49
Particle flow cluster, see clustering algorithm in PFClusterAlgo.
Definition: PFCluster.h:42
void setPosition(const math::XYZPoint &p)
Definition: CaloCluster.h:140
void setTime(float time, float timeError=0)
Definition: PFCluster.h:84
Fraction of a PFRecHit (rechits can be shared between several PFCluster&#39;s)
void setEnergy(double energy)
Definition: CaloCluster.h:136
static std::string const input
Definition: EdmProvDump.cc:47
void setSeed(const DetId &id)
Definition: CaloCluster.h:146
reco::PFRecHitRef makeRefhit(const edm::Handle< reco::PFRecHitCollection > &h, const unsigned i) const
void calculatePositionREP()
computes posrep_ once and for all
Definition: PFCluster.h:95
void reset()
resets clusters parameters
Definition: PFCluster.cc:17
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
void addRecHitFraction(const reco::PFRecHitFraction &frac)
add a given fraction of the rechit
Definition: PFCluster.cc:33
void setDepth(double depth)
Definition: PFCluster.h:89