Revision: | 1.1 |
Committed: | Sun Oct 9 14:08:56 2011 UTC (13 years, 7 months ago) by bendavid |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | Mit_032, Mit_031, Mit_025c_branch2, Mit_025c_branch1, Mit_030, Mit_029c, Mit_029b, Mit_030_pre1, Mit_029a, Mit_029, Mit_029_pre1, Mit_028a, Mit_025c_branch0, Mit_028, Mit_027a, Mit_027, Mit_026, Mit_025e, Mit_025d, Mit_025c, Mit_025b, Mit_025a, Mit_025, HEAD |
Branch point for: | Mit_025c_branch |
Log Message: | add dummy track producer |
# | Content |
---|---|
1 | // $Id: VertexZProducer.h,v 1.1 2009/11/30 10:11:40 loizides Exp $ |
2 | |
3 | #ifndef MITEDM_PRODUCERS_DummyTrackProducer_H |
4 | #define MITEDM_PRODUCERS_DummyTrackProducer_H |
5 | |
6 | #include "FWCore/Framework/interface/Frameworkfwd.h" |
7 | #include "FWCore/Framework/interface/EDProducer.h" |
8 | #include "FWCore/Framework/interface/Event.h" |
9 | #include "FWCore/MessageLogger/interface/MessageLogger.h" |
10 | #include <TMath.h> |
11 | #include <vector> |
12 | |
13 | |
14 | class DummyTrackProducer : public edm::EDProducer |
15 | { |
16 | public: |
17 | explicit DummyTrackProducer(const edm::ParameterSet ¶meters); |
18 | ~DummyTrackProducer(); |
19 | |
20 | protected: |
21 | void produce(edm::Event &iEvent, const edm::EventSetup &iSetup); |
22 | |
23 | }; |
24 | |
25 | |
26 | #endif |