ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/Producers/interface/ProducerStable.h
Revision: 1.3
Committed: Thu Sep 4 13:55:28 2008 UTC (16 years, 8 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.2: +2 -2 lines
Log Message:
Introduce mithep namespace whereever apropriate.

File Contents

# User Rev Content
1 loizides 1.2 //--------------------------------------------------------------------------------------------------
2 loizides 1.3 // $Id: ProducerStable.h,v 1.2 2008/08/29 00:27:21 loizides Exp $
3 bendavid 1.1 //
4 loizides 1.2 // ProducerStable
5 bendavid 1.1 //
6     // Converting tracks into ProducerStablePart.
7     //
8 loizides 1.3 // Authors: C.Paus
9 loizides 1.2 //--------------------------------------------------------------------------------------------------
10    
11 bendavid 1.1 #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