ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitEdm/Producers/interface/ProducerD2SS.h
Revision: 1.5
Committed: Fri Oct 24 19:57:47 2008 UTC (16 years, 6 months ago) by paus
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
Changes since 1.4: +5 -5 lines
Log Message:
Beautification.

File Contents

# User Rev Content
1 loizides 1.2 //--------------------------------------------------------------------------------------------------
2 paus 1.5 // $Id: ProducerD2SS.h,v 1.4 2008/09/27 05:48:25 loizides Exp $
3 bendavid 1.1 //
4 loizides 1.2 // ProducerD2SS
5 bendavid 1.1 //
6 paus 1.5 // Commmon two body particle decay reconstruction (e.g J/psi -> mu mu), special implementations
7     // using this as a base class exist for V and conversion.
8 bendavid 1.1 //
9 loizides 1.3 // Authors: C.Paus
10 loizides 1.2 //--------------------------------------------------------------------------------------------------
11    
12 loizides 1.4 #ifndef MITEDM_PRODUCERS_PRODUCERD2SS_H
13     #define MITEDM_PRODUCERS_PRODUCERD2SS_H
14 bendavid 1.1
15 loizides 1.4 #include "MitEdm/Producers/interface/BaseCandProducer.h"
16 bendavid 1.1
17     namespace mitedm
18     {
19 loizides 1.4 class ProducerD2SS : public BaseCandProducer
20 bendavid 1.1 {
21     public:
22     explicit ProducerD2SS(const edm::ParameterSet&);
23     ~ProducerD2SS();
24    
25     protected:
26 loizides 1.4 void produce(edm::Event&, const edm::EventSetup&);
27 bendavid 1.1
28     // Parameters to steer the particularities of this instance
29 paus 1.5 std::string iStables1_; // input label first stable particle
30     std::string iStables2_; // input label second stable particle
31 bendavid 1.1 };
32     }
33     #endif