ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/Producers/interface/ProducerStable.h
Revision: 1.5
Committed: Wed Jul 15 20:38:24 2009 UTC (15 years, 9 months ago) by loizides
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_012d, Mit_012c, Mit_012b, Mit_012a, Mit_012, Mit_011a, Mit_011, Mit_010a, Mit_010
Changes since 1.4: +2 -2 lines
Log Message:
Cleanup

File Contents

# Content
1 //--------------------------------------------------------------------------------------------------
2 // $Id: ProducerStable.h,v 1.4 2008/09/27 05:48:25 loizides Exp $
3 //
4 // ProducerStable
5 //
6 // Converting tracks into StableParts.
7 //
8 // Authors: C.Paus
9 //--------------------------------------------------------------------------------------------------
10
11 #ifndef MITEDM_PRODUCERS_PRODUCERSTABLE_H
12 #define MITEDM_PRODUCERS_PRODUCERSTABLE_H
13
14 #include "MitEdm/Producers/interface/BaseCandProducer.h"
15
16 namespace mitedm
17 {
18 class ProducerStable : public BaseCandProducer
19 {
20 public:
21 explicit ProducerStable(const edm::ParameterSet&);
22 ~ProducerStable();
23
24 private:
25 void produce (edm::Event&, const edm::EventSetup&);
26
27 std::string iTracks_; //input label of tracks
28 };
29 }
30 #endif