CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
cloneDecayTree.h File Reference
#include "DataFormats/Candidate/interface/CandidateFwd.h"
#include <memory>

Go to the source code of this file.

Functions

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

Function Documentation

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

Definition at line 6 of file cloneDecayTree.cc.

References reco::CompositeCandidate::addDaughter(), trackerHits::c, reco::Candidate::clone(), cloneDecayTree(), reco::Candidate::daughter(), i, n, reco::Candidate::numberOfDaughters(), and AlCaHLTBitMon_ParallelJobs::p.

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