CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros 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 
20 
25 
27  public:
30  void produce(edm::Event& evt, const edm::EventSetup& es);
31  private:
33 };
34 
36  src_ = pset.getParameter<edm::InputTag>("src");
37  produces<reco::RecoTauPiZeroCollection>("pizeros");
38  produces<reco::PFTauCollection>();
39 }
41  std::auto_ptr<reco::RecoTauPiZeroCollection> piZerosOut(
43  std::auto_ptr<reco::PFTauCollection> tausOut(new reco::PFTauCollection);
44 
46  evt.getByLabel(src_, tauView);
47 
49  reco::tau::castView<reco::PFTauRefVector>(tauView);
50 
51  // Get the reference to the product of where the final pizeros will end up
52  reco::RecoTauPiZeroRefProd piZeroProd =
54 
55  for (size_t iTau = 0; iTau < taus.size(); ++iTau) {
56  // Make a copy
57  reco::PFTau myTau = *taus[iTau];
58  // The ref vectors that will be filled
59  reco::RecoTauPiZeroRefVector signalPiZeroRefs;
60  reco::RecoTauPiZeroRefVector isolationPiZeroRefs;
61 
62  // Copy the PiZeros into the new vector, while updating what refs they will
63  // have
64  const reco::RecoTauPiZeroCollection& signalPiZeros =
65  myTau.signalPiZeroCandidates();
66 
67  for (size_t iPiZero = 0; iPiZero < signalPiZeros.size(); ++iPiZero) {
68  piZerosOut->push_back(signalPiZeros[iPiZero]);
69  // Figure out what the ref for this pizero will be in the new coll.
70  signalPiZeroRefs.push_back(
71  reco::RecoTauPiZeroRef(piZeroProd, piZerosOut->size()-1));
72  }
73 
74  const reco::RecoTauPiZeroCollection& isolationPiZeroCandidates =
76  for (size_t iPiZero = 0; iPiZero < isolationPiZeroCandidates.size(); ++iPiZero) {
77  piZerosOut->push_back(isolationPiZeroCandidates[iPiZero]);
78  // Figure out what the ref for this pizero will be in the new coll.
79  isolationPiZeroRefs.push_back(
80  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(piZerosOut, "pizeros");
90  evt.put(tausOut);
91 }
92 
T getParameter(std::string const &) const
std::vector< PFTau > PFTauCollection
collection of PFTau objects
Definition: PFTauFwd.h:9
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
std::vector< RecoTauPiZero > RecoTauPiZeroCollection
collection of RecoTauPiZero objects
void produce(edm::Event &evt, const edm::EventSetup &es)
RecoTauPiZeroUnembedder(const edm::ParameterSet &pset)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:85
const std::vector< RecoTauPiZero > & signalPiZeroCandidates() const
Retrieve the association of signal region gamma candidates into candidate PiZeros.
Definition: PFTau.cc:92
void setIsolationPiZeroCandidatesRefs(const RecoTauPiZeroRefVector &)
Definition: PFTau.cc:111
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
RefProd< PROD > getRefBeforePut()
Definition: Event.h:97
const std::vector< RecoTauPiZero > & isolationPiZeroCandidates() const
Retrieve the association of isolation region gamma candidates into candidate PiZeros.
Definition: PFTau.cc:115
void setSignalPiZeroCandidatesRefs(const RecoTauPiZeroRefVector &)
Definition: PFTau.cc:107
void push_back(value_type const &ref)
Add a Ref&lt;C, T&gt; to the RefVector.
Definition: RefVector.h:64
size_type size() const
Size of the RefVector.
Definition: RefVector.h:89