CMS 3D CMS Logo

PFCand_AssoMapAlgos.cc
Go to the documentation of this file.
1 
3 
5 
6 using namespace edm;
7 using namespace std;
8 using namespace reco;
9 
10 /*************************************************************************************/
11 /* dedicated constructor for the algorithms */
12 /*************************************************************************************/
13 
15  : PF_PU_AssoMapAlgos(iConfig, iC) {
16  input_MaxNumAssociations_ = iConfig.getParameter<int>("MaxNumberOfAssociations");
17 
18  token_VertexCollection_ = iC.consumes<VertexCollection>(iConfig.getParameter<InputTag>("VertexCollection"));
19 
20  token_BeamSpot_ = iC.consumes<BeamSpot>(iConfig.getParameter<InputTag>("BeamSpot"));
21 }
22 
23 /*************************************************************************************/
24 /* get all needed collections at the beginning */
25 /*************************************************************************************/
26 
29 
30  //get the offline beam spot
32 
33  //get the input vertex collection
35 
36  iSetup.get<IdealMagneticFieldRecord>().get(bFieldH);
37 }
38 
39 /*************************************************************************************/
40 /* create the pf candidate to vertex association and the inverse map */
41 /*************************************************************************************/
42 std::pair<std::unique_ptr<PFCandToVertexAssMap>, std::unique_ptr<VertexToPFCandAssMap>>
44  unique_ptr<PFCandToVertexAssMap> pfcand2vertex(new PFCandToVertexAssMap(vtxcollH, pfCandH));
45  unique_ptr<VertexToPFCandAssMap> vertex2pfcand(new VertexToPFCandAssMap(pfCandH, vtxcollH));
46 
47  int num_vertices = vtxcollH->size();
48  if (num_vertices < input_MaxNumAssociations_)
49  input_MaxNumAssociations_ = num_vertices;
50  vector<VertexRef> vtxColl_help;
52  vtxColl_help = CreateVertexVector(vtxcollH);
53 
54  for (unsigned i = 0; i < pfCandH->size(); i++) {
55  PFCandidateRef candref(pfCandH, i);
56 
58  vtxColl_help = CreateVertexVector(vtxcollH);
59 
60  VertexPfcQuality VtxPfcQual;
61 
62  TrackRef PFCtrackref = candref->trackRef();
63 
64  if (PFCtrackref.isNull()) {
65  for (int assoc_ite = 0; assoc_ite < input_MaxNumAssociations_; ++assoc_ite) {
66  int quality = -1 - assoc_ite;
67 
68  // Insert the best vertex and the pair of track and the quality of this association in the map
69  pfcand2vertex->insert(vtxColl_help.at(0), make_pair(candref, quality));
70  vertex2pfcand->insert(candref, make_pair(vtxColl_help.at(0), quality));
71 
72  //cleanup only if multiple iterations are made
73  if (input_MaxNumAssociations_ > 1)
74  PF_PU_AssoMapAlgos::EraseVertex(vtxColl_help, vtxColl_help.at(0));
75  }
76 
77  } else {
78  TransientTrack transtrk(PFCtrackref, &(*bFieldH));
79  transtrk.setBeamSpot(*beamspotH);
80  transtrk.setES(iSetup);
81 
82  for (int assoc_ite = 0; assoc_ite < input_MaxNumAssociations_; ++assoc_ite) {
83  VertexStepPair assocVtx = FindAssociation(PFCtrackref, vtxColl_help, bFieldH, iSetup, beamspotH, assoc_ite);
84  int step = assocVtx.second;
85  double distance = (IPTools::absoluteImpactParameter3D(transtrk, *(assocVtx.first))).second.value();
86 
87  int quality = DefineQuality(assoc_ite, step, distance);
88 
89  // Insert the best vertex and the pair of track and the quality of this association in the map
90  pfcand2vertex->insert(assocVtx.first, make_pair(candref, quality));
91  vertex2pfcand->insert(candref, make_pair(assocVtx.first, quality));
92 
93  //cleanup only if multiple iterations are made
94  if (input_MaxNumAssociations_ > 2)
95  PF_PU_AssoMapAlgos::EraseVertex(vtxColl_help, assocVtx.first);
96  }
97 
98  } //check PFCtrackref.isNull
99 
100  } //i on pfCandH
101 
102  return {std::move(pfcand2vertex), std::move(vertex2pfcand)};
103 }
104 
105 /*************************************************************************************/
106 /* create the pf candidate to vertex association map */
107 /*************************************************************************************/
108 
109 std::unique_ptr<PFCandToVertexAssMap> PFCand_AssoMapAlgos::CreatePFCandToVertexMap(
111  return createMappings(pfCandH, iSetup).first;
112 }
113 
114 /*************************************************************************************/
115 /* create the vertex to pf candidate association map */
116 /*************************************************************************************/
117 
118 std::unique_ptr<VertexToPFCandAssMap> PFCand_AssoMapAlgos::CreateVertexToPFCandMap(
120  return createMappings(pfCandH, iSetup).second;
121 }
122 
123 /*************************************************************************************/
124 /* create the vertex to pf candidate association map */
125 /*************************************************************************************/
126 
127 std::unique_ptr<PFCandToVertexAssMap> PFCand_AssoMapAlgos::SortPFCandAssociationMap(
128  PFCandToVertexAssMap* pfcvertexassInput, edm::EDProductGetter const* getter) {
129  //create a new PFCandVertexAssMap for the Output which will be sorted
130  unique_ptr<PFCandToVertexAssMap> pfcvertexassOutput(new PFCandToVertexAssMap(getter));
131 
132  //Create and fill a vector of pairs of vertex and the summed (pT)**2 of the pfcandidates associated to the vertex
133  VertexPtsumVector vertexptsumvector;
134 
135  //loop over all vertices in the association map
136  for (PFCandToVertexAssMap::const_iterator assomap_ite = pfcvertexassInput->begin();
137  assomap_ite != pfcvertexassInput->end();
138  assomap_ite++) {
139  const VertexRef assomap_vertexref = assomap_ite->key;
140  const PFCandQualityPairVector pfccoll = assomap_ite->val;
141 
142  float ptsum = 0;
143 
144  PFCandidateRef pfcandref;
145 
146  //get the pfcandidates associated to the vertex and calculate the pT**2
147  for (unsigned int pfccoll_ite = 0; pfccoll_ite < pfccoll.size(); pfccoll_ite++) {
148  pfcandref = pfccoll[pfccoll_ite].first;
149  int quality = pfccoll[pfccoll_ite].second;
150 
151  if ((quality <= 2) && (quality != -1))
152  continue;
153 
154  double man_pT = pfcandref->pt();
155  if (man_pT > 0.)
156  ptsum += man_pT * man_pT;
157  }
158 
159  vertexptsumvector.push_back(make_pair(assomap_vertexref, ptsum));
160  }
161 
162  while (!vertexptsumvector.empty()) {
163  VertexRef vertexref_highestpT;
164  float highestpT = 0.;
165  int highestpT_index = 0;
166 
167  for (unsigned int vtxptsumvec_ite = 0; vtxptsumvec_ite < vertexptsumvector.size(); vtxptsumvec_ite++) {
168  if (vertexptsumvector[vtxptsumvec_ite].second > highestpT) {
169  vertexref_highestpT = vertexptsumvector[vtxptsumvec_ite].first;
170  highestpT = vertexptsumvector[vtxptsumvec_ite].second;
171  highestpT_index = vtxptsumvec_ite;
172  }
173  }
174 
175  //loop over all vertices in the association map
176  for (PFCandToVertexAssMap::const_iterator assomap_ite = pfcvertexassInput->begin();
177  assomap_ite != pfcvertexassInput->end();
178  assomap_ite++) {
179  const VertexRef assomap_vertexref = assomap_ite->key;
180  const PFCandQualityPairVector pfccoll = assomap_ite->val;
181 
182  //if the vertex from the association map the vertex with the highest pT
183  //insert all associated pfcandidates in the output Association Map
184  if (assomap_vertexref == vertexref_highestpT)
185  for (unsigned int pfccoll_ite = 0; pfccoll_ite < pfccoll.size(); pfccoll_ite++)
186  pfcvertexassOutput->insert(assomap_vertexref, pfccoll[pfccoll_ite]);
187  }
188 
189  vertexptsumvector.erase(vertexptsumvector.begin() + highestpT_index);
190  }
191 
192  return pfcvertexassOutput;
193 }
T getParameter(std::string const &) const
void GetInputCollections(edm::Event &, const edm::EventSetup &) override
const_iterator end() const
last iterator over the map (read only)
void setBeamSpot(const reco::BeamSpot &beamSpot)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
int DefineQuality(int, int, double)
std::unique_ptr< PFCandToVertexAssMap > CreatePFCandToVertexMap(edm::Handle< reco::PFCandidateCollection >, const edm::EventSetup &)
std::pair< reco::VertexRef, PFCandQualityPair > VertexPfcQuality
std::pair< bool, Measurement1D > absoluteImpactParameter3D(const reco::TransientTrack &transientTrack, const reco::Vertex &vertex)
Definition: IPTools.cc:38
std::vector< Vertex > VertexCollection
collection of Vertex objects
Definition: VertexFwd.h:9
key_type key() const
Accessor for product key.
Definition: Ref.h:250
std::pair< reco::VertexRef, int > VertexStepPair
std::vector< VertexPtsumPair > VertexPtsumVector
std::pair< std::unique_ptr< PFCandToVertexAssMap >, std::unique_ptr< VertexToPFCandAssMap > > createMappings(edm::Handle< reco::PFCandidateCollection > pfCandH, const edm::EventSetup &iSetup)
U second(std::pair< T, U > const &p)
VertexStepPair FindAssociation(const reco::TrackRef &, const std::vector< reco::VertexRef > &, edm::ESHandle< MagneticField >, const edm::EventSetup &, edm::Handle< reco::BeamSpot >, int)
int iEvent
Definition: GenABIO.cc:224
virtual void GetInputCollections(edm::Event &, const edm::EventSetup &)
edm::AssociationMap< edm::OneToManyWithQuality< reco::VertexCollection, reco::PFCandidateCollection, int > > PFCandToVertexAssMap
edm::AssociationMap< edm::OneToManyWithQuality< reco::PFCandidateCollection, reco::VertexCollection, int > > VertexToPFCandAssMap
edm::Handle< reco::BeamSpot > beamspotH
bool isNull() const
Checks for null.
Definition: Ref.h:235
void setES(const edm::EventSetup &es)
std::vector< reco::VertexRef > CreateVertexVector(edm::Handle< reco::VertexCollection >)
std::vector< PFCandQualityPair > PFCandQualityPairVector
edm::ESHandle< MagneticField > bFieldH
void EraseVertex(std::vector< reco::VertexRef > &, reco::VertexRef)
fixed size matrix
HLT enums.
T get() const
Definition: EventSetup.h:73
edm::EDGetTokenT< reco::VertexCollection > token_VertexCollection_
edm::Handle< reco::VertexCollection > vtxcollH
PFCand_AssoMapAlgos(const edm::ParameterSet &, edm::ConsumesCollector &&)
std::unique_ptr< PFCandToVertexAssMap > SortPFCandAssociationMap(PFCandToVertexAssMap *, edm::EDProductGetter const *getter)
step
Definition: StallMonitor.cc:94
const_iterator begin() const
first iterator over the map (read only)
edm::EDGetTokenT< reco::BeamSpot > token_BeamSpot_
std::unique_ptr< VertexToPFCandAssMap > CreateVertexToPFCandMap(edm::Handle< reco::PFCandidateCollection >, const edm::EventSetup &)
def move(src, dest)
Definition: eostools.py:511