CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
GsfEleConversionVetoCut Class Reference
Inheritance diagram for GsfEleConversionVetoCut:
CutApplicatorWithEventContentBase CutApplicatorBase candidate_functions::CandidateCut

Public Member Functions

CandidateType candidateType () const final
 
void getEventContent (const edm::EventBase &) final
 
 GsfEleConversionVetoCut (const edm::ParameterSet &c)
 
result_type operator() (const reco::GsfElectronPtr &) const final
 
void setConsumes (edm::ConsumesCollector &) final
 
double value (const reco::CandidatePtr &cand) const final
 
- Public Member Functions inherited from CutApplicatorWithEventContentBase
 CutApplicatorWithEventContentBase ()
 
 CutApplicatorWithEventContentBase (const edm::ParameterSet &c)
 
 CutApplicatorWithEventContentBase (const CutApplicatorWithEventContentBase &)=delete
 
CutApplicatorWithEventContentBaseoperator= (const CutApplicatorWithEventContentBase &)=delete
 
 ~CutApplicatorWithEventContentBase () override
 Destructor. More...
 
- Public Member Functions inherited from CutApplicatorBase
virtual result_type asCandidate (const argument_type &) const
 
 CutApplicatorBase ()
 
 CutApplicatorBase (const edm::ParameterSet &c)
 
 CutApplicatorBase (const CutApplicatorBase &)=delete
 
const std::string & name () const override
 
result_type operator() (const argument_type &) const final
 
virtual result_type operator() (const pat::ElectronPtr &) const
 
virtual result_type operator() (const reco::PhotonPtr &) const
 
virtual result_type operator() (const pat::PhotonPtr &) const
 
virtual result_type operator() (const reco::MuonPtr &) const
 
virtual result_type operator() (const pat::MuonPtr &) const
 
virtual result_type operator() (const reco::PFTauPtr &) const
 
virtual result_type operator() (const pat::TauPtr &) const
 
CutApplicatorBaseoperator= (const CutApplicatorBase &)=delete
 
 ~CutApplicatorBase () override
 Destructor. More...
 
- Public Member Functions inherited from candidate_functions::CandidateCut
 CandidateCut ()
 
virtual ~CandidateCut ()
 

Private Attributes

edm::Handle< reco::ConversionCollection_convs
 
edm::Handle< reco::BeamSpot_thebs
 

Additional Inherited Members

- Public Types inherited from CutApplicatorBase
enum  CandidateType {
  NONE, ELECTRON, MUON, PHOTON,
  TAU, PATELECTRON, PATMUON, PATPHOTON,
  PATTAU
}
 
- Public Types inherited from candidate_functions::CandidateCut
using argument_type = reco::CandidatePtr
 
using result_type = bool
 
- Protected Attributes inherited from CutApplicatorWithEventContentBase
std::unordered_map< std::string, edm::InputTagcontentTags_
 
std::unordered_map< std::string, edm::EDGetTokencontentTokens_
 

Detailed Description

Definition at line 7 of file GsfEleConversionVetoCut.cc.

Constructor & Destructor Documentation

GsfEleConversionVetoCut::GsfEleConversionVetoCut ( const edm::ParameterSet c)

Definition at line 27 of file GsfEleConversionVetoCut.cc.

References CutApplicatorWithEventContentBase::contentTags_, and edm::ParameterSet::getParameter().

28  edm::InputTag conversiontag = c.getParameter<edm::InputTag>("conversionSrc");
29  contentTags_.emplace("conversions", conversiontag);
30 
31  edm::InputTag conversiontagMiniAOD = c.getParameter<edm::InputTag>("conversionSrcMiniAOD");
32  contentTags_.emplace("conversionsMiniAOD", conversiontagMiniAOD);
33 
34  edm::InputTag beamspottag = c.getParameter<edm::InputTag>("beamspotSrc");
35  contentTags_.emplace("beamspot", beamspottag);
36 }
T getParameter(std::string const &) const
std::unordered_map< std::string, edm::InputTag > contentTags_

Member Function Documentation

CandidateType GsfEleConversionVetoCut::candidateType ( ) const
inlinefinalvirtual

Reimplemented from CutApplicatorBase.

Definition at line 18 of file GsfEleConversionVetoCut.cc.

References CutApplicatorBase::ELECTRON.

void GsfEleConversionVetoCut::getEventContent ( const edm::EventBase ev)
finalvirtual

Implements CutApplicatorWithEventContentBase.

Definition at line 47 of file GsfEleConversionVetoCut.cc.

References _convs, _thebs, CutApplicatorWithEventContentBase::contentTags_, edm::EventBase::getByLabel(), and edm::HandleBase::isValid().

