ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/Producers/interface/ProducerStable.h
Revision: 1.4
Committed: Sat Sep 27 05:48:25 2008 UTC (16 years, 7 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_009c, Mit_009b, Mit_009a, Mit_009, Mit_008, Mit_008pre2, Mit_008pre1, Mit_006b, Mit_006a, Mit_006, Mit_005, Mit_004
Changes since 1.3: +7 -9 lines
Log Message:
Cleanup

File Contents

# User Rev Content
1 loizides 1.2 //--------------------------------------------------------------------------------------------------
2 loizides 1.4 // $Id: ProducerStable.h,v 1.3 2008/09/04 13:55:28 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 loizides 1.4 #ifndef MITEDM_PRODUCERS_PRODUCERSTABLE_H
12     #define MITEDM_PRODUCERS_PRODUCERSTABLE_H
13 bendavid 1.1
14 loizides 1.4 #include "MitEdm/Producers/interface/BaseCandProducer.h"
15 bendavid 1.1
16     namespace mitedm
17     {
18 loizides 1.4 class ProducerStable : public BaseCandProducer
19 bendavid 1.1 {
20     public:
21     explicit ProducerStable(const edm::ParameterSet&);
22     ~ProducerStable();
23    
24     private:
25 loizides 1.4 void produce (edm::Event&, const edm::EventSetup&);
26 bendavid 1.1
27 loizides 1.4 std::string iTracks_; //input label of tracks
28 bendavid 1.1 };
29     }
30     #endif