CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ElectronIDPFCandidateSelectorDefinition.h
Go to the documentation of this file.
1 #ifndef CommonTools_ParticleFlow_ElectronIDPFCandidateSelectorDefinition
2 #define CommonTools_ParticleFlow_ElectronIDPFCandidateSelectorDefinition
3 
20 #include <algorithm>
21 
22 namespace pf2pat {
23 
27  iC.consumes<reco::GsfElectronCollection>(cfg.getParameter<edm::InputTag>("recoGsfElectrons"))),
28  electronIdToken_(iC.consumes<edm::ValueMap<float> >(cfg.getParameter<edm::InputTag>("electronIdMap"))) {
29  if (cfg.exists("bitsToCheck")) {
30  isBitMap_ = true;
31  mask_ = 0;
32  if (cfg.existsAs<std::vector<std::string> >("bitsToCheck")) {
33  std::vector<std::string> strbits = cfg.getParameter<std::vector<std::string> >("bitsToCheck");
34  for (std::vector<std::string>::const_iterator istrbit = strbits.begin(), estrbit = strbits.end();
35  istrbit != estrbit;
36  ++istrbit) {
37  if (*istrbit == "id") {
38  mask_ |= 1;
39  } else if (*istrbit == "iso") {
40  mask_ |= 2;
41  } else if (*istrbit == "conv") {
42  mask_ |= 4;
43  } else if (*istrbit == "ip") {
44  mask_ |= 8;
45  } else
46  throw cms::Exception("Configuration")
47  << "ElectronIDPFCandidateSelector: "
48  << "bitsToCheck allowed string values are only id(0), iso(1), conv(2), ip(3).\n"
49  << "Otherwise, use uint32_t bitmask).\n";
50  }
51  } else if (cfg.existsAs<uint32_t>("bitsToCheck")) {
52  mask_ = cfg.getParameter<uint32_t>("bitsToCheck");
53  } else {
54  throw cms::Exception("Configuration")
55  << "ElectronIDPFCandidateSelector: "
56  << "bitsToCheck must be either a vector of strings, or a uint32 bitmask.\n";
57  }
58  } else {
59  isBitMap_ = false;
60  value_ = cfg.getParameter<double>("electronIdCut");
61  }
62  }
63 
64  void select(const HandleToCollection& hc, const edm::Event& e, const edm::EventSetup& s) {
65  selected_.clear();
66 
68  e.getByToken(electronsToken_, electrons);
69 
71  e.getByToken(electronIdToken_, electronId);
72 
73  unsigned key = 0;
74  for (collection::const_iterator pfc = hc->begin(); pfc != hc->end(); ++pfc, ++key) {
75  // Get GsfTrack for matching with reco::GsfElectron objects
76  reco::GsfTrackRef PfTk = pfc->gsfTrackRef();
77 
78  // skip ones without GsfTrack: they won't be matched anyway
79  if (PfTk.isNull())
80  continue;
81 
82  int match = -1;
83  // try first the non-ambiguous tracks
84  for (auto it = electrons->begin(), ed = electrons->end(); it != ed; ++it) {
85  if (it->gsfTrack() == PfTk) {
86  match = it - electrons->begin();
87  break;
88  }
89  }
90  // then the ambiguous ones
91  if (match == -1) {
92  for (auto it = electrons->begin(), ed = electrons->end(); it != ed; ++it) {
93  if (std::count(it->ambiguousGsfTracks().begin(), it->ambiguousGsfTracks().end(), PfTk) > 0) {
94  match = it - electrons->begin();
95  break;
96  }
97  }
98  }
99  // if found, make a GsfElectronRef and read electron id
100  if (match != -1) {
101  reco::GsfElectronRef ref(electrons, match);
102  float eleId = (*electronId)[ref];
103  bool pass = false;
104  if (isBitMap_) {
105  uint32_t thisval = eleId;
106  pass = ((thisval & mask_) == mask_);
107  } else {
108  pass = (eleId > value_);
109  }
110  if (pass) {
111  selected_.push_back(reco::PFCandidate(*pfc));
112  reco::PFCandidatePtr ptrToMother(hc, key);
113  selected_.back().setSourceCandidatePtr(ptrToMother);
114  }
115  }
116  }
117  }
118 
119  private:
122  bool isBitMap_;
123  uint32_t mask_;
124  double value_;
125  };
126 } // namespace pf2pat
127 
128 #endif
Selects PFCandidates basing on cuts provided with string cut parser.
tuple cfg
Definition: looper.py:296
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:171
ElectronIDPFCandidateSelectorDefinition(const edm::ParameterSet &cfg, edm::ConsumesCollector &&iC)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
bool exists(std::string const &parameterName) const
checks if a parameter exists
std::vector< GsfElectron > GsfElectronCollection
collection of GsfElectron objects
tuple key
prepare the HTCondor submission files and eventually submit them
bool isNull() const
Checks for null.
Definition: Ref.h:235
void select(const HandleToCollection &hc, const edm::Event &e, const edm::EventSetup &s)
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
edm::EDGetTokenT< reco::GsfElectronCollection > electronsToken_
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:41
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10