ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1RpcTriggerAnalysis/interface/TrackToL1ObjMatcher.h
Revision: 1.1
Committed: Mon Jun 7 22:03:21 2010 UTC (14 years, 10 months ago) by konec
Content type: text/plain
Branch: MAIN
Log Message:
*** empty log message ***

File Contents

# Content
1 #ifndef TrackToL1ObjMatcher_H
2 #define TrackToL1ObjMatcher_H
3
4 #include "UserCode/L1RpcTriggerAnalysis/interface/L1Obj.h"
5 #include "FWCore/ParameterSet/interface/ParameterSet.h"
6 namespace edm { class Event; class EventSetup; }
7 class TrajectoryStateOnSurface;
8
9 class TrackToL1ObjMatcher {
10 public:
11 TrackToL1ObjMatcher(const edm::ParameterSet & cfg) : theConfig(cfg) {}
12 bool operator()(const L1Obj& l1, const TrajectoryStateOnSurface & tsos, const edm::Event&ev, const edm::EventSetup& es) const;
13 private:
14 edm::ParameterSet theConfig;
15
16 };
17 #endif