CMS 3D CMS Logo

PFCand_NoPU_WithAM.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: PFCand_NoPU_WithAM
4 // Class: PFCand_NoPU_WithAM
5 //
11 //
12 // Original Author: Matthias Geisler,32 4-B20,+41227676487,
13 // Created: Thu Dec 1 16:07:41 CET 2011
14 // $Id: PFCand_NoPU_WithAM.cc,v 1.5 2012/12/06 14:03:15 mgeisler Exp $
15 //
16 //
18 
19 // system include files
20 #include <memory>
21 #include <vector>
22 
23 // user include files
24 
28 
30 
32 
36 
37 using namespace edm;
38 using namespace std;
39 using namespace reco;
40 
41 //
42 // constructors and destructor
43 //
45  //now do what ever other initialization is needed
46 
47  input_AssociationType_ = iConfig.getParameter<InputTag>("AssociationType");
48 
49  token_PFCandToVertexAssMap_ =
50  mayConsume<PFCandToVertexAssMap>(iConfig.getParameter<InputTag>("VertexPFCandAssociationMap"));
51  token_VertexToPFCandAssMap_ =
52  mayConsume<VertexToPFCandAssMap>(iConfig.getParameter<InputTag>("VertexPFCandAssociationMap"));
53 
54  token_VertexCollection_ = mayConsume<VertexCollection>(iConfig.getParameter<InputTag>("VertexCollection"));
55 
56  input_MinQuality_ = iConfig.getParameter<int>("MinQuality");
57 
58  //register your products
59 
60  if (input_AssociationType_.label() == "PFCandsToVertex") {
61  produces<PFCandidateCollection>("P2V");
62  } else {
63  if (input_AssociationType_.label() == "VertexToPFCands") {
64  produces<PFCandidateCollection>("V2P");
65  } else {
66  if (input_AssociationType_.label() == "Both") {
67  produces<PFCandidateCollection>("P2V");
68  produces<PFCandidateCollection>("V2P");
69  } else {
70  cout << "No correct InputTag for AssociationType!" << endl;
71  cout << "Won't produce any PFCandiateCollection!" << endl;
72  }
73  }
74  }
75 }
76 
77 //
78 // member functions
79 //
80 
81 // ------------ method called to produce the data ------------
83  unique_ptr<PFCandidateCollection> p2v_firstvertex(new PFCandidateCollection());
84  unique_ptr<PFCandidateCollection> v2p_firstvertex(new PFCandidateCollection());
85 
86  bool p2vassmap = false;
87  bool v2passmap = false;
88 
89  //get the input vertex<->pf-candidate association map
92 
93  string asstype = input_AssociationType_.label();
94 
95  if ((asstype == "PFCandsToVertex") || (asstype == "Both")) {
96  if (iEvent.getByToken(token_PFCandToVertexAssMap_, p2vAM)) {
97  p2vassmap = true;
98  }
99  }
100 
101  if ((asstype == "VertexToPFCands") || (asstype == "Both")) {
102  if (iEvent.getByToken(token_VertexToPFCandAssMap_, v2pAM)) {
103  v2passmap = true;
104  }
105  }
106 
107  if (!p2vassmap && !v2passmap) {
108  cout << "No input collection could be found" << endl;
109  return;
110  }
111 
112  int negativeQuality = 0;
113  if (input_MinQuality_ >= 2) {
114  negativeQuality = -1;
115  } else {
116  if (input_MinQuality_ == 1) {
117  negativeQuality = -2;
118  } else {
119  negativeQuality = -3;
120  }
121  }
122 
123  if (p2vassmap) {
124  const PFCandQualityPairVector pfccoll = p2vAM->begin()->val;
125 
126  //get the candidates associated to the first vertex and store them in a pf-candidate collection
127  for (unsigned int pfccoll_ite = 0; pfccoll_ite < pfccoll.size(); pfccoll_ite++) {
128  PFCandidateRef pfcand = pfccoll[pfccoll_ite].first;
129  int quality = pfccoll[pfccoll_ite].second;
130 
131  if ((quality >= input_MinQuality_) || ((quality < 0) && (quality >= negativeQuality))) {
132  p2v_firstvertex->push_back(*pfcand);
133  }
134  }
135 
136  iEvent.put(std::move(p2v_firstvertex), "P2V");
137  }
138 
139  if (v2passmap) {
140  //get the input vertex collection
141  Handle<VertexCollection> input_vtxcollH;
142  iEvent.getByToken(token_VertexCollection_, input_vtxcollH);
143 
144  VertexRef firstVertexRef(input_vtxcollH, 0);
145 
147 
148  for (v2p_ite = v2pAM->begin(); v2p_ite != v2pAM->end(); v2p_ite++) {
149  PFCandidateRef pfcand = v2p_ite->key;
150 
151  for (unsigned v_ite = 0; v_ite < (v2p_ite->val).size(); v_ite++) {
152  VertexRef vtxref = (v2p_ite->val)[v_ite].first;
153  int quality = (v2p_ite->val)[v_ite].second;
154 
155  if ((vtxref == firstVertexRef) &&
156  ((quality >= input_MinQuality_) || ((quality < 0) && (quality >= negativeQuality)))) {
157  v2p_firstvertex->push_back(*pfcand);
158  }
159  }
160  }
161 
162  iEvent.put(std::move(v2p_firstvertex), "V2P");
163  }
164 }
165 
166 // ------------ method fills 'descriptions' with the allowed parameters for the module ------------
168  //The following says we do not know what parameters are allowed so do no validation
169  // Please change this to state exactly what you do use, even if it is no parameters
171 
172  desc.add<InputTag>("AssociationType");
173  desc.add<InputTag>("VertexPFCandAssociationMap");
174  desc.add<InputTag>("VertexCollection");
175  desc.add<int>("MinQuality");
176 
177  descriptions.addDefault(desc);
178 }
179 
180 //define this as a plug-in
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
std::vector< l1t::PFCandidate > PFCandidateCollection
Definition: PFCandidate.h:86
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
const_iterator end() const
last iterator over the map (read only)
U second(std::pair< T, U > const &p)
string quality
int iEvent
Definition: GenABIO.cc:224
void addDefault(ParameterSetDescription const &psetDescription)
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
PFCand_NoPU_WithAM(const edm::ParameterSet &)
std::vector< PFCandQualityPair > PFCandQualityPairVector
void produce(edm::StreamID, edm::Event &, const edm::EventSetup &) const override
const_iterator begin() const
first iterator over the map (read only)
fixed size matrix
HLT enums.
T first(std::pair< T, U > const &p)
def move(src, dest)
Definition: eostools.py:511