1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* \class EtaPtMinGsfElectronFullCloneSelector
*
* selects electron above a minumum pt cut
* Also clones super cluster and track of selected electrons
*
* \author: Luca Lista, INFN
*
*/
#include "FWCore/Framework/interface/MakerMacros.h"
#include "CommonTools/UtilAlgos/interface/AndSelector.h"
#include "CommonTools/UtilAlgos/interface/PtMinSelector.h"
#include "CommonTools/UtilAlgos/interface/EtaRangeSelector.h"
#include "CommonTools/UtilAlgos/interface/SingleObjectSelector.h"
#include "DataFormats/EgammaCandidates/interface/GsfElectron.h"
#include "DataFormats/EgammaCandidates/interface/GsfElectronFwd.h"
#include "CommonTools/RecoAlgos/interface/GsfElectronSelector.h"
typedef GsfElectronSingleObjectSelector<AndSelector<EtaRangeSelector, PtMinSelector> >
EtaPtMinGsfElectronFullCloneSelector;
DEFINE_FWK_MODULE(EtaPtMinGsfElectronFullCloneSelector);
|