ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisRCT.h
Revision: 1.3
Committed: Thu Jun 17 20:34:32 2010 UTC (14 years, 10 months ago) by econte
Content type: text/plain
Branch: MAIN
CVS Tags: V01-01-00, jimb4Jan2013, V01-00-00, hi44X_02, L1CorrectionsStudy_13_09_11, CMSSW_4_2_3_patch2, L1TriggerAnalysis_3_6_1patch4, HEAD
Changes since 1.2: +6 -33 lines
Error occurred while calculating annotation data.
Log Message:
*** empty log message ***

File Contents

# Content
1 #ifndef __L1Analysis_L1AnalysisRCT_H__
2 #define __L1Analysis_L1AnalysisRCT_H__
3
4 //-------------------------------------------------------------------------------
5 // Created 06/01/2010 - A.C. Le Bihan
6 //
7 //
8 // Original code : UserCode/L1TriggerDPG/L1NtupleProducer
9 //-------------------------------------------------------------------------------
10
11
12 #include "DataFormats/L1CaloTrigger/interface/L1CaloCollections.h"
13 #include "DataFormats/Common/interface/Handle.h"
14 #include "L1AnalysisRCTDataFormat.h"
15
16 namespace L1Analysis
17 {
18 class L1AnalysisRCT
19 {
20 public:
21 L1AnalysisRCT();
22 L1AnalysisRCT(int maxRCTREG);
23 ~L1AnalysisRCT();
24
25 void SetEmRCT(const edm::Handle < L1CaloEmCollection > em);
26 void SetHdRCT(const edm::Handle < L1CaloRegionCollection > rgn);
27 void Reset() {rct_.Reset();}
28 L1AnalysisRCTDataFormat * getData() {return &rct_;}
29
30 private :
31 L1AnalysisRCTDataFormat rct_;
32 };
33 }
34 #endif
35
36