1 |
bbetchar |
1.1 |
#ifndef SHALLOW_TRACKCLUSTERS_PRODUCER
|
2 |
|
|
#define SHALLOW_TRACKCLUSTERS_PRODUCER
|
3 |
|
|
|
4 |
|
|
#include "FWCore/Framework/interface/EDProducer.h"
|
5 |
|
|
#include "FWCore/Framework/interface/Frameworkfwd.h"
|
6 |
|
|
|
7 |
|
|
class ShallowTrackClustersProducer : public edm::EDProducer {
|
8 |
|
|
public:
|
9 |
|
|
explicit ShallowTrackClustersProducer(const edm::ParameterSet&);
|
10 |
|
|
private:
|
11 |
|
|
edm::InputTag theTracksLabel;
|
12 |
|
|
std::string Suffix;
|
13 |
|
|
std::string Prefix;
|
14 |
|
|
|
15 |
|
|
void produce( edm::Event &, const edm::EventSetup & );
|
16 |
|
|
};
|
17 |
|
|
#endif
|