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 | Protected Types | Protected Member Functions | Protected Attributes | Private Types | Private Attributes
InitialClusteringStepBase Class Referenceabstract

#include <InitialClusteringStepBase.h>

Inheritance diagram for InitialClusteringStepBase:
Basic2DClusterForEachSeed Basic2DGenericTopoClusterizer GenericSimClusterMapper PFClusterFromHGCalTrackster RealisticSimClusterMapper

Public Member Functions

 _algoName (conf.getParameter< std::string >("algoName"))
 
virtual void buildClusters (const edm::Handle< reco::PFRecHitCollection > &, const std::vector< bool > &mask, const std::vector< bool > &seeds, reco::PFClusterCollection &)=0
 
 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
 

Protected Types

typedef std::tuple
< std::vector< int >
, std::vector< double >
, std::vector< double > > 
I3tuple
 

Protected Member Functions

reco::PFRecHitRef makeRefhit (const edm::Handle< reco::PFRecHitCollection > &h, const unsigned i) const
 

Protected Attributes

const std::unordered_map
< std::string, int > 
_layerMap
 
unsigned _nClustersFound
 
unsigned _nSeeds
 
std::unordered_map< int, I3tuple_thresholds
 

Private Types

typedef InitialClusteringStepBase ICSB
 

Private Attributes

const std::string _algoName
 

Detailed Description

Definition at line 24 of file InitialClusteringStepBase.h.

Member Typedef Documentation

typedef std::tuple<std::vector<int>, std::vector<double>, std::vector<double> > InitialClusteringStepBase::I3tuple
protected

Definition at line 109 of file InitialClusteringStepBase.h.

Definition at line 25 of file InitialClusteringStepBase.h.

Constructor & Destructor Documentation

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

Definition at line 28 of file InitialClusteringStepBase.h.

References PFLayer::ECAL_BARREL, PFLayer::ECAL_ENDCAP, PFLayer::HCAL_BARREL1, PFLayer::HCAL_BARREL2, PFLayer::HCAL_ENDCAP, PFLayer::HF_EM, PFLayer::HF_HAD, PFLayer::HGCAL, PFLayer::NONE, PFLayer::PS1, and PFLayer::PS2.

29  : _nSeeds(0),
30  _nClustersFound(0),
31  _layerMap({{"PS2", (int)PFLayer::PS2},
32  {"PS1", (int)PFLayer::PS1},
33  {"ECAL_ENDCAP", (int)PFLayer::ECAL_ENDCAP},
34  {"ECAL_BARREL", (int)PFLayer::ECAL_BARREL},
35  {"NONE", (int)PFLayer::NONE},
36  {"HCAL_BARREL1", (int)PFLayer::HCAL_BARREL1},
37  {"HCAL_BARREL2_RING0", (int)PFLayer::HCAL_BARREL2},
38  {"HCAL_BARREL2_RING1", 100 * (int)PFLayer::HCAL_BARREL2},
39  {"HCAL_ENDCAP", (int)PFLayer::HCAL_ENDCAP},
40  {"HF_EM", (int)PFLayer::HF_EM},
41  {"HF_HAD", (int)PFLayer::HF_HAD},
42  {"HGCAL", (int)PFLayer::HGCAL}}),
const std::unordered_map< std::string, int > _layerMap
virtual InitialClusteringStepBase::~InitialClusteringStepBase ( )
virtualdefault
InitialClusteringStepBase::InitialClusteringStepBase ( const ICSB )
delete

Member Function Documentation

InitialClusteringStepBase::_algoName ( conf.getParameter< std::string >  "algoName")
inline

Definition at line 43 of file InitialClusteringStepBase.h.

References _layerMap, _thresholds, mps_splice::entry, Exception, edm::ParameterSet::getParameterSetVector(), mps_fire::i, TrackValidation_cff::pset, AlCaHLTBitMon_QueryRunRegistry::string, and lowPtGsfElectronSeeds_cfi::thresholds().

