1 |
econte |
1.1 |
#ifndef __L1Analysis_L1AnalysisGenerator_H__
|
2 |
|
|
#define __L1Analysis_L1AnalysisGenerator_H__
|
3 |
|
|
|
4 |
|
|
//-------------------------------------------------------------------------------
|
5 |
|
|
// Created 06/01/2010 - A.C. Le Bihan
|
6 |
|
|
//
|
7 |
|
|
//
|
8 |
|
|
// Original code : UserCode/L1TriggerDPG/L1NtupleProducer
|
9 |
|
|
//-------------------------------------------------------------------------------
|
10 |
gflouris |
1.3 |
#include "FWCore/Framework/interface/Event.h"
|
11 |
econte |
1.2 |
#include "UserCode/L1TriggerDPG/interface/L1AnalysisGeneratorDataFormat.h"
|
12 |
econte |
1.1 |
|
13 |
|
|
namespace L1Analysis
|
14 |
|
|
{
|
15 |
econte |
1.2 |
class L1AnalysisGenerator
|
16 |
econte |
1.1 |
{
|
17 |
|
|
public:
|
18 |
|
|
L1AnalysisGenerator();
|
19 |
|
|
~L1AnalysisGenerator();
|
20 |
econte |
1.2 |
void Reset() {generator_.Reset();}
|
21 |
gflouris |
1.3 |
void Set(const edm::Event& e);
|
22 |
econte |
1.2 |
L1AnalysisGeneratorDataFormat * getData(){return &generator_;}
|
23 |
|
|
|
24 |
|
|
private :
|
25 |
|
|
L1AnalysisGeneratorDataFormat generator_;
|
26 |
econte |
1.1 |
|
27 |
|
|
};
|
28 |
|
|
}
|
29 |
|
|
#endif
|
30 |
|
|
|
31 |
|
|
|