1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* \class RefCandViewRefSelector
*
* RefCandidate Selector based on a configurable cut.
* Reads a edm::View<RefCandidate> as input
* and saves a vector of references
* Usage:
*
* module selectedCands = RefCandViewRefSelector {
* InputTag src = myCollection
* string cut = "pt > 15.0 & track().isValid()"
* };
*
* \author: Luca Lista, INFN
*
*/
#include "FWCore/Framework/interface/MakerMacros.h"
#include "CommonTools/UtilAlgos/interface/SingleObjectSelector.h"
#include "CommonTools/UtilAlgos/interface/StringCutObjectSelector.h"
#include "DataFormats/RecoCandidate/interface/RecoCandidate.h"
typedef SingleObjectSelector<edm::View<reco::RecoCandidate>, StringCutObjectSelector<reco::RecoCandidate> >
RecoCandViewRefSelector;
DEFINE_FWK_MODULE(RecoCandViewRefSelector);
|