1 |
#ifndef SHALLOW_SIMTRACKS_PRODUCER
|
2 |
#define SHALLOW_SIMTRACKS_PRODUCER
|
3 |
|
4 |
#include "FWCore/Framework/interface/EDProducer.h"
|
5 |
#include "FWCore/Framework/interface/Frameworkfwd.h"
|
6 |
|
7 |
class ShallowSimTracksProducer : public edm::EDProducer {
|
8 |
|
9 |
public:
|
10 |
|
11 |
explicit ShallowSimTracksProducer(const edm::ParameterSet&);
|
12 |
|
13 |
private:
|
14 |
|
15 |
const std::string Prefix;
|
16 |
const std::string Suffix;
|
17 |
const edm::InputTag trackingParticles_tag;
|
18 |
const edm::ESInputTag associator_tag;
|
19 |
const edm::InputTag tracks_tag;
|
20 |
void produce( edm::Event &, const edm::EventSetup & );
|
21 |
|
22 |
};
|
23 |
#endif
|