CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RecoTauPiZeroUnembedder.cc
Go to the documentation of this file.
1 /*
2  * "Unembed" the pizeros in a reco::PFTau.
3  *
4  * This converts a collection of PFTaus which have their PiZeros stored
5  * as std::vector<RecoTauPiZeros>s to an output collection which has
6  * the PiZeros stored in a separate product, with the PiZeros stored as Refs
7  * within the tau. This will improve the de-serialization speed of the taus.
8  *
9  * Author: Evan K. Friis, UW Madison
10  *
11  */
12 
18 
21 
23 
28 
30 public:
33  void produce(edm::Event& evt, const edm::EventSetup& es) override;
34  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
35 
36 private:
39 };
40 
42  src_ = pset.getParameter<edm::InputTag>("src");
43  token = consumes<reco::CandidateView>(src_);
44  produces<reco::RecoTauPiZeroCollection>("pizeros");
45  produces<reco::PFTauCollection>();
46 }
48  auto piZerosOut = std::make_unique<reco::RecoTauPiZeroCollection>();
49  auto tausOut = std::make_unique<reco::PFTauCollection>();
50 
52  evt.getByToken(token, tauView);
53 
54  reco::PFTauRefVector taus = reco::tau::castView<reco::PFTauRefVector>(tauView);
55 
56  // Get the reference to the product of where the final pizeros will end up
58 
59  for (size_t iTau = 0; iTau < taus.size(); ++iTau) {
60  // Make a copy
61  reco::PFTau myTau = *taus[iTau];
62  // The ref vectors that will be filled
63  reco::RecoTauPiZeroRefVector signalPiZeroRefs;
64  reco::RecoTauPiZeroRefVector isolationPiZeroRefs;
65 
66  // Copy the PiZeros into the new vector, while updating what refs they will
67  // have
68  const reco::RecoTauPiZeroCollection& signalPiZeros = myTau.signalPiZeroCandidates();
69 
70  for (size_t iPiZero = 0; iPiZero < signalPiZeros.size(); ++iPiZero) {
71  piZerosOut->push_back(signalPiZeros[iPiZero]);
72  // Figure out what the ref for this pizero will be in the new coll.
73  signalPiZeroRefs.push_back(reco::RecoTauPiZeroRef(piZeroProd, piZerosOut->size() - 1));
74  }
75 
76  const reco::RecoTauPiZeroCollection& isolationPiZeroCandidates = myTau.isolationPiZeroCandidates();
77  for (size_t iPiZero = 0; iPiZero < isolationPiZeroCandidates.size(); ++iPiZero) {
78  piZerosOut->push_back(isolationPiZeroCandidates[iPiZero]);
79  // Figure out what the ref for this pizero will be in the new coll.
80  isolationPiZeroRefs.push_back(reco::RecoTauPiZeroRef(piZeroProd, piZerosOut->size() - 1));
81  }
82 
83  myTau.setSignalPiZeroCandidatesRefs(signalPiZeroRefs);
84  myTau.setIsolationPiZeroCandidatesRefs(isolationPiZeroRefs);
85 
86  tausOut->push_back(myTau);
87  }
88 
89  evt.put(std::move(piZerosOut), "pizeros");
90  evt.put(std::move(tausOut));
91 }
92 
94  // RecoTauPiZeroUnembedder
96  desc.add<edm::InputTag>("src", edm::InputTag("hpsPFTauProducerSansRefs"));
97  descriptions.add("RecoTauPiZeroUnembedder", desc);
98 }
99 
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
std::vector< RecoTauPiZero > RecoTauPiZeroCollection
collection of RecoTauPiZero objects
RecoTauPiZeroUnembedder(const edm::ParameterSet &pset)
const std::vector< RecoTauPiZero > & signalPiZeroCandidates() const
Retrieve the association of signal region gamma candidates into candidate PiZeros.
Definition: PFTau.cc:240
def move
Definition: eostools.py:511
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
ParameterDescriptionBase * add(U const &iLabel, T const &value)
RefProd< PROD > getRefBeforePut()
Definition: Event.h:158
const std::vector< RecoTauPiZero > & isolationPiZeroCandidates() const
Retrieve the association of isolation region gamma candidates into candidate PiZeros.
Definition: PFTau.cc:259
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void produce(edm::Event &evt, const edm::EventSetup &es) override
void push_back(value_type const &ref)
Add a Ref&lt;C, T&gt; to the RefVector.
Definition: RefVector.h:67
size_type size() const
Size of the RefVector.
Definition: RefVector.h:102
void setIsolationPiZeroCandidatesRefs(RecoTauPiZeroRefVector)
Definition: PFTau.cc:270
edm::EDGetTokenT< reco::CandidateView > token
void setSignalPiZeroCandidatesRefs(RecoTauPiZeroRefVector)
Definition: PFTau.cc:255