ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/Producers/interface/ProducerStable.h
Revision: 1.1
Committed: Thu Jul 31 13:30:51 2008 UTC (16 years, 9 months ago) by bendavid
Content type: text/plain
Branch: MAIN
CVS Tags: MITHEP_2_0_x
Log Message:
Renamed producer classes

File Contents

# User Rev Content
1 bendavid 1.1 //==================================================================================================
2     // $Id $
3     //
4     // Description: class ProducerStable
5     //
6     // Converting tracks into ProducerStablePart.
7     //
8     // Original Author: Christoph Paus
9     // Created: Mon Jul 21 14:42:57 CEST 2008
10     //==================================================================================================
11     #ifndef _PRODUCERS_STABLE_H_
12     #define _PRODUCERS_STABLE_H_
13    
14     #include "MitEdm/Producers/interface/BaseCandidate.h"
15    
16     namespace mitedm
17     {
18     class ProducerStable : public BaseCandidate
19     {
20     public:
21     explicit ProducerStable(const edm::ParameterSet&);
22     ~ProducerStable();
23    
24     private:
25     virtual void beginJob(const edm::EventSetup&);
26     virtual void produce (edm::Event&, const edm::EventSetup&);
27     virtual void endJob ();
28    
29     std::string iTracks_;
30     };
31     }
32     #endif