43  {
44  const std::vector<edm::ParameterSet>& thresholds = conf.getParameterSetVector("thresholdsByDetector");
45  for (const auto& pset : thresholds) {
46  const std::string& det = pset.getParameter<std::string>("detector");
47 
48  std::vector<int> depths;
49  std::vector<double> thresh_E;
50  std::vector<double> thresh_pT;
51  std::vector<double> thresh_pT2;
52 
53  if (det == std::string("HCAL_BARREL1") || det == std::string("HCAL_ENDCAP")) {
54  depths = pset.getParameter<std::vector<int> >("depths");
55  thresh_E = pset.getParameter<std::vector<double> >("gatheringThreshold");
56  thresh_pT = pset.getParameter<std::vector<double> >("gatheringThresholdPt");
57  if (thresh_E.size() != depths.size() || thresh_pT.size() != depths.size()) {
58  throw cms::Exception("InvalidGatheringThreshold")
59  << "gatheringThresholds mismatch with the numbers of depths";
60  }
61  } else {
62  depths.push_back(0);
63  thresh_E.push_back(pset.getParameter<double>("gatheringThreshold"));
64  thresh_pT.push_back(pset.getParameter<double>("gatheringThresholdPt"));
65  }
66 
67  for (unsigned int i = 0; i < thresh_pT.size(); ++i) {
68  thresh_pT2.push_back(thresh_pT[i] * thresh_pT[i]);
69  }
70 
71  auto entry = _layerMap.find(det);
72  if (entry == _layerMap.end()) {
73  throw cms::Exception("InvalidDetectorLayer")
74  << "Detector layer : " << det << " is not in the list of recognized"
75  << " detector layers!";
76  }
77  _thresholds.emplace(_layerMap.find(det)->second, std::make_tuple(depths, thresh_E, thresh_pT2));
78  }
79  }
const std::unordered_map< std::string, int > _layerMap
list entry
Definition: mps_splice.py:68
std::unordered_map< int, I3tuple > _thresholds
virtual void InitialClusteringStepBase::buildClusters ( const edm::Handle< reco::PFRecHitCollection > &  ,
const std::vector< bool > &  mask,
const std::vector< bool > &  seeds,
reco::PFClusterCollection  
)
pure virtual
reco::PFRecHitRef InitialClusteringStepBase::makeRefhit ( const edm::Handle< reco::PFRecHitCollection > &  h,
const unsigned  i 
) const
inlineprotected
std::ostream& InitialClusteringStepBase::operator<< ( std::ostream &  o) const
inline

Definition at line 94 of file InitialClusteringStepBase.h.

References _algoName, _nClustersFound, _nSeeds, and class-composition::o.

94  {
95  o << "InitialClusteringStep with algo \"" << _algoName << "\" located " << _nSeeds << " seeds and built "
96  << _nClustersFound << " clusters from those seeds. ";
97  return o;
98  }
ICSB& InitialClusteringStepBase::operator= ( const ICSB )
delete
void InitialClusteringStepBase::reset ( void  )
inline
virtual void InitialClusteringStepBase::update ( const edm::EventSetup )
inlinevirtual
virtual void InitialClusteringStepBase::updateEvent ( const edm::Event )
inlinevirtual

Member Data Documentation

const std::string InitialClusteringStepBase::_algoName
private

Definition at line 113 of file InitialClusteringStepBase.h.

Referenced by operator<<().

const std::unordered_map<std::string, int> InitialClusteringStepBase::_layerMap
protected

Definition at line 107 of file InitialClusteringStepBase.h.

Referenced by _algoName().

unsigned InitialClusteringStepBase::_nClustersFound
protected

Definition at line 106 of file InitialClusteringStepBase.h.

Referenced by operator<<(), and reset().

unsigned InitialClusteringStepBase::_nSeeds
protected

Definition at line 106 of file InitialClusteringStepBase.h.

Referenced by operator<<(), and reset().

std::unordered_map<int, I3tuple> InitialClusteringStepBase::_thresholds
protected