CMS 3D CMS Logo

makeNamedCompositeCandidate.h
Go to the documentation of this file.
1 #ifndef CandUtils_makeNamedCompositeCandidate_h
2 #define CandUtils_makeNamedCompositeCandidate_h
5 #include <memory>
6 #include <string>
7 
8 namespace helpers {
10  NamedCompositeCandidateMaker(std::unique_ptr<reco::NamedCompositeCandidate> cmp) : cmp_(std::move(cmp)) {}
11 
12  void addDaughter(const reco::Candidate& dau, std::string name) { cmp_->addDaughter(dau, name); }
13  template <typename S>
14  std::unique_ptr<reco::Candidate> operator[](const S& setup) {
15  setup.set(*cmp_);
16  return release();
17  }
18 
19  private:
20  std::unique_ptr<reco::NamedCompositeCandidate> cmp_;
21  std::unique_ptr<reco::Candidate> release() {
22  std::unique_ptr<reco::Candidate> ret(cmp_.get());
23  cmp_.release();
24  return ret;
25  }
26  };
27 } // namespace helpers
28 
30  std::string s1,
31  const reco::Candidate& c2,
32  std::string s2);
33 
35  std::string s1,
36  const reco::Candidate& c2,
37  std::string s2,
38  const reco::Candidate& c3,
39  std::string s3);
40 
42  std::string s1,
43  const reco::Candidate& c2,
44  std::string s2,
45  const reco::Candidate& c3,
46  std::string s3);
47 
49  std::string s1,
50  const reco::Candidate& c2,
51  std::string s2,
52  const reco::Candidate& c3,
53  std::string s3,
54  const reco::Candidate& c4,
55  std::string s4);
56 
57 template <typename C>
59  const typename C::const_iterator& end,
60  const std::vector<std::string>::const_iterator sbegin,
61  const std::vector<std::string>::const_iterator send) {
62  helpers::NamedCompositeCandidateMaker cmp(std::make_unique<reco::NamedCompositeCandidate>());
63  std::vector<std::string>::const_iterator si = sbegin;
64  for (typename C::const_iterator i = begin; i != end && si != send; ++i, ++si)
65  cmp.addDaughter(*i, *si);
66  return cmp;
67 }
68 
70  std::string s1,
71  const reco::CandidateRef& c2,
72  std::string s2);
73 
75  std::string s1,
76  const reco::CandidateRef& c2,
77  std::string s2,
78  const reco::CandidateRef& c3,
79  std::string s3);
80 
82  std::string s1,
83  const reco::CandidateRef& c2,
84  std::string s2,
85  const reco::CandidateRef& c3,
86  std::string s3,
87  const reco::CandidateRef& c4,
88  std::string s4);
89 
90 template <typename C>
92  const typename C::const_iterator& begin,
93  const typename C::const_iterator& end,
94  const std::vector<std::string>::const_iterator sbegin,
95  const std::vector<std::string>::const_iterator send) {
96  helpers::NamedCompositeCandidateMaker cmp(std::make_unique<reco::NamedCompositeCandidate>());
97  std::vector<std::string>::const_iterator si = sbegin;
98  for (typename C::const_iterator i = begin; i != end && si != send; ++i, ++si)
99  cmp.addDaughter(ShallowCloneCandidate(CandidateBaseRef(*i)), *si);
100  return cmp;
101 }
102 
103 #endif
ret
prodAgent to be discontinued
void addDaughter(const reco::Candidate &dau, std::string name)
std::unique_ptr< reco::Candidate > operator[](const S &setup)
helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidate(const reco::Candidate &c1, std::string s1, const reco::Candidate &c2, std::string s2)
helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidateWithRefsToMaster(const reco::CandidateRef &c1, std::string s1, const reco::CandidateRef &c2, std::string s2)
NamedCompositeCandidateMaker(std::unique_ptr< reco::NamedCompositeCandidate > cmp)
std::unique_ptr< reco::Candidate > release()
edm::RefToBase< Candidate > CandidateBaseRef
persistent reference to an object in a collection of Candidate objects
Definition: CandidateFwd.h:31
std::unique_ptr< reco::NamedCompositeCandidate > cmp_
def move(src, dest)
Definition: eostools.py:511