CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PrimaryVertexAnalyzer.cc
Go to the documentation of this file.
2 
9 
10 // reco track and vertex
14 
15 //generator level + CLHEP
16 #include "HepMC/GenEvent.h"
17 #include "HepMC/GenVertex.h"
18 #include "HepMC/GenParticle.h"
19 
21 
22 // Root
23 #include <TDirectory.h>
24 #include <TH1.h>
25 #include <TH2.h>
26 #include <TFile.h>
27 #include <TProfile.h>
28 
29 #include <cmath>
30 #include <gsl/gsl_math.h>
31 #include <gsl/gsl_eigen.h>
32 
33 
34 //
35 // constants, enums and typedefs
36 //
37 
38 //
39 // static data member definitions
40 //
41 
42 //
43 // constructors and destructor
44 //
46  : verbose_( iConfig.getUntrackedParameter<bool>( "verbose", false ) )
47  , simUnit_( 1.0 ) // starting with CMSSW_1_2_x ??
48  , recoTrackCollectionToken_( consumes< reco::TrackCollection >( edm::InputTag( iConfig.getUntrackedParameter<std::string>( "recoTrackProducer" ) ) ) )
49  , edmSimVertexContainerToken_( consumes< edm::SimVertexContainer>( iConfig.getParameter<edm::InputTag>( "simG4" ) ) )
50  , edmSimTrackContainerToken_( consumes< edm::SimTrackContainer >( iConfig.getParameter<edm::InputTag>( "simG4" ) ) )
51  , edmHepMCProductToken_( consumes< edm::HepMCProduct >( edm::InputTag( std::string( "generator" ) ) ) )
52 {
53  //now do what ever initialization is needed
54  // open output file to store histograms
55  outputFile_ = iConfig.getUntrackedParameter<std::string>("outputFile");
56  TString tversion(edm::getReleaseVersion());
57  tversion = tversion.Remove(0,1);
58  tversion = tversion.Remove(tversion.Length()-1,tversion.Length());
59  outputFile_ = std::string(tversion)+"_"+outputFile_;
60 
61  std::vector<std::string> vtxSample = iConfig.getUntrackedParameter<std::vector< std::string > >("vtxSample");
62  recoVertexCollectionTokens_.reserve( vtxSample.size() );
63  suffixSample_.reserve( vtxSample.size() );
64  auto vtxSampleBegin = vtxSample.begin();
65  auto vtxSampleEnd = vtxSample.end();
66  for( auto isample = vtxSampleBegin; isample != vtxSampleEnd; ++isample ) {
67  recoVertexCollectionTokens_.push_back( consumes< reco::VertexCollection >( edm::InputTag( *isample ) ) );
68  if ( *isample == "offlinePrimaryVertices" ) suffixSample_.push_back("AVF");
69  if ( *isample == "offlinePrimaryVerticesWithBS" ) suffixSample_.push_back("wBS");
70  }
71  if ( suffixSample_.size() == 0 ) throw cms::Exception("NoVertexSamples") << " no known vertex samples given";
72 
73  rootFile_ = new TFile(outputFile_.c_str(),"RECREATE");
74  if ( (edm::getReleaseVersion()).find("CMSSW_1_1_",0)!=std::string::npos){
75  simUnit_=0.1; // for use in CMSSW_1_1_1 tutorial
76  }
77 }
78 
79 
81 {
82  // do anything here that needs to be done at desctruction time
83  // (e.g. close files, deallocate resources etc.)
84  delete rootFile_;
85  /*for(std::map<std::string,TH1*>::const_iterator hist=h.begin(); hist!=h.end(); hist++){
86  delete hist->second;
87  }*/
88 
89 }
90 
91 
92 
93 //
94 // member functions
95 //
97  std::cout << " PrimaryVertexAnalyzer::beginJob conversion from sim units to rec units is " << simUnit_ << std::endl;
98 
99 
100  rootFile_->cd();
101  // release validation histograms used in DoCompare.C
102  for (std::vector<std::string>::iterator isuffix= suffixSample_.begin(); isuffix!=suffixSample_.end(); isuffix++) {
103 
104  hdir[*isuffix] = rootFile_->mkdir(TString(*isuffix));
105  hdir[*isuffix]->cd();
106  h["nbvtx"+ *isuffix] = new TH1F(TString("nbvtx"+ *isuffix),"Reconstructed Vertices in Event",20,-0.5,19.5);
107  h["nbtksinvtx"+ *isuffix] = new TH1F(TString("nbtksinvtx"+ *isuffix),"Reconstructed Tracks in Vertex",200,-0.5,199.5);
108  h["resx"+ *isuffix] = new TH1F(TString("resx"+ *isuffix),"Residual X",100,-0.04,0.04);
109  h["resy"+ *isuffix] = new TH1F(TString("resy"+ *isuffix),"Residual Y",100,-0.04,0.04);
110  h["resz"+ *isuffix] = new TH1F(TString("resz"+ *isuffix),"Residual Z",100,-0.1,0.1);
111  h["pullx"+ *isuffix] = new TH1F(TString("pullx"+ *isuffix),"Pull X",100,-25.,25.);
112  h["pully"+ *isuffix] = new TH1F(TString("pully"+ *isuffix),"Pull Y",100,-25.,25.);
113  h["pullz"+ *isuffix] = new TH1F(TString("pullz"+ *isuffix),"Pull Z",100,-25.,25.);
114  h["vtxchi2"+ *isuffix] = new TH1F(TString("vtxchi2"+ *isuffix),"#chi^{2}",100,0.,100.);
115  h["vtxndf"+ *isuffix] = new TH1F(TString("vtxndf"+ *isuffix),"ndof",100,0.,100.);
116  h["tklinks"+ *isuffix] = new TH1F(TString("tklinks"+ *isuffix),"Usable track links",2,-0.5,1.5);
117  h["nans"+ *isuffix] = new TH1F(TString("nans"+ *isuffix),"Illegal values for x,y,z,xx,xy,xz,yy,yz,zz",9,0.5,9.5);
118  // more histograms
119  h["vtxprob"+ *isuffix] = new TH1F(TString("vtxprob"+ *isuffix),"#chi^{2} probability",100,0.,1.);
120  h["eff"+ *isuffix] = new TH1F(TString("eff"+ *isuffix),"efficiency",2, -0.5, 1.5);
121  h["efftag"+ *isuffix] = new TH1F(TString("efftag"+ *isuffix),"efficiency tagged vertex",2, -0.5, 1.5);
122  h["effvseta"+ *isuffix] = new TProfile(TString("effvseta"+ *isuffix),"efficiency vs eta",20, -2.5, 2.5, 0, 1.);
123  h["effvsptsq"+ *isuffix] = new TProfile(TString("effvsptsq"+ *isuffix),"efficiency vs ptsq",20, 0., 10000., 0, 1.);
124  h["effvsntrk"+ *isuffix] = new TProfile(TString("effvsntrk"+ *isuffix),"efficiency vs # simtracks",200, 0., 200., 0, 1.);
125  h["effvsnrectrk"+ *isuffix] = new TProfile(TString("effvsnrectrk"+ *isuffix),"efficiency vs # rectracks",200, 0., 200., 0, 1.);
126  h["effvsz"+ *isuffix] = new TProfile(TString("effvsz"+ *isuffix),"efficiency vs z",40, -20., 20., 0, 1.);
127  h["nbsimtksinvtx"+ *isuffix]= new TH1F(TString("nbsimtksinvtx"+ *isuffix),"simulated tracks in vertex",100,-0.5,99.5);
128  h["xrec"+ *isuffix] = new TH1F(TString("xrec"+ *isuffix),"reconstructed x",100,-0.1,0.1);
129  h["yrec"+ *isuffix] = new TH1F(TString("yrec"+ *isuffix),"reconstructed y",100,-0.1,0.1);
130  h["zrec"+ *isuffix] = new TH1F(TString("zrec"+ *isuffix),"reconstructed z",100,-20.,20.);
131  h["xsim"+ *isuffix] = new TH1F(TString("xsim"+ *isuffix),"simulated x",100,-0.1,0.1);
132  h["ysim"+ *isuffix] = new TH1F(TString("ysim"+ *isuffix),"simulated y",100,-0.1,0.1);
133  h["zsim"+ *isuffix] = new TH1F(TString("zsim"+ *isuffix),"simulated z",100,-20.,20.);
134  h["nrecvtx"+ *isuffix] = new TH1F(TString("nrecvtx"+ *isuffix),"# of reconstructed vertices", 50, -0.5, 49.5);
135  h["nsimvtx"+ *isuffix] = new TH1F(TString("nsimvtx"+ *isuffix),"# of simulated vertices", 50, -0.5, 49.5);
136  h["nrectrk"+ *isuffix] = new TH1F(TString("nrectrk"+ *isuffix),"# of reconstructed tracks", 200, -0.5, 199.5);
137  h["nsimtrk"+ *isuffix] = new TH1F(TString("nsimtrk"+ *isuffix),"# of simulated tracks", 200, -0.5, 199.5);
138  h["xrectag"+ *isuffix] = new TH1F(TString("xrectag"+ *isuffix),"reconstructed x, signal vtx",100,-0.1,0.1);
139  h["yrectag"+ *isuffix] = new TH1F(TString("yrectag"+ *isuffix),"reconstructed y, signal vtx",100,-0.1,0.1);
140  h["zrectag"+ *isuffix] = new TH1F(TString("zrectag"+ *isuffix),"reconstructed z, signal vtx",100,-20.,20.);
141  h["rapidity"+ *isuffix] = new TH1F(TString("rapidity"+ *isuffix),"rapidity ",100,-10., 10.);
142  h["pt"+ *isuffix] = new TH1F(TString("pt"+ *isuffix),"pt ",100,0., 20.);
143  h["nrectrk0vtx"+ *isuffix] = new TH1F(TString("nrectrk0vtx"+ *isuffix),"# rec tracks no vertex ",200,0., 200.);
144  h["zdistancetag"+ *isuffix] = new TH1F(TString("zdistancetag"+ *isuffix),"z-distance between tagged and generated",100, -0.1, 0.1);
145  h["puritytag"+ *isuffix] = new TH1F(TString("puritytag"+ *isuffix),"purity of primary vertex tags",2, -0.5, 1.5);
146  }
147 
148 }
149 
150 
152  rootFile_->cd();
153  // save all histograms created in beginJob()
154  for (std::map<std::string, TDirectory*>::const_iterator idir=hdir.begin(); idir!=hdir.end(); idir++){
155  idir->second->cd();
156  for(std::map<std::string,TH1*>::const_iterator hist=h.begin(); hist!=h.end(); hist++){
157  if (TString(hist->first).Contains(idir->first)) hist->second->Write();
158  }
159  }
160 }
161 
162 
163 // helper functions
165  const reco::Vertex &vrec){
166  return (fabs(vsim.z*simUnit_-vrec.z())<0.0500); // =500um
167 }
168 
170  double ctau=(pdt->particle( abs(p->pdg_id()) ))->lifetime();
171  if(verbose_) std::cout << "isResonance " << p->pdg_id() << " " << ctau << std::endl;
172  return ctau >0 && ctau <1e-6;
173 }
174 
176  return ( !p->end_vertex() && p->status()==1 );
177 }
178 
180  const ParticleData * part = pdt->particle( p->pdg_id() );
181  if (part){
182  return part->charge()!=0;
183  }else{
184  // the new/improved particle table doesn't know anti-particles
185  return pdt->particle( -p->pdg_id() )!=0;
186  }
187 }
188 
190  int ivtx=0;
191  for(reco::VertexCollection::const_iterator v=recVtxs->begin();
192  v!=recVtxs->end(); ++v){
193  std::cout << "Recvtx "<< std::setw(3) << std::setfill(' ')<<ivtx++
194  << "#trk " << std::setw(3) << v->tracksSize()
195  << " chi2 " << std::setw(4) << v->chi2()
196  << " ndof " << std::setw(3) << v->ndof() << std::endl
197  << " x " << std::setw(8) <<std::fixed << std::setprecision(4) << v->x()
198  << " dx " << std::setw(8) << v->xError()<< std::endl
199  << " y " << std::setw(8) << v->y()
200  << " dy " << std::setw(8) << v->yError()<< std::endl
201  << " z " << std::setw(8) << v->z()
202  << " dz " << std::setw(8) << v->zError()
203  << std::endl;
204  }
205 }
206 
207 
209  int i=0;
210  for(edm::SimVertexContainer::const_iterator vsim=simVtxs->begin();
211  vsim!=simVtxs->end(); ++vsim){
212  std::cout << i++ << ")" << std::scientific
213  << " evtid=" << vsim->eventId().event()
214  << " sim x=" << vsim->position().x()*simUnit_
215  << " sim y=" << vsim->position().y()*simUnit_
216  << " sim z=" << vsim->position().z()*simUnit_
217  << " sim t=" << vsim->position().t()
218  << " parent=" << vsim->parentIndex()
219  << std::endl;
220  }
221 }
222 
223 
225  std::cout << " simTrks type, (momentum), vertIndex, genpartIndex" << std::endl;
226  int i=1;
227  for(edm::SimTrackContainer::const_iterator t=simTrks->begin();
228  t!=simTrks->end(); ++t){
229  //HepMC::GenParticle* gp=evtMC->GetEvent()->particle( (*t).genpartIndex() );
230  std::cout << i++ << ")"
231  << (*t)
232  << " index="
233  << (*t).genpartIndex();
234  //if (gp) {
235  // HepMC::GenVertex *gv=gp->production_vertex();
236  // std::cout << " genvertex =" << (*gv);
237  //}
238  std::cout << std::endl;
239  }
240 }
241 
242 
243 std::vector<PrimaryVertexAnalyzer::simPrimaryVertex> PrimaryVertexAnalyzer::getSimPVs( const edm::Handle<edm::HepMCProduct> & evtMC
244  , const std::string & suffix
245  )
246 {
247  std::vector<PrimaryVertexAnalyzer::simPrimaryVertex> simpv;
248  const HepMC::GenEvent* evt=evtMC->GetEvent();
249  if (evt) {
250  if(verbose_) std::cout << "process id " <<evt->signal_process_id()<<std::endl;
251  if(verbose_) std::cout <<"signal process vertex "<< ( evt->signal_process_vertex() ?
252  evt->signal_process_vertex()->barcode() : 0 ) <<std::endl;
253  if(verbose_) std::cout <<"number of vertices " << evt->vertices_size() << std::endl;
254 
255 
256  int idx=0;
257  for(HepMC::GenEvent::vertex_const_iterator vitr= evt->vertices_begin();
258  vitr != evt->vertices_end(); ++vitr )
259  { // loop for vertex ...
260  HepMC::FourVector pos = (*vitr)->position();
261  //HepLorentzVector pos = (*vitr)->position();
262 
263  bool hasMotherVertex=false;
264  if(verbose_) std::cout << "mothers of vertex[" << ++idx << "]: " << std::endl;
265  for ( HepMC::GenVertex::particle_iterator
266  mother = (*vitr)->particles_begin(HepMC::parents);
267  mother != (*vitr)->particles_end(HepMC::parents);
268  ++mother ) {
269  HepMC::GenVertex * mv=(*mother)->production_vertex();
270  if (mv) {
271  hasMotherVertex=true;
272  if(!verbose_) break; //if verbose_, print all particles of gen vertices
273  }
274  if(verbose_)std::cout << "\t";
275  if(verbose_)(*mother)->print();
276  }
277 
278  if(hasMotherVertex) {continue;}
279 
280  // could be a new vertex, check all primaries found so far to avoid multiple entries
281  const double mm=0.1;
282  simPrimaryVertex sv(pos.x()*mm,pos.y()*mm,pos.z()*mm);
283  simPrimaryVertex *vp=NULL; // will become non-NULL if a vertex is found and then point to it
284  for(std::vector<simPrimaryVertex>::iterator v0=simpv.begin();
285  v0!=simpv.end(); v0++){
286  if( (fabs(sv.x-v0->x)<1e-5) && (fabs(sv.y-v0->y)<1e-5) && (fabs(sv.z-v0->z)<1e-5)){
287  vp=&(*v0);
288  break;
289  }
290  }
291 
292  if(!vp){
293  // this is a new vertex
294  if(verbose_)std::cout << "this is a new vertex " << sv.x << " " << sv.y << " " << sv.z << std::endl;
295  simpv.push_back(sv);
296  vp=&simpv.back();
297  }else{
298  if(verbose_)std::cout << "this is not new vertex " << sv.x << " " << sv.y << " " << sv.z << std::endl;
299  }
300  vp->genVertex.push_back((*vitr)->barcode());
301  // collect final state descendants
302  for ( HepMC::GenVertex::particle_iterator
303  daughter = (*vitr)->particles_begin(HepMC::descendants);
304  daughter != (*vitr)->particles_end(HepMC::descendants);
305  ++daughter ) {
306  if (isFinalstateParticle(*daughter)){
307  if ( find(vp->finalstateParticles.begin(), vp->finalstateParticles.end(),(*daughter)->barcode())
308  == vp->finalstateParticles.end()){
309  vp->finalstateParticles.push_back((*daughter)->barcode());
310  HepMC::FourVector m=(*daughter)->momentum();
311  // the next four lines used to be "vp->ptot+=m;" in the days of CLHEP::HepLorentzVector
312  // but adding FourVectors seems not to be foreseen
313  vp->ptot.setPx(vp->ptot.px()+m.px());
314  vp->ptot.setPy(vp->ptot.py()+m.py());
315  vp->ptot.setPz(vp->ptot.pz()+m.pz());
316  vp->ptot.setE(vp->ptot.e()+m.e());
317  vp->ptsq+=(m.perp())*(m.perp());
318  if ( (m.perp()>0.8) && (fabs(m.pseudoRapidity())<2.5) && isCharged( *daughter ) ){
319  vp->nGenTrk++;
320  }
321 
322  h["rapidity"+suffix]->Fill(m.pseudoRapidity());
323  h["pt"+suffix]->Fill(m.perp());
324  }
325  }
326  }
327  }
328  }
329  return simpv;
330 }
331 
332 
333 
334 std::vector<PrimaryVertexAnalyzer::simPrimaryVertex> PrimaryVertexAnalyzer::getSimPVs( const edm::Handle<edm::HepMCProduct> & evtMC
335  , const edm::Handle<edm::SimVertexContainer> & simVtxs
336  , const edm::Handle<edm::SimTrackContainer> & simTrks
337  )
338 {
339  // simvertices don't have enough information to decide,
340  // genVertices don't have the simulated coordinates ( with VtxSmeared they might)
341  // go through simtracks to get the link between simulated and generated vertices
342  std::vector<PrimaryVertexAnalyzer::simPrimaryVertex> simpv;
343  int idx=0;
344  for(edm::SimTrackContainer::const_iterator t=simTrks->begin();
345  t!=simTrks->end(); ++t){
346  if ( !(t->noVertex()) && !(t->type()==-99) ){
347  double ptsq=0;
348  bool primary=false; // something coming directly from the primary vertex
349  bool resonance=false; // resonance
350  bool track=false; // undecayed, charged particle
351  HepMC::GenParticle* gp=evtMC->GetEvent()->barcode_to_particle( (*t).genpartIndex() );
352  if (gp) {
353  HepMC::GenVertex * gv=gp->production_vertex();
354  if (gv) {
355  for ( HepMC::GenVertex::particle_iterator
356  daughter = gv->particles_begin(HepMC::descendants);
357  daughter != gv->particles_end(HepMC::descendants);
358  ++daughter ) {
359  if (isFinalstateParticle(*daughter)){
360  ptsq+=(*daughter)->momentum().perp()*(*daughter)->momentum().perp();
361  }
362  }
363  primary = ( gv->position().t()==0);
364  //resonance= ( gp->mother() && isResonance(gp->mother())); // in CLHEP/HepMC days
365  // no more mother pointer in the improved HepMC GenParticle
366  resonance= ( isResonance(*(gp->production_vertex()->particles_in_const_begin())));
367  if (gp->status()==1){
368  //track=((pdt->particle(gp->pdg_id()))->charge() != 0);
369  track=not isCharged(gp);
370  }
371  }
372  }
373 
374  const HepMC::FourVector & v=(*simVtxs)[t->vertIndex()].position();
375  //const HepLorentzVector & v=(*simVtxs)[t->vertIndex()].position();
376  if(primary or resonance){
377  {
378  // check all primaries found so far to avoid multiple entries
379  bool newVertex=true;
380  for(std::vector<simPrimaryVertex>::iterator v0=simpv.begin();
381  v0!=simpv.end(); v0++){
382  if( (fabs(v0->x-v.x())<0.001) && (fabs(v0->y-v.y())<0.001) && (fabs(v0->z-v.z())<0.001) ){
383  if (track) {
384  v0->simTrackIndex.push_back(idx);
385  if (ptsq>(*v0).ptsq){(*v0).ptsq=ptsq;}
386  }
387  newVertex=false;
388  }
389  }
390  if(newVertex && !resonance){
391  simPrimaryVertex anotherVertex(v.x(),v.y(),v.z());
392  if (track) anotherVertex.simTrackIndex.push_back(idx);
393  anotherVertex.ptsq=ptsq;
394  simpv.push_back(anotherVertex);
395  }
396  }//
397  }
398 
399  }// simtrack has vertex and valid type
400  idx++;
401  }//simTrack loop
402  return simpv;
403 }
404 
405 
406 
407 
408 // ------------ method called to produce the data ------------
409 void
411 {
412 
414  iEvent.getByToken( recoTrackCollectionToken_, recTrks );
415 
417  iEvent.getByToken( edmSimVertexContainerToken_, simVtxs );
418 
420  iEvent.getByToken( edmSimTrackContainerToken_, simTrks );
421 
422  for (int ivtxSample=0; ivtxSample!= (int)recoVertexCollectionTokens_.size(); ++ivtxSample) {
423  std::string isuffix = suffixSample_[ivtxSample];
424 
426  iEvent.getByToken( recoVertexCollectionTokens_[ ivtxSample ], recVtxs );
427 
428  try{
429  iSetup.getData(pdt);
430  }catch(const edm::Exception&){
431  std::cout << "Some problem occurred with the particle data table. This may not work !." <<std::endl;
432  }
433 
434  bool MC=false;
436  iEvent.getByToken( edmHepMCProductToken_, evtMC );
437  if (!evtMC.isValid()) {
438  MC=false;
439  if(verbose_){
440  std::cout << "no HepMCProduct found"<< std::endl;
441  }
442  } else {
443  if(verbose_){
444  std::cout << "generator HepMCProduct found"<< std::endl;
445  }
446  MC=true;
447  }
448 
449 
450  if(verbose_){
451  //evtMC->GetEvent()->print();
452  printRecVtxs(recVtxs);
453  //printSimVtxs(simVtxs);
454  //printSimTrks(simTrks);
455  }
456 
457  if(MC){
458  // make a list of primary vertices:
459  std::vector<simPrimaryVertex> simpv;
460  //simpv=getSimPVs(evtMC, simVtxs, simTrks);
461  simpv=getSimPVs(evtMC,isuffix);
462 
463 
464  // vertex matching and efficiency bookkeeping
465  h["nsimvtx"+isuffix]->Fill(simpv.size());
466  int nsimtrk=0;
467  for(std::vector<simPrimaryVertex>::iterator vsim=simpv.begin();
468  vsim!=simpv.end(); vsim++){
469 
470  hdir[isuffix]->cd();
471 
472  h["nbsimtksinvtx"+isuffix]->Fill(vsim->nGenTrk);
473  h["xsim"+isuffix]->Fill(vsim->x*simUnit_);
474  h["ysim"+isuffix]->Fill(vsim->y*simUnit_);
475  h["zsim"+isuffix]->Fill(vsim->z*simUnit_);
476  nsimtrk+=vsim->nGenTrk;
477  // look for a matching reconstructed vertex
478  vsim->recVtx=NULL;
479  for(reco::VertexCollection::const_iterator vrec=recVtxs->begin();
480  vrec!=recVtxs->end(); ++vrec){
481  if ( matchVertex(*vsim,*vrec) ){
482  // if the matching critera are fulfilled, accept the rec-vertex that is closest in z
483  if( ((vsim->recVtx) && (fabs(vsim->recVtx->position().z()-vsim->z)>fabs(vrec->z()-vsim->z)))
484  || (!vsim->recVtx) )
485  {
486  vsim->recVtx=&(*vrec);
487  }
488  }
489  }
490  h["nsimtrk"+isuffix]->Fill(float(nsimtrk));
491 
492 
493  // histogram properties of matched vertices
494  if (vsim->recVtx){
495 
496  if(verbose_){std::cout <<"primary matched " << vsim->x << " " << vsim->y << " " << vsim->z << std:: endl;}
497 
498  h["resx"+isuffix]->Fill( vsim->recVtx->x()-vsim->x*simUnit_ );
499  h["resy"+isuffix]->Fill( vsim->recVtx->y()-vsim->y*simUnit_ );
500  h["resz"+isuffix]->Fill( vsim->recVtx->z()-vsim->z*simUnit_ );
501  h["pullx"+isuffix]->Fill( (vsim->recVtx->x()-vsim->x*simUnit_)/vsim->recVtx->xError() );
502  h["pully"+isuffix]->Fill( (vsim->recVtx->y()-vsim->y*simUnit_)/vsim->recVtx->yError() );
503  h["pullz"+isuffix]->Fill( (vsim->recVtx->z()-vsim->z*simUnit_)/vsim->recVtx->zError() );
504  h["eff"+isuffix]->Fill( 1.);
505  if(simpv.size()==1){
506  if (vsim->recVtx==&(*recVtxs->begin())){
507  h["efftag"+isuffix]->Fill( 1.);
508  }else{
509  h["efftag"+isuffix]->Fill( 0.);
510  }
511  }
512  h["effvseta"+isuffix]->Fill(vsim->ptot.pseudoRapidity(),1.);
513  h["effvsptsq"+isuffix]->Fill(vsim->ptsq,1.);
514  h["effvsntrk"+isuffix]->Fill(vsim->nGenTrk,1.);
515  h["effvsnrectrk"+isuffix]->Fill(recTrks->size(),1.);
516  h["effvsz"+isuffix]->Fill(vsim->z*simUnit_,1.);
517 
518  }else{ // no rec vertex found for this simvertex
519 
520  if(verbose_){std::cout <<"primary not found " << vsim->x << " " << vsim->y << " " << vsim->z << " nGenTrk=" << vsim->nGenTrk << std::endl;}
521 
522  h["eff"+isuffix]->Fill( 0.);
523  if(simpv.size()==1){ h["efftag"+isuffix]->Fill( 0.); }
524  h["effvseta"+isuffix]->Fill(vsim->ptot.pseudoRapidity(),0.);
525  h["effvsptsq"+isuffix]->Fill(vsim->ptsq,0.);
526  h["effvsntrk"+isuffix]->Fill(float(vsim->nGenTrk),0.);
527  h["effvsnrectrk"+isuffix]->Fill(recTrks->size(),0.);
528  h["effvsz"+isuffix]->Fill(vsim->z*simUnit_,0.);
529  } // no recvertex for this simvertex
530  }//found MC event
531  // end of sim/rec matching
532 
533 
534  // purity of event vertex tags
535  if (recVtxs->size()>0 && simpv.size()>0){
536  Double_t dz=(*recVtxs->begin()).z() - (*simpv.begin()).z*simUnit_;
537  h["zdistancetag"+isuffix]->Fill(dz);
538  if( fabs(dz)<0.0500){
539  h["puritytag"+isuffix]->Fill(1.);
540  }else{
541  // bad tag: the true primary was more than 500 um away from the tagged primary
542  h["puritytag"+isuffix]->Fill(0.);
543  }
544  }
545 
546 
547  }// MC event
548 
549  // test track links, use reconstructed vertices
550 
551  h["nrecvtx"+isuffix]->Fill(recVtxs->size());
552  h["nrectrk"+isuffix]->Fill(recTrks->size());
553  h["nbvtx"+isuffix]->Fill(recVtxs->size()*1.);
554  if((recVtxs->size()==0)||recVtxs->begin()->isFake()) {h["nrectrk0vtx"+isuffix]->Fill(recTrks->size());}
555 
556  for(reco::VertexCollection::const_iterator v=recVtxs->begin();
557  v!=recVtxs->end(); ++v){
558 
559  if(v->isFake()) continue;
560 
561  try {
562  for(reco::Vertex::trackRef_iterator t = v->tracks_begin();
563  t!=v->tracks_end(); t++) {
564  // illegal charge
565  if ( (**t).charge() < -1 || (**t).charge() > 1 ) {
566  h["tklinks"+isuffix]->Fill(0.);
567  }
568  else {
569  h["tklinks"+isuffix]->Fill(1.);
570  }
571  }
572  }
573  catch (...) {
574  // exception thrown when trying to use linked track
575  h["tklinks"+isuffix]->Fill(0.);
576  }
577 
578  h["nbtksinvtx"+isuffix]->Fill(v->tracksSize());
579  h["vtxchi2"+isuffix]->Fill(v->chi2());
580  h["vtxndf"+isuffix]->Fill(v->ndof());
581  h["vtxprob"+isuffix]->Fill(ChiSquaredProbability(v->chi2() ,v->ndof()));
582  h["xrec"+isuffix]->Fill(v->position().x());
583  h["yrec"+isuffix]->Fill(v->position().y());
584  h["zrec"+isuffix]->Fill(v->position().z());
585  if (v==recVtxs->begin()){
586  h["xrectag"+isuffix]->Fill(v->position().x());
587  h["yrectag"+isuffix]->Fill(v->position().y());
588  h["zrectag"+isuffix]->Fill(v->position().z());
589  }
590 
591  bool problem = false;
592  h["nans"+isuffix]->Fill(1.,isnan(v->position().x())*1.);
593  h["nans"+isuffix]->Fill(2.,isnan(v->position().y())*1.);
594  h["nans"+isuffix]->Fill(3.,isnan(v->position().z())*1.);
595 
596  int index = 3;
597  for (int i = 0; i != 3; i++) {
598  for (int j = i; j != 3; j++) {
599  index++;
600  h["nans"+isuffix]->Fill(index*1., isnan(v->covariance(i, j))*1.);
601  if (isnan(v->covariance(i, j))) problem = true;
602  // in addition, diagonal element must be positive
603  if (j == i && v->covariance(i, j) < 0) {
604  h["nans"+isuffix]->Fill(index*1., 1.);
605  problem = true;
606  }
607  }
608  }
609 
610  if (problem) {
611  // analyze track parameter covariance definiteness
612  double data[25];
613  try {
614  int itk = 0;
615  for(reco::Vertex::trackRef_iterator t = v->tracks_begin();
616  t!=v->tracks_end(); t++) {
617  std::cout << "Track " << itk++ << std::endl;
618  int i2 = 0;
619  for (int i = 0; i != 5; i++) {
620  for (int j = 0; j != 5; j++) {
621  data[i2] = (**t).covariance(i, j);
622  std::cout << std:: scientific << data[i2] << " ";
623  i2++;
624  }
625  std::cout << std::endl;
626  }
627  gsl_matrix_view m
628  = gsl_matrix_view_array (data, 5, 5);
629 
630  gsl_vector *eval = gsl_vector_alloc (5);
631  gsl_matrix *evec = gsl_matrix_alloc (5, 5);
632 
633  gsl_eigen_symmv_workspace * w =
634  gsl_eigen_symmv_alloc (5);
635 
636  gsl_eigen_symmv (&m.matrix, eval, evec, w);
637 
638  gsl_eigen_symmv_free (w);
639 
640  gsl_eigen_symmv_sort (eval, evec,
641  GSL_EIGEN_SORT_ABS_ASC);
642 
643  // print sorted eigenvalues
644  {
645  int i;
646  for (i = 0; i < 5; i++) {
647  double eval_i
648  = gsl_vector_get (eval, i);
649  //gsl_vector_view evec_i
650  // = gsl_matrix_column (evec, i);
651 
652  printf ("eigenvalue = %g\n", eval_i);
653  // printf ("eigenvector = \n");
654  // gsl_vector_fprintf (stdout,
655  // &evec_i.vector, "%g");
656  }
657  }
658  }
659  }
660  catch (...) {
661  // exception thrown when trying to use linked track
662  break;
663  }
664  }// if (problem)
665  }
666  } // for vertex loop
667 }
T getUntrackedParameter(std::string const &, T const &) const
int i
Definition: DBlmapReader.cc:9
TPRegexp parents
Definition: eve_filter.cc:24
void printRecVtxs(const edm::Handle< reco::VertexCollection > &recVtxs)
const double w
Definition: UKUtility.cc:23
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e< void, edm::EventIDconst &, edm::Timestampconst & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
bool isCharged(const HepMC::GenParticle *p)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
bool isFinalstateParticle(const HepMC::GenParticle *p)
edm::EDGetTokenT< edm::SimTrackContainer > edmSimTrackContainerToken_
std::map< std::string, TDirectory * > hdir
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:10
void printSimVtxs(const edm::Handle< edm::SimVertexContainer > &simVtxs)
#define NULL
Definition: scimark2.h:8
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
float float float z
void getData(T &iHolder) const
Definition: EventSetup.h:67
void printSimTrks(const edm::Handle< edm::SimTrackContainer > &simVtrks)
int iEvent
Definition: GenABIO.cc:230
edm::ESHandle< ParticleDataTable > pdt
bool isnan(float x)
Definition: math.h:13
virtual void analyze(const edm::Event &, const edm::EventSetup &)
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
int j
Definition: DBlmapReader.cc:9
double z() const
y coordinate
Definition: Vertex.h:112
float ChiSquaredProbability(double chiSquared, double nrDOF)
bool isValid() const
Definition: HandleBase.h:76
HepPDT::ParticleData ParticleData
std::string getReleaseVersion()
edm::EDGetTokenT< edm::HepMCProduct > edmHepMCProductToken_
bool isResonance(const HepMC::GenParticle *p)
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
part
Definition: HCALResponse.h:20
std::map< std::string, TH1 * > h
std::vector< SimVertex > SimVertexContainer
std::vector< simPrimaryVertex > getSimPVs(const edm::Handle< edm::HepMCProduct > &evtMC, const std::string &suffix="")
std::vector< edm::EDGetTokenT< reco::VertexCollection > > recoVertexCollectionTokens_
edm::EDGetTokenT< reco::TrackCollection > recoTrackCollectionToken_
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82
PrimaryVertexAnalyzer(const edm::ParameterSet &)
std::vector< TrackBaseRef >::const_iterator trackRef_iterator
The iteratator for the vector&lt;TrackRef&gt;
Definition: Vertex.h:37
tuple cout
Definition: gather_cfg.py:121
volatile std::atomic< bool > shutdown_flag false
std::vector< std::string > suffixSample_
bool matchVertex(const simPrimaryVertex &vsim, const reco::Vertex &vrec)
std::vector< SimTrack > SimTrackContainer
edm::EDGetTokenT< edm::SimVertexContainer > edmSimVertexContainerToken_