ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/Producers/interface/ProducerD2SS.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 ProducerD2SS
5     //
6     // Commmon two body particle decay reconstruction (e.g J/psi), special implementations using this as
7     // a base class exist for V and conversion.
8     //
9     // Original Author: Christoph Paus
10     // Created: Mon Jul 21 14:42:57 CEST 2008
11     //==================================================================================================
12     #ifndef _PRODUCERS_ProducerD2SS_H_
13     #define _PRODUCERS_ProducerD2SS_H_
14    
15     #include "MitEdm/Producers/interface/BaseCandidate.h"
16    
17     namespace mitedm
18     {
19     class ProducerD2SS : public BaseCandidate
20     {
21     public:
22     explicit ProducerD2SS(const edm::ParameterSet&);
23     ~ProducerD2SS();
24    
25     protected:
26     virtual void beginJob(const edm::EventSetup&);
27     virtual void produce(edm::Event&, const edm::EventSetup&);
28     virtual void endJob();
29    
30     // Parameters to steer the particularities of this instance
31     std::string iStables1_;
32     std::string iStables2_;
33     };
34     }
35     #endif