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