CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
PATCleaner.h
Go to the documentation of this file.
1 #ifndef PhysicsTools_PatAlgos_plugins_PATCleaner_h
2 #define PhysicsTools_PatAlgos_plugins_PATCleaner_h
3 //
4 //
5 
21 
24 
33 
35 #include <vector>
36 #include <memory>
37 
38 namespace pat {
39 
40  template<class PATObjType>
42  public:
43  explicit PATCleaner(const edm::ParameterSet & iConfig);
44  virtual ~PATCleaner() {}
45 
46  virtual void produce(edm::Event & iEvent, const edm::EventSetup& iSetup) override final;
47 
48  private:
50 
55 
57  std::vector<std::unique_ptr<OverlapTest> > overlapTests_;
58  };
59 
60 } // namespace
61 
62 template <class PATObjType>
64  src_(iConfig.getParameter<edm::InputTag>("src")),
65  srcToken_(consumes<edm::View<PATObjType> >(src_)),
66  preselectionCut_(iConfig.getParameter<std::string>("preselection")),
67  finalCut_(iConfig.getParameter<std::string>("finalCut"))
68 {
69  // pick parameter set for overlaps
70  edm::ParameterSet overlapPSet = iConfig.getParameter<edm::ParameterSet>("checkOverlaps");
71  // get all the names of the tests (all nested PSets in this PSet)
72  std::vector<std::string> overlapNames = overlapPSet.getParameterNamesForType<edm::ParameterSet>();
73  // loop on them
74  for (std::vector<std::string>::const_iterator itn = overlapNames.begin(); itn != overlapNames.end(); ++itn) {
75  // retrieve configuration
77  // skip empty parameter sets
78  if (cfg.empty()) continue;
79  // get the name of the algorithm to use
80  std::string algorithm = cfg.getParameter<std::string>("algorithm");
81  // create the appropriate OverlapTest
82  if (algorithm == "byDeltaR") {
83  overlapTests_.emplace_back(new pat::helper::BasicOverlapTest(*itn, cfg, consumesCollector()));
84  } else if (algorithm == "bySuperClusterSeed") {
86  } else {
87  throw cms::Exception("Configuration") << "PATCleaner for " << src_ << ": unsupported algorithm '" << algorithm << "'\n";
88  }
89  }
90 
91 
92  produces<std::vector<PATObjType> >();
93 }
94 
95 template <class PATObjType>
96 void
98 
99  // Read the input. We use edm::View<> in case the input happes to be something different than a std::vector<>
101  iEvent.getByToken(srcToken_, candidates);
102 
103  // Prepare a collection for the output
104  std::auto_ptr< std::vector<PATObjType> > output(new std::vector<PATObjType>());
105 
106  // initialize the overlap tests
107  for (auto& itov : overlapTests_) {
108  itov->readInput(iEvent,iSetup);
109  }
110 
111  for (typename edm::View<PATObjType>::const_iterator it = candidates->begin(), ed = candidates->end(); it != ed; ++it) {
112  // Apply a preselection to the inputs and copy them in the output
113  if (!preselectionCut_(*it)) continue;
114 
115  // Add it to the list and take a reference to it, so it can be modified (e.g. to set the overlaps)
116  // If at some point I'll decide to drop this item, I'll use pop_back to remove it
117  output->push_back(*it);
118  PATObjType &obj = output->back();
119 
120  // Look for overlaps
121  bool badForOverlap = false;
122  for (auto& itov : overlapTests_) {
124  bool hasOverlap = itov->fillOverlapsForItem(obj, overlaps);
125  if (hasOverlap && itov->requireNoOverlaps()) {
126  badForOverlap = true; // mark for discarding
127  break; // no point in checking the others, as this item will be discarded
128  }
129  obj.setOverlaps(itov->name(), overlaps);
130  }
131  if (badForOverlap) { output->pop_back(); continue; }
132 
133  // Apply one final selection cut
134  if (!finalCut_(obj)) output->pop_back();
135  }
136 
137  iEvent.put(output);
138 }
139 
140 
141 #endif
T getParameter(std::string const &) const
bool empty() const
Definition: ParameterSet.h:218
const Selector finalCut_
Definition: PATCleaner.h:54
tuple cfg
Definition: looper.py:259
virtual ~PATCleaner()
Definition: PATCleaner.h:44
virtual void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) overridefinal
Definition: PATCleaner.h:97
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:457
const Selector preselectionCut_
Definition: PATCleaner.h:53
PAT Cleaner module for PAT Objects.
Definition: PATCleaner.h:41
std::vector< std::string > getParameterNamesForType(bool trackiness=true) const
Definition: ParameterSet.h:194
int iEvent
Definition: GenABIO.cc:230
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:115
std::vector< std::unique_ptr< OverlapTest > > overlapTests_
Definition: PATCleaner.h:57
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
const edm::InputTag src_
Definition: PATCleaner.h:51
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:85
pat::helper::OverlapTest OverlapTest
Definition: PATCleaner.h:56
PATCleaner(const edm::ParameterSet &iConfig)
Definition: PATCleaner.h:63
const edm::EDGetTokenT< edm::View< PATObjType > > srcToken_
Definition: PATCleaner.h:52
StringCutObjectSelector< PATObjType > Selector
Definition: PATCleaner.h:49