ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/Producers/interface/ProducerD2SS.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:$
3 bendavid 1.1 //
4 loizides 1.2 // ProducerD2SS
5 bendavid 1.1 //
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 loizides 1.3 // Authors: C.Paus
10 loizides 1.2 //--------------------------------------------------------------------------------------------------
11    
12 bendavid 1.1 #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