1 |
#ifndef L1ObjMakerRpcEmu_H
|
2 |
#define L1ObjMakerRpcEmu_H
|
3 |
|
4 |
#include <vector>
|
5 |
#include "UserCode/L1RpcTriggerAnalysis/interface/L1Obj.h"
|
6 |
#include "FWCore/Utilities/interface/InputTag.h"
|
7 |
|
8 |
namespace edm {class Event; }
|
9 |
|
10 |
class L1ObjMakerRpcEmu {
|
11 |
public:
|
12 |
L1ObjMakerRpcEmu(const edm::InputTag &rpcTriggerDigis, const edm::Event &ev) : theL1RpcDigis(rpcTriggerDigis), theEv(ev) {}
|
13 |
std::vector<L1Obj> operator()();
|
14 |
private:
|
15 |
edm::InputTag theL1RpcDigis;
|
16 |
const edm::Event & theEv;
|
17 |
};
|
18 |
#endif
|
19 |
|