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 |
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 |
|