1 |
konec |
1.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
|