Revision: | 1.2 |
Committed: | Wed Jan 5 12:10:50 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 |
Changes since 1.1: | +2 -2 lines |
Log Message: | update |
# | Content |
---|---|
1 | #include "FWCore/Framework/interface/MakerMacros.h" |
2 | #include "CommonTools/UtilAlgos/interface/ObjectSelector.h" |
3 | #include "CommonTools/UtilAlgos/interface/SortCollectionSelector.h" |
4 | #include "DataFormats/Candidate/interface/Candidate.h" |
5 | #include "ForwardAnalysis/Utilities/interface/EtaComparator.h" |
6 | |
7 | typedef ObjectSelector< |
8 | SortCollectionSelector< |
9 | reco::CandidateView, |
10 | GreaterByEta<reco::Candidate> |
11 | > |
12 | > EtaMaxCandViewSelector; |
13 | |
14 | typedef ObjectSelector< |
15 | SortCollectionSelector< |
16 | reco::CandidateView, |
17 | LessByEta<reco::Candidate> |
18 | > |
19 | > EtaMinCandViewSelector; |
20 | |
21 | DEFINE_FWK_MODULE( EtaMaxCandViewSelector ); |
22 | DEFINE_FWK_MODULE( EtaMinCandViewSelector ); |