47  {
48  // First try AOD, then go to miniAOD. Use the same Handle since collection class is the same.
49  ev.getByLabel(contentTags_["conversions"], _convs);
50  if (!_convs.isValid())
51  ev.getByLabel(contentTags_["conversionsMiniAOD"], _convs);
52 
53  ev.getByLabel(contentTags_["beamspot"], _thebs);
54 }
std::unordered_map< std::string, edm::InputTag > contentTags_
edm::Handle< reco::BeamSpot > _thebs
edm::Handle< reco::ConversionCollection > _convs
bool isValid() const
Definition: HandleBase.h:70
bool getByLabel(InputTag const &, Handle< T > &) const
Definition: EventBase.h:92
CutApplicatorBase::result_type GsfEleConversionVetoCut::operator() ( const reco::GsfElectronPtr cand) const
finalvirtual

Reimplemented from CutApplicatorBase.

Definition at line 56 of file GsfEleConversionVetoCut.cc.

References _convs, _thebs, ConversionTools::hasMatchedConversion(), edm::HandleBase::isValid(), and reco::BeamSpot::position().

56  {
57  if (_thebs.isValid() && _convs.isValid()) {
59  } else {
60  edm::LogWarning("GsfEleConversionVetoCut") << "Couldn't find a necessary collection, returning true!";
61  }
62  return true;
63 }
edm::Handle< reco::BeamSpot > _thebs
edm::Handle< reco::ConversionCollection > _convs
static bool hasMatchedConversion(const reco::GsfElectron &ele, const reco::ConversionCollection &convCol, const math::XYZPoint &beamspot, bool allowCkfMatch=true, float lxyMin=2.0, float probMin=1e-6, unsigned int nHitsBeforeVtxMax=0)
bool isValid() const
Definition: HandleBase.h:70
const Point & position() const
position
Definition: BeamSpot.h:59
void GsfEleConversionVetoCut::setConsumes ( edm::ConsumesCollector cc)
finalvirtual

Implements CutApplicatorWithEventContentBase.

Definition at line 38 of file GsfEleConversionVetoCut.cc.

References edm::ConsumesCollector::consumes(), CutApplicatorWithEventContentBase::contentTags_, CutApplicatorWithEventContentBase::contentTokens_, and edm::ConsumesCollector::mayConsume().

38  {
39  auto convs = cc.mayConsume<reco::ConversionCollection>(contentTags_["conversions"]);
40  auto convsMiniAOD = cc.mayConsume<reco::ConversionCollection>(contentTags_["conversionsMiniAOD"]);
41  auto thebs = cc.consumes<reco::BeamSpot>(contentTags_["beamspot"]);
42  contentTokens_.emplace("conversions", convs);
43  contentTokens_.emplace("conversionsMiniAOD", convsMiniAOD);
44  contentTokens_.emplace("beamspot", thebs);
45 }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
std::unordered_map< std::string, edm::InputTag > contentTags_
EDGetTokenT< ProductType > mayConsume(edm::InputTag const &tag)
std::vector< Conversion > ConversionCollection
collectin of Conversion objects
Definition: ConversionFwd.h:9
std::unordered_map< std::string, edm::EDGetToken > contentTokens_
double GsfEleConversionVetoCut::value ( const reco::CandidatePtr cand) const
finalvirtual

Implements candidate_functions::CandidateCut.

Definition at line 65 of file GsfEleConversionVetoCut.cc.

References _convs, _thebs, ConversionTools::hasMatchedConversion(), edm::HandleBase::isValid(), and reco::BeamSpot::position().

65  {
66  reco::GsfElectronPtr ele(cand);
67  if (_thebs.isValid() && _convs.isValid()) {
69  } else {
70  edm::LogWarning("GsfEleConversionVetoCut") << "Couldn't find a necessary collection, returning true!";
71  return true;
72  }
73 }
edm::Handle< reco::BeamSpot > _thebs
edm::Handle< reco::ConversionCollection > _convs
static bool hasMatchedConversion(const reco::GsfElectron &ele, const reco::ConversionCollection &convCol, const math::XYZPoint &beamspot, bool allowCkfMatch=true, float lxyMin=2.0, float probMin=1e-6, unsigned int nHitsBeforeVtxMax=0)
bool isValid() const
Definition: HandleBase.h:70
const Point & position() const
position
Definition: BeamSpot.h:59

Member Data Documentation

edm::Handle<reco::ConversionCollection> GsfEleConversionVetoCut::_convs
private

Definition at line 21 of file GsfEleConversionVetoCut.cc.

Referenced by getEventContent(), operator()(), and value().

edm::Handle<reco::BeamSpot> GsfEleConversionVetoCut::_thebs
private

Definition at line 22 of file GsfEleConversionVetoCut.cc.

Referenced by getEventContent(), operator()(), and value().