ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1RpcTriggerAnalysis/interface/AnaTimingL1.h
Revision: 1.4
Committed: Tue Nov 27 16:16:46 2012 UTC (12 years, 5 months ago) by konec
Content type: text/plain
Branch: MAIN
CVS Tags: Artur_11_07_2013_B, Artur_11_07_2013_A, Artur_11_07_2013, Artur_28_06_2013, HEAD
Changes since 1.3: +5 -7 lines
Error occurred while calculating annotation data.
Log Message:
*** empty log message ***

File Contents

# Content
1 #ifndef UserCode_L1RpcTriggerAnalysis_AnaTimingL1_H
2 #define UserCode_L1RpcTriggerAnalysis_AnaTimingL1_H
3
4 class TObjArray;
5 class MuonObj;
6 class L1ObjColl;
7 class L1Obj;
8 class EventObj;
9
10 #include "FWCore/ParameterSet/interface/ParameterSet.h"
11
12 class AnaTimingL1 {
13
14 public:
15 AnaTimingL1(const edm::ParameterSet& cfg) : debug(false), theConfig(cfg) {}
16 void init(TObjArray& histos);
17 void run(const EventObj* ev, const MuonObj* muon, const L1ObjColl *l1Coll);
18 void resume(TObjArray& histos);
19
20 bool debug;
21
22 private:
23 edm::ParameterSet theConfig;
24
25 };
26 #endif
27