CMS 3D CMS Logo

makeCompositeCandidate.h
Go to the documentation of this file.
1 #ifndef CandUtils_makeCompositeCandidate_h
2 #define CandUtils_makeCompositeCandidate_h
6 #include <memory>
7 
8 namespace helpers {
10  CompositeCandidateMaker(std::unique_ptr<reco::CompositeCandidate> cmp) : cmp_(std::move(cmp)) {}
11  void addDaughter(const reco::Candidate& dau) { cmp_->addDaughter(dau); }
12  template <typename S>
13  std::unique_ptr<reco::Candidate> operator[](const S& setup) {
14  setup.set(*cmp_);
15  return release();
16  }
17 
18  private:
19  std::unique_ptr<reco::CompositeCandidate> cmp_;
20  std::unique_ptr<reco::Candidate> release() {
21  std::unique_ptr<reco::Candidate> ret(cmp_.get());
22  cmp_.release();
23  return ret;
24  }
25  };
26 
28  CompositePtrCandidateMaker(std::unique_ptr<reco::CompositePtrCandidate> cmp) : cmp_(std::move(cmp)) {}
29  void addDaughter(const reco::CandidatePtr& dau) { cmp_->addDaughter(dau); }
30  template <typename S>
31  std::unique_ptr<reco::Candidate> operator[](const S& setup) {
32  setup.set(*cmp_);
33  return release();
34  }
35 
36  private:
37  std::unique_ptr<reco::CompositePtrCandidate> cmp_;
38  std::unique_ptr<reco::Candidate> release() {
39  std::unique_ptr<reco::Candidate> ret(cmp_.get());
40  cmp_.release();
41  return ret;
42  }
43  };
44 } // namespace helpers
45 
47 
49  const reco::Candidate& c2,
50  const reco::Candidate& c3);
51 
53  const reco::Candidate& c2,
54  const reco::Candidate& c3);
55 
57  const reco::Candidate& c2,
58  const reco::Candidate& c3,
59  const reco::Candidate& c4);
60 
61 template <typename C>
62 helpers::CompositeCandidateMaker makeCompositeCandidate(const typename C::const_iterator& begin,
63  const typename C::const_iterator& end) {
64  helpers::CompositeCandidateMaker cmp(std::make_unique<reco::CompositeCandidate>());
65  for (typename C::const_iterator i = begin; i != end; ++i)
66  cmp.addDaughter(*i);
67  return cmp;
68 }
69 
71  const reco::CandidateRef& c2);
72 
74  const reco::CandidateRef& c2,
75  const reco::CandidateRef& c3);
76 
78  const reco::CandidateRef& c2,
79  const reco::CandidateRef& c3,
80  const reco::CandidateRef& c4);
81 
82 template <typename C>
84  const typename C::const_iterator& end) {
85  helpers::CompositeCandidateMaker cmp(std::make_unique<reco::CompositeCandidate>());
86  for (typename C::const_iterator i = begin; i != end; ++i)
87  cmp.addDaughter(ShallowCloneCandidate(CandidateBaseRef(*i)));
88  return cmp;
89 }
90 
92  const reco::CandidatePtr& c2);
93 
95  const reco::CandidatePtr& c2,
96  const reco::CandidatePtr& c3);
97 
99  const reco::CandidatePtr& c2,
100  const reco::CandidatePtr& c3);
101 
103  const reco::CandidatePtr& c2,
104  const reco::CandidatePtr& c3,
105  const reco::CandidatePtr& c4);
106 
107 #endif
helpers::CompositePtrCandidateMaker makeCompositePtrCandidate(const reco::CandidatePtr &c1, const reco::CandidatePtr &c2)
std::unique_ptr< reco::Candidate > operator[](const S &setup)
std::unique_ptr< reco::CompositeCandidate > cmp_
void addDaughter(const reco::CandidatePtr &dau)
ret
prodAgent to be discontinued
helpers::CompositeCandidateMaker makeCompositeCandidate(const reco::Candidate &c1, const reco::Candidate &c2)
void addDaughter(const reco::Candidate &dau)
std::unique_ptr< reco::CompositePtrCandidate > cmp_
helpers::CompositeCandidateMaker makeCompositeCandidateWithRefsToMaster(const reco::CandidateRef &c1, const reco::CandidateRef &c2)
CompositePtrCandidateMaker(std::unique_ptr< reco::CompositePtrCandidate > cmp)
std::unique_ptr< reco::Candidate > operator[](const S &setup)
edm::RefToBase< Candidate > CandidateBaseRef
persistent reference to an object in a collection of Candidate objects
Definition: CandidateFwd.h:31
CompositeCandidateMaker(std::unique_ptr< reco::CompositeCandidate > cmp)
std::unique_ptr< reco::Candidate > release()
std::unique_ptr< reco::Candidate > release()
def move(src, dest)
Definition: eostools.py:511