ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1RpcTriggerAnalysis/interface/L1ObjMakerRpcEmu.h
Revision: 1.2
Committed: Tue Oct 30 11:13:16 2012 UTC (12 years, 6 months ago) by konec
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Log Message:
*** empty log message ***

File Contents

# Content
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