CMS 3D CMS Logo

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