Class Reference for E1039 Core & Analysis Software
PHHepMCParticleSelectorDecayProductChain.cc
Go to the documentation of this file.
2 
3 #include "PHHepMCGenEvent.h"
4 #include "PHHepMCGenEventMap.h"
5 
7 
8 #include <phool/getClass.h>
9 #include <phool/recoConsts.h>
10 
11 #include <phool/PHCompositeNode.h>
12 #include <phool/PHIODataNode.h>
13 
14 using namespace std;
15 
17  SubsysReco(name), _embedding_id(0)
18 {
19  _theParticle = 11;
20  return;
21 }
22 
24 {
26 }
27 
28 HepMC::GenParticle* PHHepMCParticleSelectorDecayProductChain::GetParent(HepMC::GenParticle* p, HepMC::GenEvent* event)
29 {
30 
31  HepMC::GenParticle* parent = NULL;
32  if(!p->production_vertex()) return parent;
33 
34  for ( HepMC::GenVertex::particle_iterator mother = p->production_vertex()-> particles_begin(HepMC::ancestors);
35  mother != p->production_vertex()-> particles_end(HepMC::ancestors);
36  ++mother )
37  {
38  for(unsigned int i = 0; i < _theAncestors.size(); i++)
39  {
40  if(abs((*mother)->pdg_id()) == _theAncestors[i])
41  {
42  parent = *mother;
43  break;
44  }
45  }
46  if(parent != NULL) break;
47  }
48 
49  return parent;
50 }
51 
53 {
54 
55  if(_theParticle == 0 && _theDaughters.size() == 0)
56  {
57  cout << PHWHERE << "Doing nothing." << endl;
59  }
60 
61  PHHepMCGenEventMap * geneventmap = findNode::getClass<PHHepMCGenEventMap>(topNode, "PHHepMCGenEventMap");
62  if(!geneventmap)
63  {
64  cerr << "ERROR: PHHepMCGenEventMap node not found!" << endl;
66  }
67  PHHepMCGenEvent *inEvent = geneventmap->get(_embedding_id);
68  if(!inEvent)
69  {
70  cerr << "PHHepMCParticleSelectorDecayProductChain::process_event - WARNING: PHHepMCGenEvent with embedding ID "<< _embedding_id <<" is not found! Move on." << endl;
72  }
73 
74  HepMC::GenEvent* event = inEvent->getEvent();
75  int npart = event->particles_size();
76  int nvert = event->vertices_size();
77  if(verbosity > 0) cout << "=========== Event " << event->event_number() << " contains " << npart << " particles and " << nvert << " vertices." << endl;
78 
79  // list of vertices to keep
80  vector<HepMC::GenVertex> vkeep;
81 
82  if(_theParticle != 0) // keep _theParticle and all its daughters (if any)
83  {
84  for ( HepMC::GenEvent::particle_const_iterator p = event->particles_begin(); p != event->particles_end(); ++p )
85  {
86 
87  // find _thePartcle
88  if(abs((*p)->pdg_id()) == _theParticle)
89  {
90 
91  // do we need to check for ancestors?
92  if(_theAncestors.size() > 0)
93  {
94  HepMC::GenParticle* parent = GetParent(*p, event);
95  if(parent)
96  {
97  vkeep.push_back(*(*p)->production_vertex());
98  }
99  }
100  else
101  {
102  vkeep.push_back(*(*p)->production_vertex());
103  }
104 
105  // do we need to keep the daughters?
106  if(_theDaughters.size() > 0)
107  {
108  if ( (*p)->end_vertex() )
109  {
110  for ( HepMC::GenVertex::particle_iterator des = (*p)->end_vertex()-> particles_begin(HepMC::descendants);
111  des != (*p)->end_vertex()-> particles_end(HepMC::descendants);
112  ++des )
113  {
114  for(unsigned int i = 0; i < _theDaughters.size(); i++)
115  {
116  if(abs((*des)->pdg_id()) == _theDaughters[i])
117  {
118  vkeep.push_back(*(*p)->end_vertex());
119  break;
120  }
121  }
122  }
123  }
124  } // there are daughters
125 
126  } // this is _theParticle
127  } // end loop over particles
128  }
129  else // save only particles in _theDaughters list no matter where they came from
130  {
131  for ( HepMC::GenEvent::particle_const_iterator p = event->particles_begin(); p != event->particles_end(); ++p )
132  {
133  for ( unsigned int ip = 0; ip < _theDaughters.size(); ip++ )
134  {
135  if( abs((*p)->pdg_id()) == _theDaughters[ip] )
136  {
137  vkeep.push_back(*(*p)->production_vertex());
138  }
139  }
140  }
141  }
142 
143  // loop over vertices and keep only selected ones.
144  for ( HepMC::GenEvent::vertex_const_iterator v = event->vertices_begin(); v != event->vertices_end(); ++v )
145  {
146  bool goodvertex = false;
147  for(unsigned int i = 0; i < vkeep.size(); i++)
148  {
149  HepMC::GenVertex tmp1 = (*(*v));
150  HepMC::GenVertex tmp2 = vkeep[i];
151  if(tmp1 == tmp2)
152  {
153  goodvertex = true;
154  }
155  }
156  if(!goodvertex)
157  {
158  bool tmp = event->remove_vertex((*v));
159  if(verbosity > 10 && tmp)
160  {
161  cout << PHWHERE << " Erasing empty vertex." << endl;
162  }
163  }
164  }
165 
166 
167  // clean up the vertices
168  for ( HepMC::GenEvent::vertex_const_iterator v = event->vertices_begin(); v != event->vertices_end(); ++v )
169  {
170 
171  std::vector<HepMC::GenParticle*> removep;
172 
173  for ( HepMC::GenVertex::particle_iterator itpart = (*v)->particles_begin(HepMC::children);
174  itpart != (*v)->particles_end(HepMC::children);
175  ++itpart )
176  {
177  bool keepparticle = false;
178  if(abs((*itpart)->pdg_id()) == _theParticle)
179  {
180  keepparticle = true;
181  }
182  for(unsigned int j = 0; j < _theDaughters.size(); j++)
183  {
184  if(abs((*itpart)->pdg_id()) == _theDaughters[j] && (*itpart)->status() == 1)
185  {
186  keepparticle = true;
187  }
188  }
189  if(!keepparticle)
190  {
191  removep.push_back((*itpart));
192  }
193  } // end loop over particles in this vertex
194 
195  for ( HepMC::GenVertex::particle_iterator itpart = (*v)->particles_begin(HepMC::parents);
196  itpart != (*v)->particles_end(HepMC::parents);
197  ++itpart )
198  {
199  bool keepparticle = false;
200  if(abs((*itpart)->pdg_id()) == _theParticle)
201  {
202  keepparticle = true;
203  }
204  for(unsigned int j = 0; j < _theDaughters.size(); j++)
205  {
206  if(abs((*itpart)->pdg_id()) == _theDaughters[j] && (*itpart)->status() == 1)
207  {
208  keepparticle = true;
209  }
210  }
211  if(!keepparticle)
212  {
213  removep.push_back((*itpart));
214  }
215  } // end loop over particles in this vertex
216 
217  for(unsigned int k = 0; k < removep.size(); k++)
218  {
219  HepMC::GenParticle *tmp = (*v)->remove_particle(removep[k]);
220  if(tmp->end_vertex())
221  {
222  delete tmp->end_vertex();
223  }
224  }
225 
226  }
227 
228 
229  int partcount = 0;
230  if(verbosity > 0)
231  {
232  cout << "FINAL Event " << event->event_number() << " contains " << event->particles_size() << " particles and " << event->vertices_size() << " vertices." << endl;
233  cout << "FINAL LIST OF PARTICLES:" << endl;
234  }
235  for ( HepMC::GenEvent::particle_const_iterator p = event->particles_begin(); p != event->particles_end(); ++p )
236  {
237  int pid = (*p)->pdg_id();
238  int status = (*p)->status();
239  double pz = ((*p)->momentum()).pz();
240  double pt = ((*p)->momentum()).perp();
241  double eta = ((*p)->momentum()).eta();
242  double mass = ((*p)->momentum()).m();
243  if(verbosity > 0)
244  {
245  cout << pid << " " << mass << " " << status << " " << pt << " " << pz << " " << eta << " " << (*p)->production_vertex() << " " << (*p)->end_vertex() << endl;
246  }
247  partcount++;
248  }
249 
250  // if there is nothing to write out the code crashes
251  if(partcount == 0)
252  {
253  if(verbosity > 0)
254  {
255  cout << "EVENT ABORTED: No particles to write out." << endl;
256  }
258  }
259  else
260  {
262  }
263 
264 }
265 
267 {
268  _theParticle = pid;
269  return;
270 }
271 
273 {
274  _theAncestors.push_back(pid);
275  return;
276 }
277 
279 {
280  _theDaughters.push_back(pid);
281  return;
282 }
#define NULL
Definition: Pdb.h:9
int verbosity
The verbosity level. 0 means not verbose at all.
Definition: Fun4AllBase.h:75
PHHepMCGenEventMap is collection of HEPMC events input into this simulation map of embedding ID -> PH...
const PHHepMCGenEvent * get(int idkey) const
fetch event
virtual HepMC::GenEvent * getEvent()
virtual void AddAncestor(const int pid)
Add an ancestor of the particle you want in your output.
virtual void SetParticle(const int pid)
Set the ID of the particle you want in your output.
PHHepMCParticleSelectorDecayProductChain(const std::string &name="PARTICLESELECTOR")
virtual void AddDaughter(const int pid)
Add decay products of the particle you want in your output.
HepMC::GenParticle * GetParent(HepMC::GenParticle *p, HepMC::GenEvent *event)
find out if a particle comes from one of _theAncestors
int _theParticle
The particle you want to have in your output.
#define PHWHERE
Definition: phool.h:23