ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisRecoCluster.h
Revision: 1.2
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.1: +7 -12 lines
Error occurred while calculating annotation data.
Log Message:
*** empty log message ***

File Contents

# Content
1 #ifndef __L1Analysis_L1AnalysisRecoCluster_H__
2 #define __L1Analysis_L1AnalysisRecoCluster_H__
3
4 //-------------------------------------------------------------------------------
5 // Created 03/03/2010 - A.C. Le Bihan
6 //
7 //
8 // Addition of reco information
9 //-------------------------------------------------------------------------------
10
11 #include "DataFormats/CaloRecHit/interface/CaloCluster.h"
12 #include "DataFormats/CaloRecHit/interface/CaloClusterFwd.h"
13 #include "DataFormats/EgammaReco/interface/SuperClusterFwd.h"
14 #include "L1AnalysisRecoClusterDataFormat.h"
15
16 namespace L1Analysis
17 {
18 struct L1AnalysisRecoCluster
19 {
20 L1AnalysisRecoCluster();
21 ~L1AnalysisRecoCluster();
22
23 void Set(const reco::CaloClusterCollection &caloClusterCollection, unsigned maxCl);
24 void Set(const reco::SuperClusterCollection &superClusterCollection, unsigned maxCl);
25 L1AnalysisRecoClusterDataFormat * getData() {return &recoCluster_;}
26 void Reset() {recoCluster_.Reset();}
27
28 public :
29 L1AnalysisRecoClusterDataFormat recoCluster_;
30 };
31 }
32 #endif
33
34