ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1RpcTriggerAnalysis/interface/L1ObjMakerRpcEmu.h
Revision: 1.1
Committed: Mon Nov 28 18:31:03 2011 UTC (13 years, 5 months ago) by konec
Content type: text/plain
Branch: MAIN
CVS Tags: Mikolaj_cmssw533, Mikolaj_cmssw52x
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 konec 1.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