CMS 3D CMS Logo

Classes | Namespaces | Functions
makeNamedCompositeCandidate.h File Reference
#include "DataFormats/Candidate/interface/NamedCompositeCandidate.h"
#include "DataFormats/Candidate/interface/ShallowCloneCandidate.h"
#include <memory>
#include <string>

Go to the source code of this file.

Classes

struct  helpers::NamedCompositeCandidateMaker
 

Namespaces

 helpers
 

Functions

helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidate (const reco::Candidate &c1, std::string s1, const reco::Candidate &c2, std::string s2)
 
helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidate (const reco::Candidate &c1, std::string s1, const reco::Candidate &c2, std::string s2, const reco::Candidate &c3, std::string s3)
 
helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidate (const reco::Candidate &c1, std::string s1, const reco::Candidate &c2, std::string s2, const reco::Candidate &c3, std::string s3, const reco::Candidate &c4, std::string s4)
 
template<typename C >
helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidate (const typename C::const_iterator &begin, const typename C::const_iterator &end, const std::vector< std::string >::const_iterator sbegin, const std::vector< std::string >::const_iterator send)
 
helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidateWithRefsToMaster (const reco::CandidateRef &c1, std::string s1, const reco::CandidateRef &c2, std::string s2)
 
helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidateWithRefsToMaster (const reco::CandidateRef &c1, std::string s1, const reco::CandidateRef &c2, std::string s2, const reco::CandidateRef &c3, std::string s3)
 
helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidateWithRefsToMaster (const reco::CandidateRef &c1, std::string s1, const reco::CandidateRef &c2, std::string s2, const reco::CandidateRef &c3, std::string s3, const reco::CandidateRef &c4, std::string s4)
 
template<typename C >
helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidateWithRefsToMaster (const typename C::const_iterator &begin, const typename C::const_iterator &end, const std::vector< std::string >::const_iterator sbegin, const std::vector< std::string >::const_iterator send)
 

Function Documentation

◆ makeNamedCompositeCandidate() [1/4]

helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidate ( const reco::Candidate c1,
std::string  s1,
const reco::Candidate c2,
std::string  s2 
)

Definition at line 7 of file makeNamedCompositeCandidate.cc.

References alignmentValidation::c1, and fileCollector::cmp.

10  {
11  helpers::NamedCompositeCandidateMaker cmp(std::make_unique<NamedCompositeCandidate>());
12  cmp.addDaughter(c1, s1);
13  cmp.addDaughter(c2, s2);
14  return cmp;
15 }

◆ makeNamedCompositeCandidate() [2/4]

helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidate ( const reco::Candidate c1,
std::string  s1,
const reco::Candidate c2,
std::string  s2,
const reco::Candidate c3,
std::string  s3 
)

Definition at line 17 of file makeNamedCompositeCandidate.cc.

References alignmentValidation::c1, and fileCollector::cmp.

18  {
19  helpers::NamedCompositeCandidateMaker cmp(std::make_unique<NamedCompositeCandidate>());
20  cmp.addDaughter(c1, s1);
21  cmp.addDaughter(c2, s2);
22  cmp.addDaughter(c3, s3);
23  return cmp;
24 }

◆ makeNamedCompositeCandidate() [3/4]

helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidate ( const reco::Candidate c1,
std::string  s1,
const reco::Candidate c2,
std::string  s2,
const reco::Candidate c3,
std::string  s3,
const reco::Candidate c4,
std::string  s4 
)

Definition at line 26 of file makeNamedCompositeCandidate.cc.

References alignmentValidation::c1, fileCollector::cmp, and photons_cff::s4.

33  {
34  helpers::NamedCompositeCandidateMaker cmp(std::make_unique<NamedCompositeCandidate>());
35  cmp.addDaughter(c1, s1);
36  cmp.addDaughter(c2, s2);
37  cmp.addDaughter(c3, s3);
38  cmp.addDaughter(c4, s4);
39  return cmp;
40 }

◆ makeNamedCompositeCandidate() [4/4]

