Revision: | 1.1 |
Committed: | Thu Aug 25 19:10:35 2011 UTC (13 years, 8 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, sfonseca_08_26_2011, HEAD |
Error occurred while calculating annotation data. | |
Log Message: | moving plugins to ForwardAnalysis |
# | Content |
---|---|
1 | #ifndef ForwardAnalysis_Utilities_TrackOutsideJetsSelector_h |
2 | #define ForwardAnalysis_Utilities_TrackOutsideJetsSelector_h |
3 | |
4 | #include "FWCore/Framework/interface/Frameworkfwd.h" |
5 | #include "DataFormats/TrackReco/interface/TrackFwd.h" |
6 | #include "FWCore/ParameterSet/interface/ParameterSet.h" |
7 | |
8 | namespace forwardAnalysis { |
9 | |
10 | class TrackOutsideJetsSelector { |
11 | public: |
12 | explicit TrackOutsideJetsSelector(const edm::ParameterSet&); |
13 | ~TrackOutsideJetsSelector(); |
14 | bool operator()(const reco::Track&, const edm::Event&) const; |
15 | private: |
16 | edm::InputTag jetTag_; |
17 | double coneSize_; |
18 | }; |
19 | |
20 | } // namespace |
21 | #endif |