CMS 3D CMS Logo

Typedefs | Enumerations | Functions | Variables
noPuUtils Namespace Reference

Typedefs

typedef std::vector< std::pair< reco::PFCandidateRef, int > > CandQualityPairVector
 
typedef edm::AssociationMap< edm::OneToManyWithQuality< reco::PFCandidateCollection, reco::VertexCollection, int > > reversedPFCandToVertexAssMap
 
typedef std::vector< std::pair< reco::VertexRef, int > > VertexQualityPairVector
 

Enumerations

enum  { kNeutral =0, kChNoAssoc, kChPUAssoc, kChHSAssoc }
 

Functions

int isVertexAssociated (const reco::PFCandidatePtr &, const PFCandToVertexAssMap &, const reco::VertexCollection &, double)
 
int isVertexAssociated_fast (const reco::PFCandidateRef &, const noPuUtils::reversedPFCandToVertexAssMap &, const reco::VertexCollection &, double, int &, int)
 
void promoteAssocToHSAssoc (int quality, double z, const reco::VertexCollection &vertices, double dZ, int &vtxAssociationType, bool checkdR2)
 
noPuUtils::reversedPFCandToVertexAssMap reversePFCandToVertexAssociation (const PFCandToVertexAssMap &)
 

Variables

const double dR2Min =0.01*0.01
 

Typedef Documentation

typedef std::vector<std::pair<reco::PFCandidateRef, int> > noPuUtils::CandQualityPairVector

Definition at line 24 of file NoPileUpMEtAuxFunctions.h.

Definition at line 28 of file NoPileUpMEtAuxFunctions.h.

typedef std::vector<std::pair<reco::VertexRef, int> > noPuUtils::VertexQualityPairVector

Definition at line 25 of file NoPileUpMEtAuxFunctions.h.

Enumeration Type Documentation

anonymous enum

Function Documentation

int noPuUtils::isVertexAssociated ( const reco::PFCandidatePtr pfCandidate,
const PFCandToVertexAssMap pfCandToVertexAssociations,
const reco::VertexCollection vertices,
double  dZ 
)

Definition at line 11 of file NoPileUpMEtAuxFunctions.cc.

References edm::AssociationMap< Tag >::begin(), edm::AssociationMap< Tag >::end(), kChNoAssoc, kNeutral, promoteAssocToHSAssoc(), btvTracks_cfi::quality, and edm::refToPtr().

Referenced by JVFJetIdProducer::~JVFJetIdProducer().

14  {
15  int vtxAssociationType = noPuUtils::kNeutral;
16 
17  if ( pfCandidate->charge() != 0 ) {
18  vtxAssociationType = noPuUtils::kChNoAssoc;
19  for ( PFCandToVertexAssMap::const_iterator pfCandToVertexAssociation = pfCandToVertexAssociations.begin();
20  pfCandToVertexAssociation != pfCandToVertexAssociations.end(); ++pfCandToVertexAssociation ) {
21 
22  const noPuUtils::CandQualityPairVector& pfCandidates_vertex = pfCandToVertexAssociation->val;
23 
24 
25  for ( noPuUtils::CandQualityPairVector::const_iterator pfCandidate_vertex = pfCandidates_vertex.begin();
26  pfCandidate_vertex != pfCandidates_vertex.end(); ++pfCandidate_vertex ) {
27 
28  const reco::PFCandidatePtr pfcVtx= edm::refToPtr(pfCandidate_vertex->first); //<reco::PFCandidatePtr>
29  //std::cout<<pfCandidate<<" "<<test<<std::endl;
30 
31  if(pfCandidate != pfcVtx ) continue;//std::cout<<" pouet "<<pfCandidate<<" "<<test<<std::endl;
32 
33  //if(deltaR2(pfCandidate->p4(), pfCandidate_vertex->first->p4()) > dR2Min ) continue;
34  double z = pfCandToVertexAssociation->key->position().z();
35  int quality = pfCandidate_vertex->second;
36  promoteAssocToHSAssoc( quality, z, vertices, dZ, vtxAssociationType, false);
37  }
38  }
39  }
40 
41  return vtxAssociationType;
42  }
Ptr< typename C::value_type > refToPtr(Ref< C, typename C::value_type, refhelper::FindUsingAdvance< C, typename C::value_type > > const &ref)
Definition: RefToPtr.h:18
const_iterator end() const
last iterator over the map (read only)
float float float z
std::vector< std::pair< reco::PFCandidateRef, int > > CandQualityPairVector
void promoteAssocToHSAssoc(int quality, double z, const reco::VertexCollection &vertices, double dZ, int &vtxAssociationType, bool checkdR2)
const_iterator begin() const
first iterator over the map (read only)
int noPuUtils::isVertexAssociated_fast ( const reco::PFCandidateRef pfCandidate,
const noPuUtils::reversedPFCandToVertexAssMap pfCandToVertexAssociations,
const reco::VertexCollection vertices,
double  dZ,
int &  numWarnings,
int  maxWarnings 
)

Definition at line 64 of file NoPileUpMEtAuxFunctions.cc.

References edm::AssociationMap< Tag >::begin(), reco::deltaR2(), edm::AssociationMap< Tag >::end(), edm::AssociationMap< Tag >::find(), kChNoAssoc, edm::Ref< C, T, F >::key(), kNeutral, promoteAssocToHSAssoc(), btvTracks_cfi::quality, and edm::helpers::KeyVal< K, V >::val.

