ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/ShallowTools/interface/ShallowRechitClustersProducer.h
Revision: 1.2
Committed: Wed Sep 2 17:12:52 2009 UTC (15 years, 8 months ago) by bbetchar
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +1 -0 lines
Log Message:
Allow python configuration of cluster collection

File Contents

# Content
1 #ifndef SHALLOW_RECHITCLUSTERS_PRODUCER
2 #define SHALLOW_RECHITCLUSTERS_PRODUCER
3
4 #include "FWCore/Framework/interface/EDProducer.h"
5 #include "FWCore/Framework/interface/Frameworkfwd.h"
6
7 class ShallowRechitClustersProducer : public edm::EDProducer {
8 public:
9 explicit ShallowRechitClustersProducer(const edm::ParameterSet&);
10 private:
11 std::string Suffix;
12 std::string Prefix;
13 edm::InputTag theClustersLabel;
14 std::vector<edm::InputTag> inputTags;
15 void produce( edm::Event &, const edm::EventSetup & );
16 };
17
18 #endif