1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* \class reco::modules::CandSelector
*
* Configurable Candidate Selector
*
* \author: Luca Lista, INFN
*
*/
#include "FWCore/Framework/interface/MakerMacros.h"
#include "CommonTools/UtilAlgos/interface/StringCutObjectSelector.h"
#include "CommonTools/UtilAlgos/interface/SingleObjectSelector.h"
#include "DataFormats/Candidate/interface/Candidate.h"
namespace reco {
namespace modules {
typedef SingleObjectSelector<reco::CandidateCollection, StringCutObjectSelector<reco::Candidate> > CandSelector;
DEFINE_FWK_MODULE(CandSelector);
} // namespace modules
} // namespace reco
|