Referenced by NoPileUpPFMEtDataProducer::produce().

67  {
68  int vtxAssociationType = noPuUtils::kNeutral;
69 
70  if ( pfCandidate->charge() != 0 ) {
71  vtxAssociationType = noPuUtils::kChNoAssoc;
72 
73  const noPuUtils::VertexQualityPairVector* pfCandAssocVtxs = nullptr;
74  noPuUtils::reversedPFCandToVertexAssMap::const_iterator itPfcToVtxAss = pfCandToVertexAssociations.find(pfCandidate);
75  if ( itPfcToVtxAss != pfCandToVertexAssociations.end() ) {
76  pfCandAssocVtxs = &itPfcToVtxAss->val;
77  } else {
78  for ( noPuUtils::reversedPFCandToVertexAssMap::const_iterator pfcToVtxAssoc = pfCandToVertexAssociations.begin();
79  pfcToVtxAssoc != pfCandToVertexAssociations.end(); ++pfcToVtxAssoc ) {
80  if ( deltaR2(pfCandidate->p4(), pfcToVtxAssoc->key->p4()) < dR2Min ) {
81  pfCandAssocVtxs = &pfcToVtxAssoc->val;
82  break;
83  }
84  }
85  }
86  if ( pfCandAssocVtxs!=nullptr ) {
87  for ( noPuUtils::VertexQualityPairVector::const_iterator pfcAssVtx = pfCandAssocVtxs->begin();
88  pfcAssVtx != pfCandAssocVtxs->end(); ++pfcAssVtx ) {
89  double z = pfcAssVtx->first->position().z();
90  int quality = pfcAssVtx->second;
91  promoteAssocToHSAssoc( quality, z, vertices, dZ, vtxAssociationType, false);
92  }
93  }
94  }
95 
96  return vtxAssociationType;
97  }
const_iterator end() const
last iterator over the map (read only)
const_iterator find(const key_type &k) const
find element with specified reference key
key_type key() const
Accessor for product key.
Definition: Ref.h:264
float float float z
const double dR2Min
void promoteAssocToHSAssoc(int quality, double z, const reco::VertexCollection &vertices, double dZ, int &vtxAssociationType, bool checkdR2)
T1 deltaR2(T1 eta1, T2 phi1, T3 eta2, T4 phi2)
Definition: deltaR.h:36
std::vector< std::pair< reco::VertexRef, int > > VertexQualityPairVector
const_iterator begin() const
first iterator over the map (read only)
void noPuUtils::promoteAssocToHSAssoc ( int  quality,
double  z,
const reco::VertexCollection vertices,
double  dZ,
int &  vtxAssociationType,
bool  checkdR2 
)

Definition at line 99 of file NoPileUpMEtAuxFunctions.cc.

References funct::abs(), and kChHSAssoc.

Referenced by isVertexAssociated(), and isVertexAssociated_fast().

100  {
101 
102  if ( quality >= noPuUtils::kChHSAssoc ) {
103  for ( reco::VertexCollection::const_iterator vertex = vertices.begin();
104  vertex != vertices.end(); ++vertex ) {
105 
106  if ( std::abs( z - vertex->position().z()) < dZ ) {
107  if ( vtxAssociationType < noPuUtils::kChHSAssoc ) vtxAssociationType = noPuUtils::kChHSAssoc;
108  }
109  }
110  }
111 
112  }
float float float z
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
noPuUtils::reversedPFCandToVertexAssMap noPuUtils::reversePFCandToVertexAssociation ( const PFCandToVertexAssMap pfCandToVertexAssociations)

Definition at line 45 of file NoPileUpMEtAuxFunctions.cc.

References edm::AssociationMap< Tag >::begin(), edm::AssociationMap< Tag >::end(), edm::AssociationMap< Tag >::insert(), and edm::Ref< C, T, F >::key().

Referenced by NoPileUpPFMEtDataProducer::produce().

45  {
46 
47  noPuUtils::reversedPFCandToVertexAssMap revPfCandToVtxAssoc;
48 
49  for ( PFCandToVertexAssMap::const_iterator pfCandToVertexAssociation = pfCandToVertexAssociations.begin();
50  pfCandToVertexAssociation != pfCandToVertexAssociations.end(); ++pfCandToVertexAssociation ) {
51  const reco::VertexRef& vertex = pfCandToVertexAssociation->key;
52 
53  const noPuUtils::CandQualityPairVector& pfCandidates_vertex = pfCandToVertexAssociation->val;
54  for ( noPuUtils::CandQualityPairVector::const_iterator pfCandidate_vertex = pfCandidates_vertex.begin();
55  pfCandidate_vertex != pfCandidates_vertex.end(); ++pfCandidate_vertex ) {
56  revPfCandToVtxAssoc.insert(pfCandidate_vertex->first, std::make_pair(vertex, pfCandidate_vertex->second));
57  }
58  }
59 
60  return revPfCandToVtxAssoc;
61  }
const_iterator end() const
last iterator over the map (read only)
key_type key() const
Accessor for product key.
Definition: Ref.h:264
std::vector< std::pair< reco::PFCandidateRef, int > > CandQualityPairVector
void insert(const key_type &k, const data_type &v)
insert an association
const_iterator begin() const
first iterator over the map (read only)

Variable Documentation

const double noPuUtils::dR2Min =0.01*0.01

Definition at line 9 of file NoPileUpMEtAuxFunctions.cc.