CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ElectronSeedAnalyzer.cc
Go to the documentation of this file.
1 //
2 // Package: RecoEgamma/ElectronTrackSeed
3 // Class: ElectronSeedAnalyzer
4 //
5 
6 //
7 // Original Author: Ursula Berthon, Claude Charlot
8 // Created: Mon Mar 27 13:22:06 CEST 2006
9 //
10 //
11 
40 
41 #include "CLHEP/Units/GlobalPhysicalConstants.h"
42 #include "HepMC/GenParticle.h"
43 #include "HepMC/SimpleVector.h"
44 
45 #include "TFile.h"
46 #include "TH1F.h"
47 #include "TH1I.h"
48 #include "TTree.h"
49 
50 #include <iostream>
51 
53 public:
54  explicit ElectronSeedAnalyzer(const edm::ParameterSet &conf);
55  ~ElectronSeedAnalyzer() override;
56  void analyze(const edm::Event &, const edm::EventSetup &) override;
57  void beginJob() override;
58  void endJob() override;
59 
60 private:
62 
63  TFile *histfile_;
64  TTree *tree_;
65  float mcEnergy[10], mcEta[10], mcPhi[10], mcPt[10], mcQ[10];
67  float seedMomentum[10], seedEta[10], seedPhi[10], seedPt[10], seedQ[10];
68  int seedSubdet1[10], seedSubdet2[10];
69  int seedLayer1[10], seedLayer2[10];
70  int seedSide1[10], seedSide2[10];
71  float seedDphi1[10], seedDrz1[10], seedDphi2[10], seedDrz2[10];
72  float seedPhi1[10], seedRz1[10], seedPhi2[10], seedRz2[10];
73  TH1F *histeMC_;
77  TH1F *histp_;
78  TH1F *histeclu_;
79  TH1F *histpt_;
80  TH1F *histptMC_;
84  TH1F *histetclu_;
85  TH1F *histeffpt_;
86  TH1F *histeta_;
87  TH1F *histetaMC_;
91  TH1F *histetaclu_;
92  TH1F *histeffeta_;
93  TH1F *histq_;
94  TH1F *histeoverp_;
95  TH1I *histnrseeds_;
96  TH1I *histnbseeds_;
97  TH1I *histnbclus_;
98 
101  // std::vector<std::pair<const GeomDet*, TrajectoryStateOnSurface> > mapTsos_;
102  // std::vector<std::pair<std::pair<const GeomDet*,GlobalPoint>, TrajectoryStateOnSurface> > mapTsos2_;
103 };
104 
107 
108 using namespace std;
109 using namespace reco;
110 
112  : beamSpot_(conf.getParameter<edm::InputTag>("beamSpot")) {
113  inputCollection_ = conf.getParameter<edm::InputTag>("inputCollection");
114  histfile_ = new TFile("electronpixelseeds.root", "RECREATE");
115 }
116 
118  histfile_->cd();
119  tree_ = new TTree("ElectronSeeds", "ElectronSeed validation ntuple");
120  tree_->Branch("mcEnergy", mcEnergy, "mcEnergy[10]/F");
121  tree_->Branch("mcEta", mcEta, "mcEta[10]/F");
122  tree_->Branch("mcPhi", mcPhi, "mcPhi[10]/F");
123  tree_->Branch("mcPt", mcPt, "mcPt[10]/F");
124  tree_->Branch("mcQ", mcQ, "mcQ[10]/F");
125  tree_->Branch("superclusterEnergy", superclusterEnergy, "superclusterEnergy[10]/F");
126  tree_->Branch("superclusterEta", superclusterEta, "superclusterEta[10]/F");
127  tree_->Branch("superclusterPhi", superclusterPhi, "superclusterPhi[10]/F");
128  tree_->Branch("superclusterEt", superclusterEt, "superclusterEt[10]/F");
129  tree_->Branch("seedMomentum", seedMomentum, "seedMomentum[10]/F");
130  tree_->Branch("seedEta", seedEta, "seedEta[10]/F");
131  tree_->Branch("seedPhi", seedPhi, "seedPhi[10]/F");
132  tree_->Branch("seedPt", seedPt, "seedPt[10]/F");
133  tree_->Branch("seedQ", seedQ, "seedQ[10]/F");
134  tree_->Branch("seedSubdet1", seedSubdet1, "seedSubdet1[10]/I");
135  tree_->Branch("seedLayer1", seedLayer1, "seedLayer1[10]/I");
136  tree_->Branch("seedSide1", seedSide1, "seedSide1[10]/I");
137  tree_->Branch("seedPhi1", seedPhi1, "seedPhi1[10]/F");
138  tree_->Branch("seedDphi1", seedDphi1, "seedDphi1[10]/F");
139  tree_->Branch("seedDrz1", seedDrz1, "seedDrz1[10]/F");
140  tree_->Branch("seedRz1", seedRz1, "seedRz1[10]/F");
141  tree_->Branch("seedSubdet2", seedSubdet2, "seedSubdet2[10]/I");
142  tree_->Branch("seedLayer2", seedLayer2, "seedLayer2[10]/I");
143  tree_->Branch("seedSide2", seedSide2, "seedSide2[10]/I");
144  tree_->Branch("seedPhi2", seedPhi2, "seedPhi2[10]/F");
145  tree_->Branch("seedDphi2", seedDphi2, "seedDphi2[10]/F");
146  tree_->Branch("seedRz2", seedRz2, "seedRz2[10]/F");
147  tree_->Branch("seedDrz2", seedDrz2, "seedDrz2[10]/F");
148  histeMC_ = new TH1F("eMC", "MC particle energy", 100, 0., 100.);
149  histeMCmatched_ = new TH1F("eMCmatched", "matched MC particle energy", 100, 0., 100.);
151  new TH1F("ecaldriveneMCmatched", "matched MC particle energy, ecal driven", 100, 0., 100.);
153  new TH1F("trackerdriveneMCmatched", "matched MC particle energy, tracker driven", 100, 0., 100.);
154  histp_ = new TH1F("p", "seed p", 100, 0., 100.);
155  histeclu_ = new TH1F("clus energy", "supercluster energy", 100, 0., 100.);
156  histpt_ = new TH1F("pt", "seed pt", 100, 0., 100.);
157  histptMC_ = new TH1F("ptMC", "MC particle pt", 100, 0., 100.);
158  histptMCmatched_ = new TH1F("ptMCmatched", "matched MC particle pt", 100, 0., 100.);
159  histecaldrivenptMCmatched_ = new TH1F("ecaldrivenptMCmatched", "matched MC particle pt, ecal driven", 100, 0., 100.);
161  new TH1F("trackerdrivenptMCmatched", "matched MC particle pt, tracker driven", 100, 0., 100.);
162  histetclu_ = new TH1F("Et", "supercluster Et", 100, 0., 100.);
163  histeffpt_ = new TH1F("pt eff", "seed effciency vs pt", 100, 0., 100.);
164  histeta_ = new TH1F("seed eta", "seed eta", 100, -2.5, 2.5);
165  histetaMC_ = new TH1F("etaMC", "MC particle eta", 100, -2.5, 2.5);
166  histetaMCmatched_ = new TH1F("etaMCmatched", "matched MC particle eta", 100, -2.5, 2.5);
168  new TH1F("ecaldrivenetaMCmatched", "matched MC particle eta, ecal driven", 100, -2.5, 2.5);
170  new TH1F("trackerdrivenetaMCmatched", "matched MC particle eta, tracker driven", 100, -2.5, 2.5);
171  histetaclu_ = new TH1F("clus eta", "supercluster eta", 100, -2.5, 2.5);
172  histeffeta_ = new TH1F("eta eff", "seed effciency vs eta", 100, -2.5, 2.5);
173  histq_ = new TH1F("q", "seed charge", 100, -2.5, 2.5);
174  histeoverp_ = new TH1F("E/p", "seed E/p", 100, 0., 10.);
175  histnbseeds_ = new TH1I("nrs", "Nr of seeds ", 50, 0., 25.);
176  histnbclus_ = new TH1I("nrclus", "Nr of superclusters ", 50, 0., 25.);
177  histnrseeds_ = new TH1I("ns", "Nr of seeds if clusters", 50, 0., 25.);
178 }
179 
181  histfile_->cd();
182  tree_->Print();
183  tree_->Write();
184 
185  // efficiency vs eta
186  TH1F *histetaEff = (TH1F *)histetaMCmatched_->Clone("histetaEff");
187  histetaEff->Reset();
188  histetaEff->Divide(histetaMCmatched_, histeta_, 1, 1, "b");
189  histetaEff->Print();
190  histetaEff->GetXaxis()->SetTitle("#eta");
191  histetaEff->GetYaxis()->SetTitle("Efficiency");
192 
193  // efficiency vs pt
194  TH1F *histptEff = (TH1F *)histptMCmatched_->Clone("histotEff");
195  histptEff->Reset();
196  histptEff->Divide(histptMCmatched_, histpt_, 1, 1, "b");
197  histptEff->Print();
198  histptEff->GetXaxis()->SetTitle("p_{T}");
199  histptEff->GetYaxis()->SetTitle("Efficiency");
200 
201  histeMCmatched_->Write();
202  histecaldriveneMCmatched_->Write();
204  histeMC_->Write();
205  histp_->Write();
206  histeclu_->Write();
207  histpt_->Write();
208  histptMCmatched_->Write();
211  histptMC_->Write();
212  histetclu_->Write();
213  histeffpt_->Write();
214  histeta_->Write();
215  histetaMCmatched_->Write();
218  histetaMC_->Write();
219  histetaclu_->Write();
220  histeffeta_->Write();
221  histq_->Write();
222  histeoverp_->Write();
223  histnbseeds_->Write();
224  histnbclus_->Write();
225  histnrseeds_->Write();
226 }
227 
229  // do anything here that needs to be done at desctruction time
230  // (e.g. close files, deallocate resources etc.)
231  //tree_->Print();
232  histfile_->Write();
233  histeMC_->Write();
234  histfile_->Close();
235 }
236 
238  //Retrieve tracker topology from geometry
240  iSetup.get<TrackerTopologyRcd>().get(tTopo);
241 
243  edm::ESHandle<MagneticField> theMagField;
244  iSetup.get<TrackerDigiGeometryRecord>().get(pDD);
245  iSetup.get<IdealMagneticFieldRecord>().get(theMagField);
246 
247  // get beam spot
248  edm::Handle<reco::BeamSpot> theBeamSpot;
249  e.getByLabel(beamSpot_, theBeamSpot);
250 
251  // get seeds
252 
254  e.getByLabel(inputCollection_, elSeeds);
255  edm::LogInfo("") << "\n\n =================> Treating event " << e.id() << " Number of seeds "
256  << elSeeds.product()->size();
257  int is = 0;
258 
259  float mass = .000511; // electron propagation
260  PropagatorWithMaterial *prop1stLayer = new PropagatorWithMaterial(oppositeToMomentum, mass, &(*theMagField));
261  PropagatorWithMaterial *prop2ndLayer = new PropagatorWithMaterial(alongMomentum, mass, &(*theMagField));
262 
263  float dphi1 = 0., dphi2 = 0., drz1 = 0., drz2 = 0.;
264  float phi1 = 0., phi2 = 0., rz1 = 0., rz2 = 0.;
265 
266  for (ElectronSeedCollection::const_iterator MyS = (*elSeeds).begin(); MyS != (*elSeeds).end(); ++MyS) {
267  LogDebug("") << "\nSeed nr " << is << ": ";
268  const TrajectorySeed::RecHitRange r = MyS->recHits();
269  LogDebug("") << " Number of RecHits= " << (*MyS).nHits();
270  const GeomDet *det1 = nullptr;
271  const GeomDet *det2 = nullptr;
272 
273  auto it = r.begin();
274  DetId id1 = (*it).geographicalId();
275  det1 = pDD->idToDet(id1);
276  LogDebug("") << " First hit local x,y,z " << (*it).localPosition() << " det " << id1.det() << " subdet "
277  << id1.subdetId();
278  LogDebug("") << " First hit global " << det1->toGlobal((*it).localPosition());
279  //std::cout <<" First hit local x,y,z "<<(*it).localPosition()<<" det "<<id1.det()<<" subdet "<<id1.subdetId()<< std::endl;
280  //std::cout <<" First hit global "<<det1->toGlobal((*it).localPosition())<< std::endl;
281  it++;
282  DetId id2 = (*it).geographicalId();
283  det2 = pDD->idToDet(id2);
284  LogDebug("") << " Second hit local x,y,z " << (*it).localPosition() << " det " << id2.det() << " subdet "
285  << id2.subdetId();
286  LogDebug("") << " Second hit global " << det2->toGlobal((*it).localPosition());
287  //std::cout <<" Second hit local x,y,z "<<(*it).localPosition()<<" det "<<id2.det()<<" subdet "<<id2.subdetId()<< std::endl;
288  //std::cout <<" Second hit global "<<det2->toGlobal((*it).localPosition()) << std::endl;
289 
290  // state on last det
291  const GeomDet *det = nullptr;
292  for (auto const &recHit : r) {
293  det = pDD->idToDet(recHit.geographicalId());
294  }
296  trajectoryStateTransform::transientState((*MyS).startingState(), &(det->surface()), &(*theMagField));
297 
298  // debug
299 
300  LogDebug("") << " ElectronSeed outermost state position: " << t.globalPosition();
301  LogDebug("") << " ElectronSeed outermost state momentum: " << t.globalMomentum();
302  edm::RefToBase<CaloCluster> caloCluster = (*MyS).caloCluster();
303  if (caloCluster.isNull())
304  continue;
306  LogDebug("") << " ElectronSeed superCluster energy: " << theClus->energy() << ", position: " << theClus->position();
307  LogDebug("") << " ElectronSeed outermost state Pt: " << t.globalMomentum().perp();
308  LogDebug("") << " ElectronSeed supercluster Et: "
309  << theClus->energy() * sin(2. * atan(exp(-theClus->position().eta())));
310  LogDebug("") << " ElectronSeed outermost momentum direction eta: " << t.globalMomentum().eta();
311  LogDebug("") << " ElectronSeed supercluster eta: " << theClus->position().eta();
312  LogDebug("") << " ElectronSeed seed charge: " << (*MyS).getCharge();
313  LogDebug("") << " ElectronSeed E/p: " << theClus->energy() / t.globalMomentum().mag();
314 
315  // retreive SC and compute distances between hit position and prediction the same
316  // way as in the PixelHitMatcher
317 
318  // inputs are charge, cluster position, vertex position, cluster energy and B field
319  int charge = int((*MyS).getCharge());
320  GlobalPoint xmeas(theClus->position().x(), theClus->position().y(), theClus->position().z());
321  GlobalPoint vprim(theBeamSpot->position().x(), theBeamSpot->position().y(), theBeamSpot->position().z());
322  float energy = theClus->energy();
323 
324  auto fts = trackingTools::ftsFromVertexToPoint(*theMagField, xmeas, vprim, energy, charge);
325  //std::cout << "[PixelHitMatcher::compatibleSeeds] fts position, momentum " <<
326  // fts.parameters().position() << " " << fts.parameters().momentum() << std::endl;
327 
329  TrajectoryStateOnSurface tsos(fts, *bpb(fts.position(), fts.momentum()));
330 
331  // TrajectorySeed::range r=(*seeds.product())[i].recHits();
332  // TrajectorySeed::range r=(*seeds)[i].recHits();
333 
334  // first Hit
335  it = r.begin();
336  DetId id = (*it).geographicalId();
337  const GeomDet *geomdet = pDD->idToDet((*it).geographicalId());
338  LocalPoint lp = (*it).localPosition();
339  GlobalPoint hitPos = geomdet->surface().toGlobal(lp);
340 
342  tsos1 = prop1stLayer->propagate(tsos, geomdet->surface());
343 
344  if (tsos1.isValid()) {
345  //UB add test on phidiff
346  float SCl_phi = xmeas.phi();
347  float localDphi = SCl_phi - hitPos.phi();
348  if (localDphi > CLHEP::pi)
349  localDphi -= (2 * CLHEP::pi);
350  if (localDphi < -CLHEP::pi)
351  localDphi += (2 * CLHEP::pi);
352  if (std::abs(localDphi) > 2.5)
353  continue;
354 
355  phi1 = hitPos.phi();
356  dphi1 = hitPos.phi() - tsos1.globalPosition().phi();
357  rz1 = hitPos.perp();
358  drz1 = hitPos.perp() - tsos1.globalPosition().perp();
359  if (id.subdetId() % 2 == 1) {
360  drz1 = hitPos.z() - tsos1.globalPosition().z();
361  rz1 = hitPos.z();
362  }
363 
364  // now second Hit
365  it++;
366  DetId id2 = (*it).geographicalId();
367  const GeomDet *geomdet2 = pDD->idToDet((*it).geographicalId());
369 
370  // compute the z vertex from the cluster point and the found pixel hit
371  double pxHit1z = hitPos.z();
372  double pxHit1x = hitPos.x();
373  double pxHit1y = hitPos.y();
374  double r1diff = (pxHit1x - vprim.x()) * (pxHit1x - vprim.x()) + (pxHit1y - vprim.y()) * (pxHit1y - vprim.y());
375  r1diff = sqrt(r1diff);
376  double r2diff = (xmeas.x() - pxHit1x) * (xmeas.x() - pxHit1x) + (xmeas.y() - pxHit1y) * (xmeas.y() - pxHit1y);
377  r2diff = sqrt(r2diff);
378  double zVertexPred = pxHit1z - r1diff * (xmeas.z() - pxHit1z) / r2diff;
379 
380  GlobalPoint vertexPred(vprim.x(), vprim.y(), zVertexPred);
381 
382  auto fts2 = trackingTools::ftsFromVertexToPoint(*theMagField, hitPos, vertexPred, energy, charge);
383  tsos2 = prop2ndLayer->propagate(fts2, geomdet2->surface());
384 
385  if (tsos2.isValid()) {
386  LocalPoint lp2 = (*it).localPosition();
387  GlobalPoint hitPos2 = geomdet2->surface().toGlobal(lp2);
388  phi2 = hitPos2.phi();
389  dphi2 = hitPos2.phi() - tsos2.globalPosition().phi();
390  rz2 = hitPos2.perp();
391  drz2 = hitPos2.perp() - tsos2.globalPosition().perp();
392  if (id2.subdetId() % 2 == 1) {
393  rz2 = hitPos2.z();
394  drz2 = hitPos2.z() - tsos2.globalPosition().z();
395  }
396  }
397  }
398 
399  // fill the tree and histos
400 
401  histpt_->Fill(t.globalMomentum().perp());
402  histetclu_->Fill(theClus->energy() * sin(2. * atan(exp(-theClus->position().eta()))));
403  histeta_->Fill(t.globalMomentum().eta());
404  histetaclu_->Fill(theClus->position().eta());
405  histq_->Fill((*MyS).getCharge());
406  histeoverp_->Fill(theClus->energy() / t.globalMomentum().mag());
407 
408  if (is < 10) {
409  superclusterEnergy[is] = theClus->energy();
410  superclusterEta[is] = theClus->position().eta();
411  superclusterPhi[is] = theClus->position().phi();
412  superclusterEt[is] = theClus->energy() * sin(2. * atan(exp(-theClus->position().eta())));
413  seedMomentum[is] = t.globalMomentum().mag();
414  seedEta[is] = t.globalMomentum().eta();
415  seedPhi[is] = t.globalMomentum().phi();
416  seedPt[is] = t.globalMomentum().perp();
417  seedQ[is] = (*MyS).getCharge();
418  seedSubdet1[is] = id1.subdetId();
419  seedLayer1[is] = tTopo->layer(id1);
420  seedSide1[is] = tTopo->side(id1);
421  seedPhi1[is] = phi1;
422  seedRz1[is] = rz1;
423  seedDphi1[is] = dphi1;
424  seedDrz1[is] = drz1;
425  seedSubdet2[is] = id2.subdetId();
426  seedLayer2[is] = tTopo->layer(id2);
427  seedSide2[is] = tTopo->side(id2);
428  seedDphi2[is] = dphi2;
429  seedDrz2[is] = drz2;
430  seedPhi2[is] = phi2;
431  seedRz2[is] = rz2;
432  }
433 
434  is++;
435  }
436 
437  histnbseeds_->Fill(elSeeds.product()->size());
438 
439  // get input clusters
440 
442  //CC to be changed according to supercluster input
443  e.getByLabel("correctedHybridSuperClusters", clusters);
444  histnbclus_->Fill(clusters.product()->size());
445  if (!clusters.product()->empty())
446  histnrseeds_->Fill(elSeeds.product()->size());
447  // get MC information
448 
450  // this one is empty branch in current test files
451  //e.getByLabel("generatorSmeared", "", HepMCEvt);
452  //e.getByLabel("source", "", HepMCEvt);
453  e.getByLabel("generatorSmeared", "", HepMCEvt);
454 
455  const HepMC::GenEvent *MCEvt = HepMCEvt->GetEvent();
456  HepMC::GenParticle *genPc = nullptr;
457  HepMC::FourVector pAssSim;
458  int ip = 0;
459  for (HepMC::GenEvent::particle_const_iterator partIter = MCEvt->particles_begin(); partIter != MCEvt->particles_end();
460  ++partIter) {
461  for (HepMC::GenEvent::vertex_const_iterator vertIter = MCEvt->vertices_begin(); vertIter != MCEvt->vertices_end();
462  ++vertIter) {
463  // CLHEP::HepLorentzVector creation = (*partIter)->CreationVertex();
464  HepMC::GenVertex *creation = (*partIter)->production_vertex();
465  // CLHEP::HepLorentzVector momentum = (*partIter)->Momentum();
466  HepMC::FourVector momentum = (*partIter)->momentum();
467  // HepPDT::ParticleID id = (*partIter)->particleID(); // electrons and positrons are 11 and -11
468  int id = (*partIter)->pdg_id(); // electrons and positrons are 11 and -11
469  LogDebug("") << "MC particle id " << id << ", creationVertex " << (*creation) << " cm, initialMomentum "
470  << momentum.rho() << " GeV/c" << std::endl;
471 
472  if (id == 11 || id == -11) {
473  // single primary electrons or electrons from Zs or Ws
474  HepMC::GenParticle *mother = nullptr;
475  if ((*partIter)->production_vertex()) {
476  if ((*partIter)->production_vertex()->particles_begin(HepMC::parents) !=
477  (*partIter)->production_vertex()->particles_end(HepMC::parents))
478  mother = *((*partIter)->production_vertex()->particles_begin(HepMC::parents));
479  }
480  if (((mother == nullptr) || ((mother != nullptr) && (mother->pdg_id() == 23)) ||
481  ((mother != nullptr) && (mother->pdg_id() == 32)) ||
482  ((mother != nullptr) && (std::abs(mother->pdg_id()) == 24)))) {
483  genPc = (*partIter);
484  pAssSim = genPc->momentum();
485 
486  // EWK fiducial
487  //if (pAssSim.perp()> 100. || std::abs(pAssSim.eta())> 2.5) continue;
488  //if (pAssSim.perp()< 20. || (std::abs(pAssSim.eta())> 1.4442 && std::abs(pAssSim.eta())< 1.56) || std::abs(pAssSim.eta())> 2.5) continue;
489  // reconstruction fiducial
490  //if (pAssSim.perp()< 5. || std::abs(pAssSim.eta())> 2.5) continue;
491  if (std::abs(pAssSim.eta()) > 2.5)
492  continue;
493 
494  histptMC_->Fill(pAssSim.perp());
495  histetaMC_->Fill(pAssSim.eta());
496  histeMC_->Fill(pAssSim.rho());
497 
498  // looking for the best matching gsf electron
499  bool okSeedFound = false;
500  double seedOkRatio = 999999.;
501 
502  // find best matched seed
503  reco::ElectronSeed bestElectronSeed;
504  for (ElectronSeedCollection::const_iterator gsfIter = (*elSeeds).begin(); gsfIter != (*elSeeds).end();
505  ++gsfIter) {
506  const GeomDet *det = nullptr;
507  for (auto const &recHit : gsfIter->recHits()) {
508  det = pDD->idToDet(recHit.geographicalId());
509  }
511  trajectoryStateTransform::transientState(gsfIter->startingState(), &(det->surface()), &(*theMagField));
512 
513  float eta = t.globalMomentum().eta();
514  float phi = t.globalMomentum().phi();
515  float p = t.globalMomentum().mag();
516  double dphi = phi - pAssSim.phi();
517  if (std::abs(dphi) > CLHEP::pi)
518  dphi = dphi < 0 ? (CLHEP::twopi) + dphi : dphi - CLHEP::twopi;
519  double deltaR = sqrt(std::pow((eta - pAssSim.eta()), 2) + std::pow(dphi, 2));
520  if (deltaR < 0.15) {
521  // if ( deltaR < 0.3 ){
522  //if ( (genPc->pdg_id() == 11) && (gsfIter->charge() < 0.) || (genPc->pdg_id() == -11) &&
523  //(gsfIter->charge() > 0.) ){
524  double tmpSeedRatio = p / pAssSim.t();
525  if (std::abs(tmpSeedRatio - 1) < std::abs(seedOkRatio - 1)) {
526  seedOkRatio = tmpSeedRatio;
527  bestElectronSeed = *gsfIter;
528  okSeedFound = true;
529  }
530  //}
531  }
532  } // loop over rec ele to look for the best one
533 
534  // analysis when the mc track is found
535  if (okSeedFound) {
536  histptMCmatched_->Fill(pAssSim.perp());
537  histetaMCmatched_->Fill(pAssSim.eta());
538  histeMCmatched_->Fill(pAssSim.rho());
539  if (ip < 10) {
540  mcEnergy[ip] = pAssSim.rho();
541  mcEta[ip] = pAssSim.eta();
542  mcPhi[ip] = pAssSim.phi();
543  mcPt[ip] = pAssSim.perp();
544  mcQ[ip] = ((id == 11) ? -1. : +1.);
545  }
546  }
547 
548  // efficiency for ecal driven only
549  okSeedFound = false;
550  seedOkRatio = 999999.;
551 
552  // find best matched seed
553  for (ElectronSeedCollection::const_iterator gsfIter = (*elSeeds).begin(); gsfIter != (*elSeeds).end();
554  ++gsfIter) {
555  const GeomDet *det = nullptr;
556  for (auto const &recHit : gsfIter->recHits()) {
557  det = pDD->idToDet(recHit.geographicalId());
558  }
560  trajectoryStateTransform::transientState(gsfIter->startingState(), &(det->surface()), &(*theMagField));
561 
562  float eta = t.globalMomentum().eta();
563  float phi = t.globalMomentum().phi();
564  float p = t.globalMomentum().mag();
565  double dphi = phi - pAssSim.phi();
566  if (std::abs(dphi) > CLHEP::pi)
567  dphi = dphi < 0 ? (CLHEP::twopi) + dphi : dphi - CLHEP::twopi;
568  double deltaR = sqrt(std::pow((eta - pAssSim.eta()), 2) + std::pow(dphi, 2));
569  if (gsfIter->isEcalDriven()) {
570  if (deltaR < 0.15) {
571  // if ( deltaR < 0.3 ){
572  //if ( (genPc->pdg_id() == 11) && (gsfIter->charge() < 0.) || (genPc->pdg_id() == -11) &&
573  //(gsfIter->charge() > 0.) ){
574  double tmpSeedRatio = p / pAssSim.t();
575  if (std::abs(tmpSeedRatio - 1) < std::abs(seedOkRatio - 1)) {
576  seedOkRatio = tmpSeedRatio;
577  bestElectronSeed = *gsfIter;
578  okSeedFound = true;
579  }
580  //}
581  }
582  } // end if ecal driven
583  } // loop over rec ele to look for the best one
584 
585  // analysis when the mc track is found
586  if (okSeedFound) {
587  histecaldrivenptMCmatched_->Fill(pAssSim.perp());
588  histecaldrivenetaMCmatched_->Fill(pAssSim.eta());
589  histecaldriveneMCmatched_->Fill(pAssSim.rho());
590  }
591 
592  // efficiency for tracker driven only
593  okSeedFound = false;
594  seedOkRatio = 999999.;
595 
596  // find best matched seed
597  for (ElectronSeedCollection::const_iterator gsfIter = (*elSeeds).begin(); gsfIter != (*elSeeds).end();
598  ++gsfIter) {
599  const GeomDet *det = nullptr;
600  for (auto const &recHit : gsfIter->recHits()) {
601  det = pDD->idToDet(recHit.geographicalId());
602  }
604  trajectoryStateTransform::transientState(gsfIter->startingState(), &(det->surface()), &(*theMagField));
605 
606  float eta = t.globalMomentum().eta();
607  float phi = t.globalMomentum().phi();
608  float p = t.globalMomentum().mag();
609  double dphi = phi - pAssSim.phi();
610  if (std::abs(dphi) > CLHEP::pi)
611  dphi = dphi < 0 ? (CLHEP::twopi) + dphi : dphi - CLHEP::twopi;
612  double deltaR = sqrt(std::pow((eta - pAssSim.eta()), 2) + std::pow(dphi, 2));
613  if (gsfIter->isTrackerDriven()) {
614  if (deltaR < 0.15) {
615  // if ( deltaR < 0.3 ){
616  //if ( (genPc->pdg_id() == 11) && (gsfIter->charge() < 0.) || (genPc->pdg_id() == -11) &&
617  //(gsfIter->charge() > 0.) ){
618  double tmpSeedRatio = p / pAssSim.t();
619  if (std::abs(tmpSeedRatio - 1) < std::abs(seedOkRatio - 1)) {
620  seedOkRatio = tmpSeedRatio;
621  bestElectronSeed = *gsfIter;
622  okSeedFound = true;
623  }
624  //}
625  }
626  } // end if ecal driven
627  } // loop over rec ele to look for the best one
628 
629  // analysis when the mc track is found
630  if (okSeedFound) {
631  histtrackerdrivenptMCmatched_->Fill(pAssSim.perp());
632  histtrackerdrivenetaMCmatched_->Fill(pAssSim.eta());
633  histtrackerdriveneMCmatched_->Fill(pAssSim.rho());
634  }
635 
636  } // end if mother W or Z
637 
638  } // end if gen part is electron
639 
640  } // end loop on vertices
641 
642  ip++;
643 
644  } // end loop on gen particles
645 
646  //tree_->Fill();
647 }
GlobalPoint toGlobal(const Point2DBase< Scalar, LocalTag > lp) const
Definition: Surface.h:79
TPRegexp parents
Definition: eve_filter.cc:21
T perp() const
Definition: PV3DBase.h:69
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
GlobalPoint toGlobal(const Local2DPoint &lp) const
Conversion to the global R.F. from the R.F. of the GeomDet.
Definition: GeomDet.h:49
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
FreeTrajectoryState ftsFromVertexToPoint(MagneticField const &magField, GlobalPoint const &xmeas, GlobalPoint const &xvert, float momentum, TrackCharge charge)
Geom::Phi< T > phi() const
Definition: PV3DBase.h:66
T y() const
Definition: PV3DBase.h:60
GlobalPoint globalPosition() const
Exp< T >::type exp(const T &t)
Definition: Exp.h:22
const Plane & surface() const
The nominal surface of the GeomDet.
Definition: GeomDet.h:37
const Double_t pi
T mag() const
Definition: PV3DBase.h:64
T sqrt(T t)
Definition: SSEVec.h:19
T z() const
Definition: PV3DBase.h:61
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:48
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:500
Log< level::Info, false > LogInfo
Definition: DetId.h:17
TrajectoryStateOnSurface transientState(const PTrajectoryStateOnDet &ts, const Surface *surface, const MagneticField *field)
T const * product() const
Definition: Handle.h:70
void analyze(const edm::Event &, const edm::EventSetup &) override
REF castTo() const
Definition: RefToBase.h:257
bool isNull() const
Checks for null.
Definition: RefToBase.h:295
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
TrajectoryStateOnSurface propagate(STA const &state, SUR const &surface) const
Definition: Propagator.h:50
T eta() const
Definition: PV3DBase.h:73
edm::EventID id() const
Definition: EventBase.h:59
GlobalVector globalMomentum() const
T get() const
Definition: EventSetup.h:88
T begin() const
Definition: Range.h:15
TrajectoryStateTransform transformer_
T x() const
Definition: PV3DBase.h:59
ElectronSeedAnalyzer(const edm::ParameterSet &conf)
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:29
#define LogDebug(id)
constexpr Detector det() const
get the detector field from this detid
Definition: DetId.h:46