1 |
#ifndef TUPLE_ELECTRON
|
2 |
#define TUPLE_ELECTRON
|
3 |
|
4 |
#include "FWCore/Framework/interface/EDProducer.h"
|
5 |
#include "FWCore/Framework/interface/Frameworkfwd.h"
|
6 |
#include "FWCore/Utilities/interface/InputTag.h"
|
7 |
#include "FWCore/Framework/interface/Event.h"
|
8 |
#include "FWCore/Framework/interface/ESHandle.h"
|
9 |
#include "FWCore/ParameterSet/interface/ParameterSet.h"
|
10 |
|
11 |
class Tuple_Electron : public edm::EDProducer {
|
12 |
public:
|
13 |
explicit Tuple_Electron(const edm::ParameterSet&);
|
14 |
|
15 |
private:
|
16 |
void produce(edm::Event &, const edm::EventSetup & );
|
17 |
|
18 |
const edm::InputTag electronTag,vertexTag;
|
19 |
const std::vector<std::string> electronIDs;
|
20 |
const std::string prefix;
|
21 |
};
|
22 |
|
23 |
|
24 |
#endif
|