1 |
#ifndef __L1Analysis_L1AnalysisRCT_H__
|
2 |
#define __L1Analysis_L1AnalysisRCT_H__
|
3 |
|
4 |
//-------------------------------------------------------------------------------
|
5 |
// Created 06/01/2010 - A.C. Le Bihan
|
6 |
//
|
7 |
//
|
8 |
// Original code : UserCode/L1TriggerDPG/L1NtupleProducer
|
9 |
//-------------------------------------------------------------------------------
|
10 |
|
11 |
|
12 |
#include "DataFormats/L1CaloTrigger/interface/L1CaloCollections.h"
|
13 |
#include "DataFormats/Common/interface/Handle.h"
|
14 |
#include "L1AnalysisRCTDataFormat.h"
|
15 |
|
16 |
namespace L1Analysis
|
17 |
{
|
18 |
class L1AnalysisRCT
|
19 |
{
|
20 |
public:
|
21 |
L1AnalysisRCT();
|
22 |
L1AnalysisRCT(int maxRCTREG);
|
23 |
~L1AnalysisRCT();
|
24 |
|
25 |
void SetEmRCT(const edm::Handle < L1CaloEmCollection > em);
|
26 |
void SetHdRCT(const edm::Handle < L1CaloRegionCollection > rgn);
|
27 |
void Reset() {rct_.Reset();}
|
28 |
L1AnalysisRCTDataFormat * getData() {return &rct_;}
|
29 |
|
30 |
private :
|
31 |
L1AnalysisRCTDataFormat rct_;
|
32 |
};
|
33 |
}
|
34 |
#endif
|
35 |
|
36 |
|