test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RecoTauProducer.cc
Go to the documentation of this file.
1 /*
2  * RecoTauProducer
3  *
4  * Interface between the various tau algorithms and the edm::Event. The
5  * RecoTauProducer takes as data input is a collection (view) of reco::PFJets,
6  * and Jet-PiZero assoications that give the reco::RecoTauPiZeros for those
7  * jets. The actual building of taus is done by the list of builders - each of
8  * which constructs a PFTau for each PFJet. The output collection may have
9  * multiple taus for each PFJet - these overlaps are to be resolved by the
10  * RecoTauCleaner module.
11  *
12  * Additionally, there are "modifier" plugins, which can do things like add the
13  * lead track significance, or electron rejection variables.
14  *
15  * Authors: Evan K. Friis (UC Davis),
16  * Christian Veelken (LLR)
17  *
18  */
19 #include "boost/bind.hpp"
20 #include <boost/ptr_container/ptr_vector.hpp>
21 #include <boost/foreach.hpp>
22 
23 #include <algorithm>
24 #include <functional>
25 
31 
34 
42 
44 
46 {
47  public:
50  typedef boost::ptr_vector<Builder> BuilderList;
51  typedef boost::ptr_vector<Modifier> ModifierList;
52 
53  explicit RecoTauProducer(const edm::ParameterSet& pset);
55  void produce(edm::Event& evt, const edm::EventSetup& es) override;
56 
57  private:
62 
63  double minJetPt_;
64  double maxJetAbsEta_;
65  //token definition
70 
73  // Optional selection on the output of the taus
74  std::auto_ptr<StringCutObjectSelector<reco::PFTau> > outputSelector_;
75  // Whether or not to add build a tau from a jet for which the builders
76  // return no taus. The tau will have no content, only the four vector of
77  // the orginal jet.
79 };
80 
82 {
83  jetSrc_ = pset.getParameter<edm::InputTag>("jetSrc");
84  jetRegionSrc_ = pset.getParameter<edm::InputTag>("jetRegionSrc");
85  chargedHadronSrc_ = pset.getParameter<edm::InputTag>("chargedHadronSrc");
86  piZeroSrc_ = pset.getParameter<edm::InputTag>("piZeroSrc");
87 
88  minJetPt_ = ( pset.exists("minJetPt") ) ? pset.getParameter<double>("minJetPt") : -1.0;
89  maxJetAbsEta_ = ( pset.exists("maxJetAbsEta") ) ? pset.getParameter<double>("maxJetAbsEta") : 99.0;
90  //consumes definition
91  jet_token=consumes<reco::CandidateView>(jetSrc_);
92  jetRegion_token = consumes<edm::Association<reco::PFJetCollection> >(jetRegionSrc_);
93  chargedHadron_token = consumes<reco::PFJetChargedHadronAssociation>(chargedHadronSrc_);
94  piZero_token = consumes<reco::JetPiZeroAssociation>(piZeroSrc_);
95 
96  typedef std::vector<edm::ParameterSet> VPSet;
97  // Get each of our tau builders
98  const VPSet& builders = pset.getParameter<VPSet>("builders");
99  for ( VPSet::const_iterator builderPSet = builders.begin();
100  builderPSet != builders.end(); ++builderPSet ) {
101  // Get plugin name
102  const std::string& pluginType = builderPSet->getParameter<std::string>("plugin");
103  // Build the plugin
104  builders_.push_back(RecoTauBuilderPluginFactory::get()->create(pluginType, *builderPSet, consumesCollector()));
105  }
106 
107  const VPSet& modfiers = pset.getParameter<VPSet>("modifiers");
108  for ( VPSet::const_iterator modfierPSet = modfiers.begin();
109  modfierPSet != modfiers.end(); ++modfierPSet) {
110  // Get plugin name
111  const std::string& pluginType = modfierPSet->getParameter<std::string>("plugin");
112  // Build the plugin
114  plugin = RecoTauModifierPluginFactory::get()->create(pluginType, *modfierPSet, consumesCollector());
115  modifiers_.push_back(plugin);
116  }
117 
118  // Check if we want to apply a final output selection
119  if ( pset.exists("outputSelection") ) {
120  std::string selection = pset.getParameter<std::string>("outputSelection");
121  if ( selection != "" ) {
123  }
124  }
125  buildNullTaus_ = pset.getParameter<bool>("buildNullTaus");
126 
127  produces<reco::PFTauCollection>();
128 }
129 
131 {
132  // Get the jet input collection via a view of Candidates
134  evt.getByToken(jet_token, jetView);
135 
136  // Convert to a vector of PFJetRefs
137  reco::PFJetRefVector jets = reco::tau::castView<reco::PFJetRefVector>(jetView);
138 
139  // Get the jet region producer
141  evt.getByToken(jetRegion_token, jetRegionHandle);
142 
143  // Get the charged hadron input collection
145  evt.getByToken(chargedHadron_token, chargedHadronAssoc);
146 
147  // Get the pizero input collection
149  evt.getByToken(piZero_token, piZeroAssoc);
150 
151  // Update all our builders and modifiers with the event info
152  for (BuilderList::iterator builder = builders_.begin();
153  builder != builders_.end(); ++builder) {
154  builder->setup(evt, es);
155  }
156  for (ModifierList::iterator modifier = modifiers_.begin();
157  modifier != modifiers_.end(); ++modifier) {
158  modifier->setup(evt, es);
159  }
160 
161  // Create output collection
162  std::auto_ptr<reco::PFTauCollection> output(new reco::PFTauCollection());
163  output->reserve(jets.size());
164 
165  // Loop over the jets and build the taus for each jet
166  BOOST_FOREACH( reco::PFJetRef jetRef, jets ) {
167  // Get the jet with extra constituents from an area around the jet
168  if(jetRef->pt() - minJetPt_ < 1e-5) continue;
169  if(fabs(jetRef->eta()) - maxJetAbsEta_ > -1e-5) continue;
170  reco::PFJetRef jetRegionRef = (*jetRegionHandle)[jetRef];
171  if ( jetRegionRef.isNull() ) {
172  throw cms::Exception("BadJetRegionRef")
173  << "No jet region can be found for the current jet: " << jetRef.id();
174  }
175  // Remove all the jet constituents from the jet extras
176  std::vector<reco::PFCandidatePtr> jetCands = jetRef->getPFConstituents();
177  std::vector<reco::PFCandidatePtr> allRegionalCands = jetRegionRef->getPFConstituents();
178  // Sort both by ref key
179  std::sort(jetCands.begin(), jetCands.end());
180  std::sort(allRegionalCands.begin(), allRegionalCands.end());
181  // Get the regional junk candidates not in the jet.
182  std::vector<reco::PFCandidatePtr> uniqueRegionalCands;
183 
184  // This can actually be less than zero, if the jet has really crazy soft
185  // stuff really far away from the jet axis.
186  if ( allRegionalCands.size() > jetCands.size() ) {
187  uniqueRegionalCands.reserve(allRegionalCands.size() - jetCands.size());
188  }
189 
190  // Subtract the jet cands from the regional cands
191  std::set_difference(allRegionalCands.begin(), allRegionalCands.end(),
192  jetCands.begin(), jetCands.end(),
193  std::back_inserter(uniqueRegionalCands));
194 
195  // Get the charged hadrons associated with this jet
196  const std::vector<reco::PFRecoTauChargedHadron>& chargedHadrons = (*chargedHadronAssoc)[jetRef];
197 
198  // Get the pizeros associated with this jet
199  const std::vector<reco::RecoTauPiZero>& piZeros = (*piZeroAssoc)[jetRef];
200  // Loop over our builders and create the set of taus for this jet
201  unsigned int nTausBuilt = 0;
202  for ( BuilderList::const_iterator builder = builders_.begin();
203  builder != builders_.end(); ++builder) {
204  // Get a ptr_vector of taus from the builder
205  reco::tau::RecoTauBuilderPlugin::output_type taus((*builder)(jetRef, chargedHadrons, piZeros, uniqueRegionalCands));
206  // Make sure all taus have their jetref set correctly
207  std::for_each(taus.begin(), taus.end(), boost::bind(&reco::PFTau::setjetRef, _1, jetRef));
208  // Copy without selection
209  if ( !outputSelector_.get() ) {
210  output->insert(output->end(), taus.begin(), taus.end());
211  nTausBuilt += taus.size();
212  } else {
213  // Copy only those that pass the selection.
214  BOOST_FOREACH( const reco::PFTau& tau, taus ) {
215  if ( (*outputSelector_)(tau) ) {
216  nTausBuilt++;
217  output->push_back(tau);
218  }
219  }
220  }
221  }
222  // If we didn't build *any* taus for this jet, build a null tau if desired.
223  // The null PFTau has no content, but it's four vector is set to that of the
224  // jet.
225  if ( !nTausBuilt && buildNullTaus_ ) {
226  reco::PFTau nullTau(std::numeric_limits<int>::quiet_NaN(), jetRef->p4());
227  nullTau.setjetRef(jetRef);
228  output->push_back(nullTau);
229  }
230  }
231 
232  // Loop over the taus we have created and apply our modifiers to the taus
233  for ( reco::PFTauCollection::iterator tau = output->begin();
234  tau != output->end(); ++tau ) {
235  for ( ModifierList::const_iterator modifier = modifiers_.begin();
236  modifier != modifiers_.end(); ++modifier ) {
237  (*modifier)(*tau);
238  }
239  }
240 
241  for ( ModifierList::iterator modifier = modifiers_.begin();
242  modifier != modifiers_.end(); ++modifier ) {
243  modifier->endEvent();
244  }
245 
246  evt.put(output);
247 }
248 
T getParameter(std::string const &) const
edm::InputTag piZeroSrc_
boost::ptr_vector< Modifier > ModifierList
edm::EDGetTokenT< reco::CandidateView > jet_token
std::vector< PFTau > PFTauCollection
collection of PFTau objects
Definition: PFTauFwd.h:9
auto_ptr< JetDefinition::Plugin > plugin
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
BuilderList builders_
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
selection
main part
Definition: corrVsCorr.py:98
bool exists(std::string const &parameterName) const
checks if a parameter exists
boost::ptr_vector< reco::PFTau > output_type
ModifierList modifiers_
ProductID id() const
Accessor for product ID.
Definition: Ref.h:258
std::auto_ptr< StringCutObjectSelector< reco::PFTau > > outputSelector_
void setjetRef(const PFJetRef &)
Definition: PFTau.cc:59
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:121
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
RecoTauProducer(const edm::ParameterSet &pset)
vector< PseudoJet > jets
edm::InputTag chargedHadronSrc_
bool isNull() const
Checks for null.
Definition: Ref.h:249
edm::InputTag jetSrc_
void produce(edm::Event &evt, const edm::EventSetup &es) override
edm::EDGetTokenT< reco::JetPiZeroAssociation > piZero_token
reco::tau::RecoTauModifierPlugin Modifier
edm::EDGetTokenT< reco::PFJetChargedHadronAssociation > chargedHadron_token
edm::EDGetTokenT< edm::Association< reco::PFJetCollection > > jetRegion_token
size_type size() const
Size of the RefVector.
Definition: RefVector.h:107
reco::tau::RecoTauBuilderPlugin Builder
edm::InputTag jetRegionSrc_
boost::ptr_vector< Builder > BuilderList
T get(const Candidate &c)
Definition: component.h:55