1 |
#ifndef __L1Analysis_L1AnalysisL1Menu_H__
|
2 |
#define __L1Analysis_L1AnalysisL1Menu_H__
|
3 |
|
4 |
|
5 |
#include "DataFormats/L1GlobalTrigger/interface/L1GtTriggerMenuLite.h"
|
6 |
#include "CondFormats/L1TObjects/interface/L1GtTriggerMenuFwd.h"
|
7 |
#include "FWCore/Framework/interface/ESHandle.h"
|
8 |
#include "DataFormats/L1GlobalTrigger/interface/L1GlobalTriggerReadoutRecord.h"
|
9 |
#include "L1Trigger/GlobalTriggerAnalyzer/interface/L1GtUtils.h"
|
10 |
#include "FWCore/Framework/interface/Event.h"
|
11 |
|
12 |
#include "L1AnalysisL1MenuDataFormat.h"
|
13 |
|
14 |
|
15 |
namespace L1Analysis
|
16 |
{
|
17 |
class L1AnalysisL1Menu
|
18 |
{
|
19 |
public:
|
20 |
L1AnalysisL1Menu() {Reset();}
|
21 |
~L1AnalysisL1Menu() {}
|
22 |
void Reset() {data_.Reset();}
|
23 |
void SetPrescaleFactorIndex(L1GtUtils & l1GtUtils_, const edm::Event& iEvent);
|
24 |
L1AnalysisL1MenuDataFormat * getData() {return &data_;}
|
25 |
|
26 |
private :
|
27 |
L1AnalysisL1MenuDataFormat data_;
|
28 |
};
|
29 |
}
|
30 |
#endif
|
31 |
|
32 |
|