ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/PromptL1Clusters.h
Revision: 1.4
Committed: Thu Apr 8 09:43:58 2010 UTC (15 years ago) by econte
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +0 -0 lines
State: FILE REMOVED
Log Message:
PromptL1 -> L1Analysis

File Contents

# User Rev Content
1 alebihan 1.1 #ifndef __PromptL1_PromptL1Clusters_H__
2     #define __PromptL1_PromptL1Clusters_H__
3    
4     //-------------------------------------------------------------------------------
5     // Created 03/03/2010 - A.C. Le Bihan
6     //
7     //
8     // Addition of reco information
9     //-------------------------------------------------------------------------------
10    
11     #include <vector>
12     #include "DataFormats/CaloRecHit/interface/CaloCluster.h"
13     #include "DataFormats/CaloRecHit/interface/CaloClusterFwd.h"
14     #include "DataFormats/EgammaReco/interface/SuperClusterFwd.h"
15    
16     namespace PromptL1
17     {
18     class PromptL1Clusters
19     {
20     public:
21     PromptL1Clusters();
22     ~PromptL1Clusters();
23    
24     void Reset();
25 econte 1.3 void Set(const reco::CaloClusterCollection &caloClusterCollection, unsigned maxCl);
26     void Set(const reco::SuperClusterCollection &superClusterCollection, unsigned maxCl);
27 alebihan 1.1
28     unsigned maxCl_;
29     unsigned nClusters;
30 econte 1.2 std::vector<double> clusterEta;
31     std::vector<double> clusterPhi;
32     std::vector<double> clusterEt;
33     std::vector<double> clusterE;
34 alebihan 1.1
35     };
36     }
37     #endif
38    
39