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 |
Log Message: | moving plugins to ForwardAnalysis |
# | User | Rev | Content |
---|---|---|---|
1 | antoniov | 1.1 | #ifndef ForwardAnalysis_Utilities_TrackWithJetSelector_h |
2 | #define ForwardAnalysis_Utilities_TrackWithJetSelector_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 TrackWithJetSelector { | ||
11 | public: | ||
12 | explicit TrackWithJetSelector(const edm::ParameterSet&); | ||
13 | ~TrackWithJetSelector(); | ||
14 | bool operator()(const reco::Track&, const edm::Event&) const; | ||
15 | private: | ||
16 | edm::InputTag jetTag_; | ||
17 | double deltaPhiMin_; | ||
18 | double deltaPhiMax_; | ||
19 | }; | ||
20 | |||
21 | } //namespace | ||
22 | #endif |