CMS 3D CMS Logo

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:
Basic2DGenericTopoClusterizer GenericSimClusterMapper PFClusterFromHGCalMultiCluster RealisticSimClusterMapper

Public Member Functions

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 &sumes)
 
 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 112 of file InitialClusteringStepBase.h.

Definition at line 25 of file InitialClusteringStepBase.h.

Constructor & Destructor Documentation

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

Definition at line 27 of file InitialClusteringStepBase.h.

References particleFlowClusterHBHE_cfi::depths, PFLayer::ECAL_BARREL, PFLayer::ECAL_ENDCAP, mps_splice::entry, Exception, PFLayer::HCAL_BARREL1, PFLayer::HCAL_BARREL2, PFLayer::HCAL_ENDCAP, PFLayer::HF_EM, PFLayer::HF_HAD, PFLayer::HGCAL, mps_fire::i, createfilelist::int, PFLayer::NONE, PFLayer::PS1, PFLayer::PS2, muonDTDigis_cfi::pset, AlCaHLTBitMon_QueryRunRegistry::string, and particleFlowZeroSuppressionECAL_cff::thresholds.

28  :
29  _nSeeds(0), _nClustersFound(0),
30  _layerMap({ {"PS2",(int)PFLayer::PS2},
31  {"PS1",(int)PFLayer::PS1},
32  {"ECAL_ENDCAP",(int)PFLayer::ECAL_ENDCAP},
33  {"ECAL_BARREL",(int)PFLayer::ECAL_BARREL},
34  {"NONE",(int)PFLayer::NONE},
35  {"HCAL_BARREL1",(int)PFLayer::HCAL_BARREL1},
36  {"HCAL_BARREL2_RING0",(int)PFLayer::HCAL_BARREL2},
37  {"HCAL_BARREL2_RING1",100*(int)PFLayer::HCAL_BARREL2},
38  {"HCAL_ENDCAP",(int)PFLayer::HCAL_ENDCAP},
39  {"HF_EM",(int)PFLayer::HF_EM},
40  {"HF_HAD",(int)PFLayer::HF_HAD},
41  {"HGCAL",(int)PFLayer::HGCAL} }),
42  _algoName(conf.getParameter<std::string>("algoName")) {
43  const std::vector<edm::ParameterSet>& thresholds =
44  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,
78  std::make_tuple(depths,thresh_E,thresh_pT2));
79  }
80  }
T getParameter(std::string const &) const
VParameterSet const & getParameterSetVector(std::string const &name) const
std::unordered_map< int, I3tuple > _thresholds
const std::unordered_map< std::string, int > _layerMap
virtual InitialClusteringStepBase::~InitialClusteringStepBase ( )
virtualdefault
InitialClusteringStepBase::InitialClusteringStepBase ( const ICSB )
delete

Member Function Documentation

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

Definition at line 105 of file InitialClusteringStepBase.h.

Referenced by GenericSimClusterMapper::buildClusters(), PFClusterFromHGCalMultiCluster::buildClusters(), RealisticSimClusterMapper::buildClusters(), and Basic2DGenericTopoClusterizer::buildTopoCluster().

106  {
107  return reco::PFRecHitRef(h,i);
108  }
edm::Ref< PFRecHitCollection > PFRecHitRef
persistent reference to PFRecHit objects
Definition: PFRecHitFwd.h:15
std::ostream& InitialClusteringStepBase::operator<< ( std::ostream &  o) const
inline

Definition at line 95 of file InitialClusteringStepBase.h.

References connectstrParser::o.

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

Reimplemented in RealisticSimClusterMapper.

Definition at line 86 of file InitialClusteringStepBase.h.

Referenced by progressbar.ProgressBar::__next__(), MatrixUtil.Matrix::__setitem__(), MatrixUtil.Steps::__setitem__(), Vispa.Gui.VispaWidget.VispaWidget::autosize(), Vispa.Views.LineDecayView.LineDecayContainer::createObject(), Vispa.Views.LineDecayView.LineDecayContainer::deselectAllObjects(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::deselectAllWidgets(), Vispa.Gui.VispaWidget.VispaWidget::enableAutosizing(), progressbar.ProgressBar::finish(), Vispa.Gui.MenuWidget.MenuWidget::leaveEvent(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::mouseMoveEvent(), Vispa.Gui.MenuWidget.MenuWidget::mouseMoveEvent(), Vispa.Views.LineDecayView.LineDecayContainer::mouseMoveEvent(), Vispa.Gui.VispaWidgetOwner.VispaWidgetOwner::mouseReleaseEvent(), Vispa.Views.LineDecayView.LineDecayContainer::objectMoved(), MatrixUtil.Steps::overwrite(), Vispa.Views.LineDecayView.LineDecayContainer::removeObject(), Vispa.Gui.ConnectableWidget.ConnectableWidget::removePorts(), Vispa.Gui.FindDialog.FindDialog::reset(), Vispa.Gui.PortConnection.PointToPointConnection::select(), Vispa.Gui.VispaWidget.VispaWidget::select(), Vispa.Views.LineDecayView.LineDecayContainer::select(), Vispa.Gui.VispaWidget.VispaWidget::setText(), Vispa.Gui.VispaWidget.VispaWidget::setTitle(), Vispa.Gui.ZoomableWidget.ZoomableWidget::setZoom(), Vispa.Views.LineDecayView.LineDecayContainer::setZoom(), and Vispa.Gui.PortConnection.PointToPointConnection::updateConnection().

86 { }
virtual void InitialClusteringStepBase::updateEvent ( const edm::Event )
inlinevirtual

Member Data Documentation

const std::string InitialClusteringStepBase::_algoName
private

Definition at line 116 of file InitialClusteringStepBase.h.

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

Definition at line 110 of file InitialClusteringStepBase.h.

unsigned InitialClusteringStepBase::_nClustersFound
protected

Definition at line 109 of file InitialClusteringStepBase.h.

unsigned InitialClusteringStepBase::_nSeeds
protected

Definition at line 109 of file InitialClusteringStepBase.h.

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