CMS 3D CMS Logo

ParticleTreeDrawer.cc
Go to the documentation of this file.
1 /* class ParticleTreeDrawer
2  *
3  * \author Luca Lista, INFN
4  */
5 #include <sstream>
6 
14 
16 public:
18 
19 private:
20  std::string getParticleName(int id) const;
21  void analyze(const edm::Event &, const edm::EventSetup &) override;
23  void printDecay(const reco::Candidate &, const std::string &pre) const;
29  typedef std::vector<int> vint;
32  void printInfo(const reco::Candidate &) const;
34  bool accept(const reco::Candidate &) const;
36  bool hasValidDaughters(const reco::Candidate &) const;
38  std::vector<const reco::Candidate *> cands_;
39 };
40 
46 #include <iostream>
47 #include <algorithm>
48 using namespace std;
49 using namespace edm;
50 using namespace reco;
51 
53  : srcToken_(consumes<edm::View<reco::Candidate> >(cfg.getParameter<InputTag>("src"))),
55  printP4_(cfg.getUntrackedParameter<bool>("printP4", false)),
56  printPtEtaPhi_(cfg.getUntrackedParameter<bool>("printPtEtaPhi", false)),
57  printVertex_(cfg.getUntrackedParameter<bool>("printVertex", false)),
58  printStatus_(cfg.getUntrackedParameter<bool>("printStatus", false)),
59  printIndex_(cfg.getUntrackedParameter<bool>("printIndex", false)),
60  status_(cfg.getUntrackedParameter<vint>("status", vint())) {}
61 
63  if (status_.empty())
64  return true;
65  return find(status_.begin(), status_.end(), c.status()) != status_.end();
66 }
67 
69  size_t ndau = c.numberOfDaughters();
70  for (size_t i = 0; i < ndau; ++i)
71  if (accept(*c.daughter(i)))
72  return true;
73  return false;
74 }
75 
77  const ParticleData *pd = pdt_->particle(id);
78  if (!pd) {
79  std::ostringstream ss;
80  ss << "P" << id;
81  return ss.str();
82  } else
83  return pd->name();
84 }
85 
87  pdt_ = es.getHandle(pdtToken_);
89  event.getByToken(srcToken_, particles);
90  cands_.clear();
91  for (View<Candidate>::const_iterator p = particles->begin(); p != particles->end(); ++p) {
92  cands_.push_back(&*p);
93  }
94  for (View<Candidate>::const_iterator p = particles->begin(); p != particles->end(); ++p) {
95  if (accept(*p)) {
96  if (p->mother() == nullptr) {
97  cout << "-- decay tree: --" << endl;
98  printDecay(*p, "");
99  }
100  }
101  }
102 }
103 
105  if (printP4_)
106  cout << " (" << c.px() << ", " << c.py() << ", " << c.pz() << "; " << c.energy() << ")";
107  if (printPtEtaPhi_)
108  cout << " [" << c.pt() << ": " << c.eta() << ", " << c.phi() << "]";
109  if (printVertex_)
110  cout << " {" << c.vx() << ", " << c.vy() << ", " << c.vz() << "}";
111  if (printStatus_)
112  cout << "{status: " << c.status() << "}";
113  if (printIndex_) {
114  int idx = -1;
115  vector<const Candidate *>::const_iterator found = find(cands_.begin(), cands_.end(), &c);
116  if (found != cands_.end()) {
117  idx = found - cands_.begin();
118  cout << " <idx: " << idx << ">";
119  }
120  }
121 }
122 
123 void ParticleTreeDrawer::printDecay(const Candidate &c, const string &pre) const {
124  cout << getParticleName(c.pdgId());
125  printInfo(c);
126  cout << endl;
127 
128  size_t ndau = c.numberOfDaughters(), validDau = 0;
129  for (size_t i = 0; i < ndau; ++i)
130  if (accept(*c.daughter(i)))
131  ++validDau;
132  if (validDau == 0)
133  return;
134 
135  bool lastLevel = true;
136  for (size_t i = 0; i < ndau; ++i) {
137  if (hasValidDaughters(*c.daughter(i))) {
138  lastLevel = false;
139  break;
140  }
141  }
142 
143  if (lastLevel) {
144  cout << pre << "+-> ";
145  size_t vd = 0;
146  for (size_t i = 0; i < ndau; ++i) {
147  const Candidate *d = c.daughter(i);
148  if (accept(*d)) {
149  cout << getParticleName(d->pdgId());
150  printInfo(*d);
151  if (vd != validDau - 1)
152  cout << " ";
153  vd++;
154  }
155  }
156  cout << endl;
157  return;
158  }
159 
160  for (size_t i = 0; i < ndau; ++i) {
161  const Candidate *d = c.daughter(i);
162  assert(d != nullptr);
163  if (accept(*d)) {
164  cout << pre << "+-> ";
165  string prepre(pre);
166  if (i == ndau - 1)
167  prepre += " ";
168  else
169  prepre += "| ";
170  printDecay(*d, prepre);
171  }
172  }
173 }
174 
176 
ESGetTokenH3DDVariant esConsumes(std::string const &Record, edm::ConsumesCollector &)
Definition: DeDxTools.cc:283
HepPDT::ParticleDataTable ParticleDataTable
std::vector< const reco::Candidate * > cands_
pointer to collection
edm::ESHandle< ParticleDataTable > pdt_
edm::EDGetTokenT< edm::View< reco::Candidate > > srcToken_
edm::ESGetToken< ParticleDataTable, edm::DefaultRecord > pdtToken_
std::vector< int > vint
accepted status codes
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
assert(be >=bs)
void analyze(const edm::Event &, const edm::EventSetup &) override
bool hasValidDaughters(const reco::Candidate &) const
has valid daughters in the chain
ParticleTreeDrawer(const edm::ParameterSet &)
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
bool printP4_
print parameters
HepPDT::ParticleData ParticleData
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:130
d
Definition: ztail.py:151
std::vector< DeviationSensor2D * > vd
std::string getParticleName(int id) const
fixed size matrix
HLT enums.
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:86
void printDecay(const reco::Candidate &, const std::string &pre) const
bool accept(const reco::Candidate &) const
accept candidate
void printInfo(const reco::Candidate &) const
print 4 momenta
Definition: event.py:1