Class Reference for E1039 Core & Analysis Software
PHG4InputFilter.cc
Go to the documentation of this file.
1 #include "PHG4InputFilter.h"
2 #include "PHG4InEvent.h"
3 #include "PHG4Particle.h"
4 
6 #include <phool/getClass.h>
7 
8 #include <cmath>
9 
10 using namespace std;
11 
12 PHG4InputFilter::PHG4InputFilter(const std::string &name):
13  SubsysReco(name),
14  etamin(NAN),
15  etamax(NAN),
16  ptmin(NAN),
17  ptmax(NAN)
18 {}
19 
20 int
22 {
23  PHG4InEvent *ineve = findNode::getClass<PHG4InEvent>(topNode, "PHG4INEVENT");
24  if (!ineve)
25  {
26  cout << PHWHERE << "no PHG4INEVENT node" << endl;
28  }
29  pair<multimap<int, PHG4Particle *>::iterator, multimap<int, PHG4Particle *>::iterator > beginend = ineve->GetParticles_Modify();
30  multimap<int, PHG4Particle *>::iterator particleiter;
31  if (verbosity > 0)
32  {
33  cout << "PHG4InputFilter before filter" << endl;
34  ineve->identify();
35  }
36  particleiter = beginend.first;
37  while (particleiter != beginend.second)
38  {
39  if (isfinite(etamin))
40  {
41  double eta = get_eta((particleiter->second)->get_px(), (particleiter->second)->get_py(), (particleiter->second)->get_pz());
42  if (eta < etamin)
43  {
44  multimap<int, PHG4Particle *>::iterator particleiter_cache = particleiter ;
45  ++particleiter_cache;
46  ineve->DeleteParticle(particleiter);
47  particleiter = particleiter_cache;
48  continue;
49  }
50  }
51  if (isfinite(etamax))
52  {
53  double eta = get_eta((particleiter->second)->get_px(), (particleiter->second)->get_py(), (particleiter->second)->get_pz());
54  if (eta > etamax)
55  {
56  multimap<int, PHG4Particle *>::iterator particleiter_cache = particleiter ;
57  ++particleiter_cache;
58  ineve->DeleteParticle(particleiter);
59  particleiter = particleiter_cache;
60  continue;
61  }
62  }
63  if (isfinite(ptmin))
64  {
65  double pt = sqrt((particleiter->second)->get_px()*(particleiter->second)->get_px()+ (particleiter->second)->get_py()*(particleiter->second)->get_py());
66  if (pt < ptmin)
67  {
68  multimap<int, PHG4Particle *>::iterator particleiter_cache = particleiter ;
69  ++particleiter_cache;
70  ineve->DeleteParticle(particleiter);
71  particleiter = particleiter_cache;
72  continue;
73  }
74  }
75  if (isfinite(ptmax))
76  {
77  double pt = sqrt((particleiter->second)->get_px()*(particleiter->second)->get_px()+ (particleiter->second)->get_py()*(particleiter->second)->get_py());
78  if (pt > ptmax)
79  {
80  multimap<int, PHG4Particle *>::iterator particleiter_cache = particleiter ;
81  ++particleiter_cache;
82  ineve->DeleteParticle(particleiter);
83  particleiter = particleiter_cache;
84  continue;
85  }
86  }
87  ++particleiter;
88  }
89  if (verbosity > 0)
90  {
91  cout << "PHG4InputFilter: after filter" << endl;
92  ineve->identify();
93  }
95 }
96 
97 double
98 PHG4InputFilter::get_eta(const double x, const double y, const double z)
99 {
100  double eta;
101  double radius;
102  double theta;
103  radius = sqrt(x * x + y * y);
104  theta = atan2(radius, z);
105  eta = -log(tan(theta / 2.));
106  return eta;
107 }
int verbosity
The verbosity level. 0 means not verbose at all.
Definition: Fun4AllBase.h:75
void DeleteParticle(std::multimap< int, PHG4Particle * >::iterator &iter)
Definition: PHG4InEvent.cc:176
std::pair< std::multimap< int, PHG4Particle * >::iterator, std::multimap< int, PHG4Particle * >::iterator > GetParticles_Modify()
Definition: PHG4InEvent.cc:127
virtual void identify(std::ostream &os=std::cout) const
Definition: PHG4InEvent.cc:134
int process_event(PHCompositeNode *topNode)
PHG4InputFilter(const std::string &name="G4INPUTFILTER")
double get_eta(const double x, const double y, const double z)
#define PHWHERE
Definition: phool.h:23