CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ObjectViewMatcher.cc
Go to the documentation of this file.
1 
2 /*****************************************************************************
3  * Project: CMS detector at the CERN
4  *
5  * Package: PhysicsTools/TagAndProbe
6  *
7  *
8  * Authors:
9  *
10  * Kalanand Mishra, Fermilab - kalanand@fnal.gov
11  *
12  * Description:
13  * - Matches a given object with other objects using deltaR-matching.
14  * - For example: can match a photon with track within a given deltaR.
15  * - Saves collection of the reference vectors of matched objects.
16  * History:
17  *
18  *
19  * Copyright (C) 2010 FNAL
20  *****************************************************************************/
22 // Includes
28 
31 
38 
40 
41 
42 #include <memory>
43 #include <vector>
44 #include <sstream>
45 
46 
48 // class definition
50 template<typename T1, typename T2>
52 {
53 public:
54  // construction/destruction
55  ObjectViewMatcher(const edm::ParameterSet& iConfig);
56  virtual ~ObjectViewMatcher();
57 
58  // member functions
59  void produce(edm::Event& iEvent,const edm::EventSetup& iSetup);
60  void endJob();
61 
62 private:
63  // member data
65  std::vector<edm::InputTag> srcObjects_;
66  double deltaRMax_;
67 
68  std::string moduleLabel_;
69 
70  StringCutObjectSelector<T1,true> objCut_; // lazy parsing, to allow cutting on variables not in reco::Candidate class
71  StringCutObjectSelector<T2,true> objMatchCut_; // lazy parsing, to allow cutting on variables not in reco::Candidate class
72 
73 
74  unsigned int nObjectsTot_;
75  unsigned int nObjectsMatch_;
76 };
77 
78 
79 
81 // construction/destruction
83 
84 //______________________________________________________________________________
85 template<typename T1, typename T2>
87  : srcCands_ (iConfig.getParameter<edm::InputTag> ("srcObject"))
88  , srcObjects_ (iConfig.getParameter<std::vector<edm::InputTag> >("srcObjectsToMatch"))
89  , deltaRMax_ (iConfig.getParameter<double> ("deltaRMax"))
90  , moduleLabel_(iConfig.getParameter<std::string> ("@module_label"))
91  , objCut_(iConfig.existsAs<std::string>("srcObjectSelection") ? iConfig.getParameter<std::string>("srcObjectSelection") : "", true)
92  ,objMatchCut_(iConfig.existsAs<std::string>("srcObjectsToMatchSelection") ? iConfig.getParameter<std::string>("srcObjectsToMatchSelection") : "", true)
93  , nObjectsTot_(0)
94  , nObjectsMatch_(0)
95 {
96  produces<std::vector<T1> >();
97 }
98 
99 
100 //______________________________________________________________________________
101 template<typename T1, typename T2>
103 
104 
105 
107 // implementation of member functions
109 
110 //______________________________________________________________________________
111 template<typename T1, typename T2>
113 {
114  std::auto_ptr<std::vector<T1> > cleanObjects(new std::vector<T1 >);
115 
116  edm::Handle<edm::View<T1> > candidates;
117  iEvent.getByLabel(srcCands_,candidates);
118 
119  bool* isMatch = new bool[candidates->size()];
120  for (unsigned int iObject=0;iObject<candidates->size();iObject++) isMatch[iObject] = false;
121 
122  for (unsigned int iSrc=0;iSrc<srcObjects_.size();iSrc++) {
123  edm::Handle<edm::View<T2> > objects;
124  iEvent.getByLabel(srcObjects_[iSrc],objects);
125 
126  if(objects->size()==0) continue;
127 
128  for (unsigned int iObject=0;iObject<candidates->size();iObject++) {
129  const T1& candidate = candidates->at(iObject);
130  if (!objCut_(candidate)) continue;
131 
132 
133  for (unsigned int iObj=0;iObj<objects->size();iObj++) {
134  const T2& obj = objects->at(iObj);
135  if (!objMatchCut_(obj)) continue;
136  double deltaR = reco::deltaR(candidate,obj);
137  if (deltaR<deltaRMax_) isMatch[iObject] = true;
138  }
139  }
140  }
141 
142 
143 
144  unsigned int counter=0;
145  typename edm::View<T1>::const_iterator tIt, endcands = candidates->end();
146  for (tIt = candidates->begin(); tIt != endcands; ++tIt, ++counter) {
147  if(isMatch[counter]) cleanObjects->push_back( *tIt );
148  }
149 
150  nObjectsTot_ +=candidates->size();
151  nObjectsMatch_+=cleanObjects->size();
152 
153  delete [] isMatch;
154  iEvent.put(cleanObjects);
155 }
156 
157 
158 //______________________________________________________________________________
159 template<typename T1, typename T2>
161 {
162  std::stringstream ss;
163  ss<<"nObjectsTot="<<nObjectsTot_<<" nObjectsMatched="<<nObjectsMatch_
164  <<" fObjectsMatch="<<100.*(nObjectsMatch_/(double)nObjectsTot_)<<"%\n";
165  std::cout<<"++++++++++++++++++++++++++++++++++++++++++++++++++"
166  <<"\n"<<moduleLabel_<<"(ObjectViewMatcher) SUMMARY:\n"<<ss.str()
167  <<"++++++++++++++++++++++++++++++++++++++++++++++++++"
168  << std::endl;
169 }
170 
171 
173 // plugin definition
175 
178 
edm::InputTag srcCands_
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:81
unsigned int nObjectsMatch_
unsigned int nObjectsTot_
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
StringCutObjectSelector< T2, true > objMatchCut_
void produce(edm::Event &iEvent, const edm::EventSetup &iSetup)
std::string moduleLabel_
double deltaR(double eta1, double phi1, double eta2, double phi2)
Definition: deltaR.h:19
int iEvent
Definition: GenABIO.cc:243
ObjectViewMatcher< reco::Photon, reco::Track > TrackMatchedPhotonProducer
ObjectViewMatcher< reco::Jet, reco::Track > TrackMatchedJetProducer
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:85
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
double deltaR(double eta1, double eta2, double phi1, double phi2)
Definition: TreeUtility.cc:17
ObjectViewMatcher(const edm::ParameterSet &iConfig)
tuple cout
Definition: gather_cfg.py:121
std::vector< edm::InputTag > srcObjects_
StringCutObjectSelector< T1, true > objCut_