template<typename C >
helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidate ( const typename C::const_iterator &  begin,
const typename C::const_iterator &  end,
const std::vector< std::string >::const_iterator  sbegin,
const std::vector< std::string >::const_iterator  send 
)

Definition at line 58 of file makeNamedCompositeCandidate.h.

References fileCollector::cmp, mps_fire::end, and mps_fire::i.

61  {
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 }

◆ makeNamedCompositeCandidateWithRefsToMaster() [1/4]

helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidateWithRefsToMaster ( const reco::CandidateRef c1,
std::string  s1,
const reco::CandidateRef c2,
std::string  s2 
)

Definition at line 42 of file makeNamedCompositeCandidate.cc.

References alignmentValidation::c1, and fileCollector::cmp.

45  {
46  helpers::NamedCompositeCandidateMaker cmp(std::make_unique<NamedCompositeCandidate>());
47  cmp.addDaughter(ShallowCloneCandidate(CandidateBaseRef(c1)), s1);
48  cmp.addDaughter(ShallowCloneCandidate(CandidateBaseRef(c2)), s2);
49  return cmp;
50 }
edm::RefToBase< Candidate > CandidateBaseRef
persistent reference to an object in a collection of Candidate objects
Definition: CandidateFwd.h:31

◆ makeNamedCompositeCandidateWithRefsToMaster() [2/4]

helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidateWithRefsToMaster ( const reco::CandidateRef c1,
std::string  s1,
const reco::CandidateRef c2,
std::string  s2,
const reco::CandidateRef c3,
std::string  s3 
)

Definition at line 52 of file makeNamedCompositeCandidate.cc.

References alignmentValidation::c1, and fileCollector::cmp.

57  {
58  helpers::NamedCompositeCandidateMaker cmp(std::make_unique<NamedCompositeCandidate>());
59  cmp.addDaughter(ShallowCloneCandidate(CandidateBaseRef(c1)), s1);
60  cmp.addDaughter(ShallowCloneCandidate(CandidateBaseRef(c2)), s2);
61  cmp.addDaughter(ShallowCloneCandidate(CandidateBaseRef(c3)), s3);
62  return cmp;
63 }
edm::RefToBase< Candidate > CandidateBaseRef
persistent reference to an object in a collection of Candidate objects
Definition: CandidateFwd.h:31

◆ makeNamedCompositeCandidateWithRefsToMaster() [3/4]

helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidateWithRefsToMaster ( const reco::CandidateRef c1,
std::string  s1,
const reco::CandidateRef c2,
std::string  s2,
const reco::CandidateRef c3,
std::string  s3,
const reco::CandidateRef c4,
std::string  s4 
)

Definition at line 65 of file makeNamedCompositeCandidate.cc.

References alignmentValidation::c1, fileCollector::cmp, and photons_cff::s4.

72  {
73  helpers::NamedCompositeCandidateMaker cmp(std::make_unique<NamedCompositeCandidate>());
74  cmp.addDaughter(ShallowCloneCandidate(CandidateBaseRef(c1)), s1);
75  cmp.addDaughter(ShallowCloneCandidate(CandidateBaseRef(c2)), s2);
76  cmp.addDaughter(ShallowCloneCandidate(CandidateBaseRef(c3)), s3);
77  cmp.addDaughter(ShallowCloneCandidate(CandidateBaseRef(c4)), s4);
78  return cmp;
79 }
edm::RefToBase< Candidate > CandidateBaseRef
persistent reference to an object in a collection of Candidate objects
Definition: CandidateFwd.h:31

◆ makeNamedCompositeCandidateWithRefsToMaster() [4/4]

template<typename C >
helpers::NamedCompositeCandidateMaker makeNamedCompositeCandidateWithRefsToMaster ( const typename C::const_iterator &  begin,
const typename C::const_iterator &  end,
const std::vector< std::string >::const_iterator  sbegin,
const std::vector< std::string >::const_iterator  send 
)

Definition at line 91 of file makeNamedCompositeCandidate.h.

References fileCollector::cmp, mps_fire::end, and mps_fire::i.

95  {
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 }
edm::RefToBase< Candidate > CandidateBaseRef
persistent reference to an object in a collection of Candidate objects
Definition: CandidateFwd.h:31