CMS 3D CMS Logo

Functions
cloneDecayTree.h File Reference
#include "DataFormats/Candidate/interface/CandidateFwd.h"
#include <memory>

Go to the source code of this file.

Functions

std::unique_ptr< reco::CandidatecloneDecayTree (const reco::Candidate &)
 

Function Documentation

std::unique_ptr<reco::Candidate> cloneDecayTree ( const reco::Candidate )

Definition at line 6 of file cloneDecayTree.cc.

References EnergyCorrector::c, reco::Candidate::clone(), reco::Candidate::daughter(), mps_fire::i, gen::n, reco::Candidate::numberOfDaughters(), and AlCaHLTBitMon_ParallelJobs::p.

6  {
7  size_t n = c.numberOfDaughters();
8  if (n == 1) return unique_ptr<Candidate>(c.clone());
9  // pass a particle, not a candidate, to avoid cloning daughters
10  const Candidate &p = c;
11  auto cmp = std::make_unique<CompositeCandidate>(p);
12  for(size_t i = 0; i < n; ++ i)
13  cmp->addDaughter(cloneDecayTree(* c.daughter(i)));
14  return cmp;
15 }
unique_ptr< Candidate > cloneDecayTree(const Candidate &c)