1 |
econte |
1.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 <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 L1Analysis
|
17 |
|
|
{
|
18 |
|
|
class L1AnalysisRecoCluster
|
19 |
|
|
{
|
20 |
|
|
public:
|
21 |
|
|
L1AnalysisRecoCluster();
|
22 |
|
|
~L1AnalysisRecoCluster();
|
23 |
|
|
|
24 |
|
|
void Reset();
|
25 |
|
|
void Set(const reco::CaloClusterCollection &caloClusterCollection, unsigned maxCl);
|
26 |
|
|
void Set(const reco::SuperClusterCollection &superClusterCollection, unsigned maxCl);
|
27 |
|
|
|
28 |
|
|
unsigned maxCl_;
|
29 |
|
|
unsigned nClusters;
|
30 |
|
|
std::vector<double> clusterEta;
|
31 |
|
|
std::vector<double> clusterPhi;
|
32 |
|
|
std::vector<double> clusterEt;
|
33 |
|
|
std::vector<double> clusterE;
|
34 |
|
|
|
35 |
|
|
};
|
36 |
|
|
}
|
37 |
|
|
#endif
|
38 |
|
|
|
39 |
|
|
|