ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/ForwardAnalysis/Utilities/plugins/PFCandidateSelector.cc
Revision: 1.1
Committed: Tue Jan 4 22:44:10 2011 UTC (14 years, 4 months ago) by antoniov
Content type: text/plain
Branch: MAIN
CVS Tags: V01-01-01, V01-01-00, antoniov-forwardAnalysis-09Jul2012-v1, antoniov-forwardAnalysis-29Jun2012-v1, V01-00-00, antoniov-utilities-11Jun2012-v1, antoniov-forwardAnalysis-Oct072011-v1, sfonseca_10_04_2011, antoniov-forwardAnalysis-Sep182011-v1, antoniov-forwardAnalysis-Sep102011-v1, eliza_09_02_2011, sfonseca_08_26_2011, forwardAnalysis-Aug232011-v1, forwardAnalysis-Aug172011-v1, forwardAnalysis-Aug052011-v1, forwardAnalysis-Jul222011-v1, tools-Jan062011-v1, tools-Jan052011-v1, HEAD
Log Message:
add PF-related modules

File Contents

# User Rev Content
1 antoniov 1.1 #include "FWCore/Framework/interface/MakerMacros.h"
2     #include "CommonTools/UtilAlgos/interface/SingleObjectSelector.h"
3     #include "CommonTools/UtilAlgos/interface/StringCutObjectSelector.h"
4     #include "DataFormats/ParticleFlowCandidate/interface/PFCandidate.h"
5     #include "DataFormats/ParticleFlowCandidate/interface/PFCandidateFwd.h"
6    
7     typedef SingleObjectSelector<
8     reco::PFCandidateCollection,
9     StringCutObjectSelector<reco::PFCandidate>
10     > PFCandidateSelector;
11    
12     DEFINE_FWK_MODULE( PFCandidateSelector );