CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
reco::isodeposit::OtherCandidatesDeltaRVeto Class Reference

#include <EventDependentAbsVetos.h>

Inheritance diagram for reco::isodeposit::OtherCandidatesDeltaRVeto:
reco::isodeposit::EventDependentAbsVeto reco::isodeposit::AbsVeto

Public Member Functions

virtual void centerOn (double eta, double phi)
 Nothing to do for this. More...
 
 OtherCandidatesDeltaRVeto (const edm::InputTag &candidates, double deltaR, edm::ConsumesCollector &iC)
 Create a veto specifying the input collection of the candidates, and the deltaR. More...
 
virtual void setEvent (const edm::Event &iEvent, const edm::EventSetup &iSetup)
 Picks up the directions of the given candidates. More...
 
virtual bool veto (double eta, double phi, float value) const
 
virtual ~OtherCandidatesDeltaRVeto ()
 
- Public Member Functions inherited from reco::isodeposit::EventDependentAbsVeto
virtual ~EventDependentAbsVeto ()
 
- Public Member Functions inherited from reco::isodeposit::AbsVeto
virtual ~AbsVeto ()
 

Private Attributes

float deltaR2_
 
std::vector< Directionitems_
 
edm::EDGetTokenT< edm::View
< reco::Candidate > > 
src_
 

Detailed Description

Definition at line 14 of file EventDependentAbsVetos.h.

Constructor & Destructor Documentation

reco::isodeposit::OtherCandidatesDeltaRVeto::OtherCandidatesDeltaRVeto ( const edm::InputTag candidates,
double  deltaR,
edm::ConsumesCollector iC 
)
inline

Create a veto specifying the input collection of the candidates, and the deltaR.

Definition at line 17 of file EventDependentAbsVetos.h.

17  :
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
edm::EDGetTokenT< edm::View< reco::Candidate > > src_
double deltaR(const T1 &t1, const T2 &t2)
Definition: deltaR.h:48
virtual reco::isodeposit::OtherCandidatesDeltaRVeto::~OtherCandidatesDeltaRVeto ( )
inlinevirtual

Definition at line 21 of file EventDependentAbsVetos.h.

21 {}

Member Function Documentation

virtual void reco::isodeposit::OtherCandidatesDeltaRVeto::centerOn ( double  eta,
double  phi 
)
inlinevirtual

Nothing to do for this.

Reimplemented from reco::isodeposit::AbsVeto.

Definition at line 28 of file EventDependentAbsVetos.h.

28 { }
void reco::isodeposit::OtherCandidatesDeltaRVeto::setEvent ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
virtual

Picks up the directions of the given candidates.

Implements reco::isodeposit::EventDependentAbsVeto.

Definition at line 17 of file EventDependentAbsVetos.cc.

References objects.IsoTrackAnalyzer::candidates, and edm::Event::getByToken().

17  {
18  items_.clear();
20  iEvent.getByToken(src_, candidates);
21  for (edm::View<reco::Candidate>::const_iterator it = candidates->begin(), ed = candidates->end(); it != ed; ++it) {
22  items_.push_back(Direction(it->eta(), it->phi()));
23  }
24 }
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:464
edm::EDGetTokenT< edm::View< reco::Candidate > > src_
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:85
bool reco::isodeposit::OtherCandidatesDeltaRVeto::veto ( double  eta,
double  phi,
float  value 
) const
virtual

Return "true" if a deposit at specific (eta,phi) with that value must be vetoed in the sum This is true if the deposit is within the configured deltaR from any item of the source collection

Implements reco::isodeposit::AbsVeto.

Definition at line 8 of file EventDependentAbsVetos.cc.

References reco::deltaR2(), deltaR2_, eta, and items_.

9 {
10  for (std::vector<Direction>::const_iterator it = items_.begin(), ed = items_.end(); it != ed; ++it) {
11  if (::deltaR2(it->eta(), it->phi(), eta, phi) < deltaR2_) return true;
12  }
13  return false;
14 }
double deltaR2(const T1 &t1, const T2 &t2)
Definition: deltaR.h:36

Member Data Documentation

float reco::isodeposit::OtherCandidatesDeltaRVeto::deltaR2_
private

Definition at line 35 of file EventDependentAbsVetos.h.

Referenced by veto().

std::vector<Direction> reco::isodeposit::OtherCandidatesDeltaRVeto::items_
private

Definition at line 36 of file EventDependentAbsVetos.h.

Referenced by veto().

edm::EDGetTokenT<edm::View<reco::Candidate> > reco::isodeposit::OtherCandidatesDeltaRVeto::src_
private

Definition at line 34 of file EventDependentAbsVetos.h.