CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
CaloConeSelector< T > Class Template Reference

#include <CaloConeSelector.h>

Public Member Functions

 CaloConeSelector (double dR, const CaloGeometry *geom)
 
 CaloConeSelector (double dR, const CaloGeometry *geom, DetId::Detector detector, int subdet=0)
 
void selectCallback (double eta, double phi, const edm::SortedCollection< T > &inputCollection, std::function< void(const T &)> callback)
 
void selectCallback (const GlobalPoint &p, const edm::SortedCollection< T > &inputCollection, std::function< void(const T &)> callback)
 

Private Attributes

double deltaR_
 
DetId::Detector detector_
 
const CaloGeometrygeom_
 
int subdet_
 

Detailed Description

template<class T>
class CaloConeSelector< T >

Author
J. Mans - Minnesota

Definition at line 16 of file CaloConeSelector.h.

Constructor & Destructor Documentation

◆ CaloConeSelector() [1/2]

template<class T >
CaloConeSelector< T >::CaloConeSelector ( double  dR,
const CaloGeometry geom 
)
inline

◆ CaloConeSelector() [2/2]

template<class T >
CaloConeSelector< T >::CaloConeSelector ( double  dR,
const CaloGeometry geom,
DetId::Detector  detector,
int  subdet = 0 
)
inline

Member Function Documentation

◆ selectCallback() [1/2]

template<class T >
void CaloConeSelector< T >::selectCallback ( double  eta,
double  phi,
const edm::SortedCollection< T > &  inputCollection,
std::function< void(const T &)>  callback 
)
inline

Definition at line 24 of file CaloConeSelector.h.

References edmIntegrityCheck::callback, PVValHelper::eta, valuemaptraslator_cfi::inputCollection, AlCaHLTBitMon_ParallelJobs::p, phi, and nnet::tanh().

27  {
30  }
void tanh(data_T data[CONFIG_T::n_in], res_T res[CONFIG_T::n_in])
void selectCallback(double eta, double phi, const edm::SortedCollection< T > &inputCollection, std::function< void(const T &)> callback)

◆ selectCallback() [2/2]

template<class T >
void CaloConeSelector< T >::selectCallback ( const GlobalPoint p,
const edm::SortedCollection< T > &  inputCollection,
std::function< void(const T &)>  callback 
)
inline

Definition at line 32 of file CaloConeSelector.h.

References edmIntegrityCheck::callback, CaloConeSelector< T >::deltaR_, CaloConeSelector< T >::detector_, CaloConeSelector< T >::geom_, CaloSubdetectorGeometry::getCells(), CaloGeometry::getSubdetectorGeometry(), mps_fire::i, valuemaptraslator_cfi::inputCollection, dqmiolumiharvest::j, AlCaHLTBitMon_ParallelJobs::p, and CaloConeSelector< T >::subdet_.

34  {
35  // TODO: handle default setting of detector_ (loops over subdet)
36  // TODO: heuristics of when it is better to loop over inputCollection instead (small # hits)
37  for (int subdet = subdet_; subdet <= 7 && (subdet_ == 0 || subdet_ == subdet); subdet++) {
39  if (sdg != nullptr) {
40  // get the list of detids within range (from geometry)
42  // loop over detids...
44 
45  for (CaloSubdetectorGeometry::DetIdSet::iterator i = dis.begin(); i != dis.end(); i++) {
46  if (i->subdetId() != subdet)
47  continue; // possible for HCAL where the same geometry object handles all the detectors
48  j = inputCollection.find(*i);
49  if (j != je)
50  callback(*j);
51  }
52  }
53  }
54  }
std::vector< T >::const_iterator const_iterator
const CaloGeometry * geom_
virtual DetIdSet getCells(const GlobalPoint &r, double dR) const
Get a list of all cells within a dR of the given cell.
DetId::Detector detector_
const CaloSubdetectorGeometry * getSubdetectorGeometry(const DetId &id) const
access the subdetector geometry for the given subdetector directly
Definition: CaloGeometry.cc:34

Member Data Documentation

◆ deltaR_

template<class T >
double CaloConeSelector< T >::deltaR_
private

Definition at line 58 of file CaloConeSelector.h.

Referenced by CaloConeSelector< T >::selectCallback().

◆ detector_

template<class T >
DetId::Detector CaloConeSelector< T >::detector_
private

Definition at line 59 of file CaloConeSelector.h.

Referenced by CaloConeSelector< T >::selectCallback().

◆ geom_

template<class T >
const CaloGeometry* CaloConeSelector< T >::geom_
private

Definition at line 57 of file CaloConeSelector.h.

Referenced by CaloConeSelector< T >::selectCallback().

◆ subdet_

template<class T >
int CaloConeSelector< T >::subdet_
private

Definition at line 60 of file CaloConeSelector.h.

Referenced by CaloConeSelector< T >::selectCallback().